Skip to content

Instantly share code, notes, and snippets.

View jasoet's full-sized avatar
🎯
Focusing

Deny Prasetyo jasoet

🎯
Focusing
View GitHub Profile
# Aliases for git shorty
alias gco="git checkout"
alias gaa="git add -A ."
alias gcm="git commit -m"
alias gst="git status"
alias glo="git log --graph"
alias gpl="git pull"
alias gps="git push"
alias gbr="git branch"
alias gft="git fetch"
@jasoet
jasoet / zsh.md
Last active August 29, 2015 14:11 — forked from tsabat/zsh.md
package slicks.docs.dao
import scala.slick.driver.PostgresDriver.simple._
import scala.slick.driver._
trait Profile {
val profile: JdbcProfile
}
@jasoet
jasoet / zsh.md
Last active August 29, 2015 14:20 — forked from tsabat/zsh.md
@jasoet
jasoet / zsh.md
Last active August 29, 2015 14:20 — forked from tsabat/zsh.md
@jasoet
jasoet / .gitignore
Created September 20, 2015 08:57
.gitignore
build
deploy
.idea
.gradle
*.iml
logs
*.log
@jasoet
jasoet / gist:970186
Created May 13, 2011 08:12
Spring Application Context
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
(function() {
var http, jsdom, options, req, sys, url;
jsdom = require('jsdom');
sys = require('sys');
http = require('http');
url = 'http://www.bigoven.com/recipes/search?any_kw=salad';
options = {
host: 'www.bigoven.com',
port: 80,
path: '/recipes/search',
>+++++++++[<++++++++>-]<.>+++++++[<++++>-]<+.+++++++..+++.>>>++++++++[<++++>-]
<.>>>++++++++++[<+++++++++>-]<---.<<<<.+++.------.--------.>>+.
CREATE SEQUENCE category_category_id_seq_1;
CREATE TABLE category (
category_id INTEGER NOT NULL DEFAULT nextval('category_category_id_seq_1'),
name VARCHAR(55) NOT NULL,
CONSTRAINT category_id PRIMARY KEY (category_id)
);