This gist is a proposal for lightning talk at Reactive Conf 2017
Like the idea? Give me a 🌟 and see you in Bratislava!
Hello, my name is Eduard!
I'm the maintainer of Create Elm App and contributor to Create React App and Webpack
| # any images you use later, add them here first to create aliases | |
| # I like keeping all my versions at the top | |
| FROM node:14.3-slim as node | |
| FROM php:7.2.1-fpm-slim as php | |
| FROM nginx:1.17 as nginx | |
| # The real base image to start from | |
| FROM ubuntu:focal-20210827 as base | |
| # install apt stuff |
| ; Ender 3 Custom Start G-Code | |
| ;Cura | |
| M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature | |
| M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature | |
| ;Prusaslicer | |
| M140 S[first_layer_temperature] ; Set Heat Bed temperature | |
| M190 S[first_layer_bed_temperature] ; Wait for Heat Bed temperature | |
| M104 S160 ; start warming extruder to 160 |
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": [ | |
| { | |
| "command": "copy", | |
| "keys": "ctrl+shift+c" | |
| }, | |
| { | |
| "command": "paste", |
This gist is a proposal for lightning talk at Reactive Conf 2017
Like the idea? Give me a 🌟 and see you in Bratislava!
Hello, my name is Eduard!
I'm the maintainer of Create Elm App and contributor to Create React App and Webpack
| Hardware assisted virtualization and data execution protection must be enabled in the BIOS | |
| http://stackoverflow.com/questions/39684974/docker-for-windows-error-hardware-assisted-virtualization-and-data-execution-p | |
| If the features described are enabled the problem is with Hyper-V that is disabled or Hypervisor agent not running | |
| Open PowerShell as administrator and | |
| a) Enable Hyper-V with |
| <?php | |
| namespace AdminBundle\Form; | |
| use Symfony\Component\Form\AbstractType; | |
| use Symfony\Component\Form\Extension\Core\Type\ChoiceType; | |
| use Symfony\Component\OptionsResolver\OptionsResolver; | |
| use Symfony\Component\Security\Core\Authorization\AuthorizationChecker; | |
| use Symfony\Component\Security\Core\Role\Role; |
| #!/bin/bash | |
| # Sometimes you need to move your existing git repository | |
| # to a new remote repository (/new remote origin). | |
| # Here are a simple and quick steps that does exactly this. | |
| # | |
| # Let's assume we call "old repo" the repository you wish | |
| # to move, and "new repo" the one you wish to move to. | |
| # | |
| ### Step 1. Make sure you have a local copy of all "old repo" | |
| ### branches and tags. |
| {# | |
| # count => total item | |
| # limit => item by page | |
| # offset => start item idex | |
| # page => current page | |
| # lastpage => last page = page number | |
| # adjacents => page count display before and after the current page | |
| #} | |
| {% if limit is not defined %} | |
| {% set limit = 10 %} |
For your Ruby, you'll must install this gems:
sudo gem install passenger
sudo passenger-install-apache2-module
At this moment, you'll asked to install some Apache2's deps (three deps):
sudo apt-get install apache2-prefork-dev
| var MyCustomMarker = L.Marker.extend({ | |
| bindPopup: function(htmlContent, options) { | |
| if (options && options.showOnMouseOver) { | |
| // call the super method | |
| L.Marker.prototype.bindPopup.apply(this, [htmlContent, options]); | |
| // unbind the click event |