Skip to content

Instantly share code, notes, and snippets.

@suntong
suntong / test06.sh
Created February 1, 2014 22:12
overlayfs: mounting overlayfs on top of overlayfs
#!/bin/sh
# http://article.gmane.org/gmane.linux.file-systems/54764
#
# The script (test06.sh) makes a read-only overlayfs mount on top of
# another readonly overlayfs mount, repeating this in a loop,
#
# when all the read-only filesystems are mounted, then it mounts another
# overlayfs that uses the last read-only rootdir as lowerdir and a read-write
# filesystem in upperdir,
@suntong
suntong / main.go
Last active August 29, 2015 14:01
// http://play.golang.org/p/FOe85j-O-n
package main
import (
"fmt"
"os"
"time"
)

Challenge: select all the people that are:

  • in the 3rd class
  • under age 10
  • female

A:

train[(train['Age'] < 10) & (train['pclass'] == 3) & (train['sex'] == "female")]
@suntong
suntong / gist:dad3c1c19936861d90a5
Last active August 29, 2015 14:20
jQuery Checkbox :checked Selector: Travers the selected checkboxes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>checked demo</title>
<style>
div {
color: red;
}
</style>
body, input {
font-family:Calibri, Arial;
margin:0px
}
h1 {
margin:0 0 0 20px
}
html, body, #container {
height:100%
}
<title>Multiple Checkbox Select/Deselect - DEMO</title>
<h2>Multiple Checkbox Select/Deselect - DEMO</h2>
<table border="1">
<tbody>
<tr>
<th>
<input type="checkbox" id="selectall">
</th>
<th>Cell phone</th>
$(function () {
$("#selectall").click(function () {
$('.case').prop('checked', this.checked);
});
$(".case").click(function () {
if ($(".case").length == $(".case:checked").length) {
$("#selectall").prop("checked", true);
} else {
$("#selectall").prop("checked", false);
}
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Include roboto.css to use the Roboto web font, material.css to include the theme and ripples.css to style the ripple effect -->
<link href="dist/css/roboto.min.css" rel="stylesheet">
<link href="dist/css/material.min.css" rel="stylesheet">
<link href="dist/css/ripples.min.css" rel="stylesheet">
@suntong
suntong / gist:3539307ef77ddee95f10
Last active August 29, 2015 14:23
Go Template Example
package main
import (
"bytes"
"os"
"text/template"
)
type Person struct {
Name string //exported field since it begins with a capital letter