Install Cygwin with make, gcc & g++. Download Redis tar.gz package, unpack it.
Edit deps/hiredis/net.c and add the following lines just after the include directives:
| #!/system/bin/sh | |
| PATH=/system/bin:/system/xbin | |
| houdini_bin=0 | |
| dest_dir=/system/lib$1/arm$1 | |
| binfmt_misc_dir=/proc/sys/fs/binfmt_misc | |
| if [ -z "$1" ]; then | |
| if [ "`uname -m`" = "x86_64" ]; then |
https://msys2.github.io/ https://www.jetbrains.com/clion/
Install mingw in msys:
pacman -S mingw-w64-x86_64-toolchain
Point CLion at it. (Ex.: C:\msys64\mingw64)
$ uname -r
| ffmpeg -i input.mp4 -s hd480 -c:v libx264 -crf 23 -c:a aac -strict -2 output.mp4 |
| package dragon; | |
| import java.awt.Color; | |
| import java.awt.Graphics; | |
| import java.awt.Graphics2D; | |
| import java.awt.GraphicsConfiguration; | |
| import java.awt.GraphicsDevice; | |
| import java.awt.GraphicsEnvironment; | |
| import java.awt.image.BufferedImage; | |
| import java.io.File; |
| $ wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo | |
| $ yum install devtoolset-2-gcc devtoolset-2-binutils | |
| $ yum install devtoolset-2-gcc-c++ devtoolset-2-gcc-gfortran | |
| * Downloaded or downloading | |
| ============================= | |
| **http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html | |
| **http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html | |
| **http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html | |
| **http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html | |
| **http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html | |
| *http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html | |
| *http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html |
From Wikipedia:
In mathematics, a Fourier series decomposes periodic functions or periodic signals into the sum of a (possibly infinite) set of simple oscillating functions, namely sines and cosines (or complex exponentials).
Use the bottom right form to change the visualized serie.
| // | |
| // Simple example of using net.Socket but here we capture the | |
| // right events and attempt to re-establish the connection when | |
| // is is closed either because of an error establishing a | |
| // connection or when the server closes the connection. | |
| // | |
| // Requires | |
| var net = require('net'); |