- Get all of these files into the target folder
- Run the following commands:
chmod +x *.sh
./nginx-start.sh
Dim a | |
a = InputBox("Enter your name here") | |
Msgbox(a) | |
Const ADS_PROPERTY_APPEND = 3 | |
Set objUser = GetObject("LDAP://cn=BPService,cn=Users,dc=k2demo,dc=local") | |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
chmod +x *.sh
./nginx-start.sh
# Install apt-get packages: | |
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config | |
# Install chruby: | |
cd | |
wget https://github.com/downloads/postmodern/chruby/chruby-0.2.3.tar.gz | |
tar -xzvf chruby-0.2.3.tar.gz | |
cd chruby-0.2.3 | |
sudo make install |
I hereby claim:
To claim this, I am signing this object:
var gulp = require("gulp"); | |
var sass = require("gulp-sass"); | |
var autoprefix = require("gulp-autoprefixer"); | |
var filter = require('gulp-filter'); | |
var browserSync = require('browser-sync'); | |
var reload = browserSync.reload; | |
/** | |
* Start BrowserSync | |
*/ |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
namespace greedymatch | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
function nthFibonacciP(n) { | |
let left = 0; | |
let right = 1; | |
if(n < 2) { | |
return n; | |
} | |
for(let i = 2; i <= n; i++) { | |
let temp_right = right; | |
right = left + right; | |
left = temp_right; |
ffmpeg -I in.mov -c:v libx265 -preset slow -crf 26 -vtag hvc1 -c:a aac -map_metadata 0 out.mp4 |