Skip to content

Instantly share code, notes, and snippets.

@bojanbjelic
bojanbjelic / gist:3f995b426c2f0d9039a6
Created December 2, 2014 14:07
date time UTC in ISO format
DateTime.Now.ToUniversalTime().ToString("o");
### Keybase proof
I hereby claim:
* I am bojanbjelic on github.
* I am bojanbjelic (https://keybase.io/bojanbjelic) on keybase.
* I have a public key whose fingerprint is 555A 849B 26DF 25C3 A7D3 56B3 A4A8 F039 9FB1 58BB
To claim this, I am signing this object:
sync-settings
@bojanbjelic
bojanbjelic / scan.cmd
Created August 19, 2015 14:44
wget directory structure (auto index, browsing allowed)
wget -nv -r -np -N --spider -l 6 --no-check-certificate -e robots=off --reject-regex="(\?C=)|(.*/img)|(.*/icons)|(.*/audio)|(.*/css)|(.*/img)|(.*/js)|(.*/swf)|(.*/images)|(.*/video)|(.*/sound)" -R "ico,html,txt,xml,json,jar,swf,zip,7z,unity3d,xnb,mp3,ogg,md5,pdb,exe" "http://www.example.int/"
@bojanbjelic
bojanbjelic / RecursiveReplace.ps
Created January 16, 2012 12:33 — forked from jongalloway/RecursiveReplace.ps
Recursive replace in files (PowerShell)
$find = 'jquery-1\.4\.4'
$replace = 'jquery-1\.5\.1'
$match = '*.cshtml' , '*.vbhtml'
$preview = $true
foreach ($sc in dir -recurse -include $match | where { test-path $_.fullname -pathtype leaf} ) {
select-string -path $sc -pattern $find
if (!$preview) {
(get-content $sc) | foreach-object { $_ -replace $find, $replace } | set-content $sc
}
@bojanbjelic
bojanbjelic / stat.bash
Created March 6, 2012 23:29
List files with permissions
stat -f '%A %a %N' *
@bojanbjelic
bojanbjelic / alfred-script.sh
Created April 11, 2012 08:10 — forked from gka/alfred-script.sh
Local full-text search on tweets and favorites
cd /your/local/path/to/tweet-search/
rm last-results.html
search.py {query}
open last-results.html
@bojanbjelic
bojanbjelic / .htaccess
Created April 20, 2012 21:31 — forked from necolas/.htaccess
Simple, quick way to concatenate, minify, and version static files in a Wordpress theme
# Filename-based cache busting
# taken from https://github.com/h5bp/html5-boilerplate/
# This rewrites file names of the form `name.123456.js` to `name.js`
# so that the browser doesn't use the cached version when you have
# updated (but not manually renamed) the file.
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
@bojanbjelic
bojanbjelic / uri.js
Created April 24, 2012 09:33 — forked from jlong/uri.js
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"
@bojanbjelic
bojanbjelic / edit-hosts
Created May 13, 2012 17:03
edit hosts file on mac osx
sudo nano /private/etc/hosts
dscacheutil -flushcache