Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h1>Hello World</h1>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h1>
<a href = "http://jsbin.com/yovohe/1/edit?html,output">Hello World</a>
</h1>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h1>
<a href = "http://jsbin.com/yovohe/1/edit?html,output">Hello World</a>
</h1>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h1>
<a href = "http://output.jsbin.com/yovohe">Hello World</a>
</h1>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h1>
<a href = "http://jsbin.com/yovohe/2/edit?html,output">Hello World</a>
</h1>
<!doctype html>
<html ng-app="myApp">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="https://cdn.firebase.com/js/client/2.2.1/firebase.js"></script>
<script src="https://cdn.firebase.com/libs/angularfire/1.0.0/angularfire.min.js"></script>
<link rel="stylesheet" href="/resources/tutorial/css/example.css"/>
</head>
<body ng-controller="MyController">
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<title>Spam Mouse</title>
<script>
@daniellimws
daniellimws / setup-gnome-autopkgtests.md
Last active April 14, 2018 05:35
Set up testbed environment for GNOME software autopkgtests

Short guide to add automated test cases for GNOME Software

Setting up testbed environment

Firstly, you need to branch the repository. You can do that by running

bzr init-repo ubuntu-system-tests
cd ubuntu-system-tests
bzr branch lp:ubuntu-system-tests trunk
bzr branch trunk add-gnome-software-tests
@daniellimws
daniellimws / test.md
Created January 14, 2018 06:04
Testing blob on Markdown

Does this work?

image

@daniellimws
daniellimws / pwnenv
Created February 5, 2018 09:33
Script to start up pwn environment in tmux
#!/bin/sh
if [ ! -f $1 ]; then
echo "$1 not found!"
exit
fi
tmux new-session -d 'vim exploit.py'
tmux split-window -h
tmux split-window -v 'vim notes'
tmux new-window gdb $1
tmux new-window r2 -A $1