Skip to content

Instantly share code, notes, and snippets.

View starlocke's full-sized avatar
:shipit:
Guaranteed to work behind the scenes, so you don't have to!

Victor Yap starlocke

:shipit:
Guaranteed to work behind the scenes, so you don't have to!
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta class="mktoString" mktoName="Variable 1" id="var1" default="This is a variable">
<title></title>
<style>
body {background:#fff;}
</style>
</head>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta class="mktoString" mktoName="Variable 1" id="var1" default="This is a variable">
<title></title>
<style>
body {background:#fff;}
</style>
</head>
@starlocke
starlocke / add_all_github_forks.js
Last active October 30, 2017 19:42
Print out all "git remote add" commands for all the forks of a project.
// Execute this function upon a project's "/network/members" page.
// - You also need to "inject" jQuery onto that page, first.
// Ex: https://github.com/example/test/network/members (replace "example/test" - NO LONGER WORKS)
// Ex: https://github.com/google/git-appraise-web/network/members (another example)
function add_all_github_forks(){
var matches = window.location.href.match(/github.com[/]\w+[/]([^/]+)/); // [^/]+ used to be \w+, now also captures "-" in names
var project_name = '';
if(matches == null){
console.log("no match, quitting early");
return;
@starlocke
starlocke / IEUserAgentTest.html
Last active August 29, 2015 14:27 — forked from jasongaylord/IEUserAgentTest.html
A sample JavaScript file to detect IE compatibility mode and version. This is not recommended unless absolutely needed as features should be detected instead.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Testing IE Compatibility Mode</title>
<script src="ieUserAgent.js" type="text/javascript"></script>
</head>
<body>
<div id="results">Results:</div>
<script type="text/javascript">
var val = "IE" + ieUserAgent.version;
zi() {
if [[ ! -z $1 ]]; then
steps=$1;
SIZE=`grep 'FontName' ~/.config/Terminal/terminalrc | cut -d' ' -f 2`
NEWSIZE=$((SIZE + steps))
REGEXPR='s/FontName.*/FontName=Monospace '$NEWSIZE'/g'
sed -i "$REGEXPR" ~/.config/Terminal/terminalrc
else
echo "Usage: zi [zoom steps]";
fi;
@starlocke
starlocke / inject-ping-sfx.js
Last active August 29, 2015 14:11
Dell Chat Ping SFX
/*****
* Adds a "ping" sound whenever a Dell agent responds in the chat
* - @author Victor Yap <victor.yap@alumni.concordia.ca>
* NOTES:
* - Uses HTML5's <audio> tag (future proof?)
* - Originally targetted Chrome with "Custom Javascript for websites" plugin.
*****/
/*****
* Audio clip from: http://soundbible.com/1441-Elevator-Ding.html