Skip to content

Instantly share code, notes, and snippets.

View tjwudi's full-sized avatar

Di Wu tjwudi

View GitHub Profile

List all databases

sp_helpdb

Check the current database name

select d.name 
from master..sysdatabases d, master..sysprocesses p 
where d.dbid=p.dbid and p.spid=@@spid
@tjwudi
tjwudi / highlight-jekyll.txt
Created May 9, 2014 17:33
highlight-jekyll
{% highlight ruby %}
def foo
puts 'foo'
end
{% endhighlight %}
@tjwudi
tjwudi / highlight-jekyll-linenos
Created May 9, 2014 17:39
highlight-jekyll-linenos
{% highlight ruby linenos %}
def foo
puts 'foo'
end
{% endhighlight %}
@tjwudi
tjwudi / LimeAPI.js
Last active August 29, 2015 14:04
LimeJS often-used APIs
// Create a director
director = new lime.Director(document.body, 1024, 768);
// Create a scene
scene = new lime.Scene();
// Add a scene to director
director.replaceScene(scene);
// Schedule Manager Example
module.exports = function(grunt){
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
exec:{
prepare:{
command:"cordova prepare",
stdout:true,
stderror:true
}
@tjwudi
tjwudi / Gruntfile.js
Created February 11, 2015 13:47
Gruntfile.js template
// Gruntfile.js
module.exports = function (grunt) {
// load all grunt tasks matching the ['grunt-*', '@*/grunt-*'] patterns
require('load-grunt-tasks')(grunt);
grunt.initConfig({
});
grunt.registerTask('default', []);
@tjwudi
tjwudi / pre-commit
Created April 16, 2015 07:52
Git pre-commit hook
# Do not push to master
if [ $(git rev-parse --abbrev-ref HEAD) == "master" ]
then
echo 'Hello'
exit 1
fi
@tjwudi
tjwudi / _.md
Created May 13, 2015 12:45
barchart
@tjwudi
tjwudi / index.html
Created May 14, 2015 03:25
d3 table
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>D3 Playground</title>
</head>
<body>
<div id="display"></div>
<script src="//cdn.jsdelivr.net/jquery/2.1.4/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/d3js/3.5.5/d3.min.js"></script>