Skip to content

Instantly share code, notes, and snippets.

View dev4dev's full-sized avatar
💭
Beep Boop Beep

Alex Antonyuk dev4dev

💭
Beep Boop Beep
View GitHub Profile
@dev4dev
dev4dev / .gitignore
Last active April 13, 2016 08:51
Git Ignore Rules
Thumbs.db
.Trash
# Exclude the build directory
/build
# Exclude OS X folder attributes
.DS_Store
# Exclude user-specific XCode 3 and 4 files
@dev4dev
dev4dev / test.js
Created March 9, 2012 21:01
parse google by nodejs
var http = require('http-get'),
HTML5 = require('html5'),
Script = process.binding('evals').Script,
util = require('util'),
jsdom = require('jsdom'),
window = jsdom.jsdom(null, null, {parser: HTML5}).createWindow(),
url = require('url');
var parser = new HTML5.Parser({
document: window.document
@dev4dev
dev4dev / redis
Created February 28, 2012 18:21
start/stop redis-server
#!/usr/bin/env ruby -wKU
redis_bin = %x[which redis-server].strip
redis_cli = %x[which redis-cli].strip
redis_pid = '/usr/local/var/run/redis.pid'
redis_cfg = '/usr/local/etc/redis.conf'
if File.exists? redis_pid
## stop redis
print 'stopping redis-server...'
@dev4dev
dev4dev / gist:1313553
Created October 25, 2011 17:22
pop file information from $_FILES array
function pop_file(&$files)
{
## single file
if (!is_array($files['name'])) {
$temp = $files;
$files = array('name' => array());
return $temp;
}
## as array
@dev4dev
dev4dev / Postgres
Created April 17, 2011 17:13
start/stop postgres
#!/usr/local/bin/ruby
if !File.exist?('/usr/local/var/postgres/postmaster.pid') && ARGV[0] == 'start'
p %x[pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start]
p 'PG Started'
end
if File.exist?('/usr/local/var/postgres/postmaster.pid') && ARGV[0] == 'stop'
%x[pg_ctl -D /usr/local/var/postgres stop -s -m fast]
p 'PG Stopped'