Skip to content

Instantly share code, notes, and snippets.

@bojanbjelic
bojanbjelic / gist:3151427
Created July 20, 2012 15:39
css linear gradient
background: #D9DBDB;
background: -moz-linear-gradient(left,rgba(217, 219, 219, 1) 0%,rgba(240, 242, 242, 1) 100%);
background: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(217, 219, 219, 1)),color-stop(100%,rgba(240, 242, 242, 1)));
background: linear-gradient(left,rgba(217, 219, 219, 1) 0%,rgba(240, 242, 242, 1) 100%);
@bojanbjelic
bojanbjelic / qwinsta
Last active October 7, 2015 09:28
check network connections on remote windows server
qwinsta /server:webnet2
@bojanbjelic
bojanbjelic / gist:2896108
Last active October 5, 2015 23:37
wget test site
wget --no-cache --spider -r -l 2 http://localhost/gvsi/ -o scan.log
@bojanbjelic
bojanbjelic / wget.bash
Created May 21, 2012 21:12
Site link list
wget --force-html -r -l2 http://www.bjelic.net 2>&1 | grep '^--' | grep -v '\.\(txt\|ico\|css\|js\|png\|gif\|jpg\)$' > linklist.txt
@bojanbjelic
bojanbjelic / add_slug_to_body_class.php
Created May 21, 2012 15:17 — forked from keirwhitaker/add_slug_to_body_class.php
WordPress Page Template Snag Lists
<?php
// Add the filter and function to your functions.php file
add_filter('body_class', 'add_slug_to_body_class');
function add_slug_to_body_class($classes) {
global $post;
if(is_page()) {
$classes[] = sanitize_html_class($post->post_name);
};
@bojanbjelic
bojanbjelic / edit-hosts
Created May 13, 2012 17:03
edit hosts file on mac osx
sudo nano /private/etc/hosts
dscacheutil -flushcache
@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 / .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 / 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 / stat.bash
Created March 6, 2012 23:29
List files with permissions
stat -f '%A %a %N' *