Requirement: Windows 10 Windows WSL WSL Mintty Digital Ocean Account
Note if you are not using windows, you dont need the vim config for windows ....
| # Installation | |
| As far as I know this is how to get Passport on Laravel Spark working correctly, it works so far for me over the API but there might be something I am still missing. | |
| I am using the following software versions in composer.json: | |
| ``` | |
| "require": { | |
| "php": ">=5.6.4", | |
| "laravel/framework": "5.3.*", |
| #!/bin/sh | |
| # option 2: paste this into user-data to automate install via boot script | |
| # NOTE: update --label=owner=YOURNAME below if you want to easily identify yours | |
| # renames the host to have a suffix of alexellisio | |
| export original=$(cat /etc/hostname) | |
| sudo hostname $original-master-alexellisio | |
| echo $original-master-alexellisio | sudo tee /etc/hostname | |
| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D |
| # Published on Docker Hub with above user alexellisio. | |
| # If you want to rebuild your own copy, follow below instructions | |
| # Build this on each type of machine so you have the correct CPU extensions. | |
| FROM alexellisio/boostbase | |
| RUN git clone -b Linux https://github.com/nicehash/nheqminer.git | |
| RUN cd nheqminer/cpu_xenoncat/Linux/asm/ && sh assemble.sh && cd ../../../Linux_cmake/nheqminer_cpu && cmake . && make | |
| ENTRYPOINT ["./nheqminer/Linux_cmake/nheqminer_cpu/nheqminer_cpu"] |
| Font=DejaVuSansMonoForPowerline NF | |
| BoldAsFont=no | |
| FontHeight=12 | |
| FontWeight=400 | |
| FontSmoothing=full | |
| Locale=C | |
| Charset=UTF-8 | |
| Term=xterm-256color | |
| ForegroundColour=248,248,242 | |
| BackgroundColour=40,42,54 |
Handy helpers for controlling visibility of elements until Vue has compiled.
Use like:
<div v-cloak>
<h1>
<span class="v-cloak--inline">Loading...</span> <!-- Only displayed before compiling -->
<span class="v-cloak--hidden">{{ post.title }}</span> <!-- Hidden until compiling is finished -->
| ====== | |
| Videos | |
| ====== | |
| DevOps | |
| What is DevOps? by Rackspace - Really great introduction to DevOps | |
| https://www.youtube.com/watch?v=_I94-tJlovg | |
| Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept) |
| let regex; | |
| /* matching a specific string */ | |
| regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello" | |
| regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO" | |
| regex = /hello/g; // looks for multiple occurrences of string between the forward slashes... | |
| /* wildcards */ | |
| regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo" | |
| regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo" |
| upstream php-handler { | |
| server unix:/run/php-fpm/www.sock; | |
| } | |
| server { | |
| #listen 443 ssl; | |
| listen 80; | |
| server_name 192.168.1.8; | |
| #ssl_certificate /etc/ssl/nginx/cloud.example.com.crt; |
| = Arch Linux step-by-step installation = | |
| = http://blog.fabio.mancinelli.me/2012/12/28/Arch_Linux_on_BTRFS.html = | |
| == Boot the installation CD == | |
| == Create partition == | |
| cfdisk /dev/sda | |
| * Create a partition with code 8300 (Linux) |