View find-non-secure-assest.js
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var url = require('url'); | |
var httpsurl = 'https://www.yahoo.com/'; | |
var assets = { | |
img: {src:'src'}, | |
link: {src:'href'}, | |
script: {src:'src'} | |
}; |
View flexi-list.html
<html> | |
<head> | |
<title>Flexi list</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
#container{ | |
padding: 3px; | |
color: #000; | |
font-family: sans-serif; |
View hydra-head-vanilla-js.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hydra - Delete one button & produce two more!</title> | |
<meta charset="UTF-8"> | |
</head> | |
<body id="hydrabody"> | |
<button class="hydrahead">Hydra Head</button> | |
</body> | |
<script> |
View gist:26f3feaa56068939f50c
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Given a number count trailing zeros!</title> | |
<meta charset="UTF-8"> | |
</head> | |
<body> | |
This is different from counting trailing zeroes from a given factorial. | |
<script> | |
function countTrailingZeros(input){ |
View gist:669ec77a5263be54b06a
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Check if a given a number is power of 2</title> | |
<meta charset="UTF-8"> | |
</head> | |
<body> | |
Check if a given number is power of 2. This can be modified any number less than 10. | |
<script> | |
function isPowerOf2(input){ |
View timer-setimeout.html
<html> | |
<head> | |
<title>timer using setTimeout</title> | |
</head> | |
<body> | |
<script> | |
var timer = function () { | |
var i = 0; | |
return function () { | |
i = i + 1; |
View virtual-host
<VirtualHost *:80> | |
#webmaster's email address | |
ServerAdmin webmaster@localhost | |
ServerName my-virtual-host | |
DocumentRoot /var/www/my-virtual-host/document/root/ | |
<Directory /> | |
Options FollowSymLinks | |
#Comment following to enable oveririding through .htaccess, e.g. mod_rewrite | |
AllowOverride None | |
</Directory> |
View bashrc
command_exists () { | |
type "$1" &> /dev/null ; | |
} | |
# grep always with color and line number | |
alias grep='grep -n --color=always' | |
# git | |
if command_exists git ; then | |
alias gitco='git checkout' |
View basic vimrc
syntax enable " enable syntax processing | |
set tabstop=4 " number of visual spaces per TAB | |
set softtabstop=4 " number of spaces in tab | |
set expandtab " tabs are space | |
set number " show line numbers | |
set showcmd " show command in bottom bar | |
set cursorline " highlight current line | |
filetype indent on " load filetype-specific indent files | |
set wildmenu " visual autocomplete for command menu | |
set showmatch " highlight matching [{()}] |
OlderNewer