Replica of owl hiding his hands when going on password field from readme.io
A Pen by Vincenzo Chianese on CodePen.
Replica of owl hiding his hands when going on password field from readme.io
A Pen by Vincenzo Chianese on CodePen.
Replica of owl hiding his hands when going on password field from readme.io
A Pen by Vincenzo Chianese on CodePen.
Install mingw tools on linux:
sudo apt-get install mingw-w64
clone openssl repo:
git clone https://github.com/openssl/openssl.git
Configure openssl for cross compile:
| #!/bin/bash | |
| VERSION="1.17" | |
| if [ ! -f wget-${VERSION}.tar.xz ]; then | |
| wget http://ftp.gnu.org/gnu/wget/wget-${VERSION}.tar.xz | |
| fi | |
| rm -rf wget-${VERSION} build | |
| tar xJf wget-${VERSION}.tar.xz |
Git for Windows comes bundled with the "Git Bash" terminal which is incredibly handy for unix-like commands on a windows machine. It is missing a few standard linux utilities, but it is easy to add ones that have a windows binary available.
The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root. Find it by using pwd -W).
If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on).
If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corresponding directories. Sometimes the windows binary have funny prefixes, so
| package base | |
| import ( | |
| "errors" | |
| "fmt" | |
| "github.com/manucorporat/try" | |
| "github.com/simpleton/beego" | |
| "github.com/streadway/amqp" | |
| "math/rand" | |
| "model/helper" |
This is my take on how to get up and running with NGINX, PHP-FPM, MySQL and phpMyAdmin on OSX Yosemite.
This article is adapted from the original by Jonas Friedmann. Who I just discovered is from Würzburg in Germany. A stonesthrow from where I was born ;)
Make sure you have the latest version of XCode installed. Available from the Mac App Store.
Install the Xcode Command Line Tools:
xcode-select --install