Skip to content

Instantly share code, notes, and snippets.

View goldalworming's full-sized avatar

arief nur andono goldalworming

View GitHub Profile
http://glorm.com/themes/mondrian-fb/
bigcommerce css
<link href="https://cdn5.bigcommerce.com/r-dbb64073de2da013433595ff249f52de19f7c59a/themes/__master/Styles/styles.css" type="text/css" rel="stylesheet" /><link href="https://cdn5.bigcommerce.com/r-f21369a50d6397a1d6aa71f6a876b3787a78e1fb/themes/__SocialShop/Styles/styles.css" media="all" type="text/css" rel="stylesheet" />
<link href="https://cdn5.bigcommerce.com/r-f21369a50d6397a1d6aa71f6a876b3787a78e1fb/themes/__SocialShop/Styles/iselector.css" media="all" type="text/css" rel="stylesheet" />
<link href="https://cdn5.bigcommerce.com/r-f21369a50d6397a1d6aa71f6a876b3787a78e1fb/themes/__SocialShop/Styles/blue.css" media="all" type="text/css" rel="stylesheet" />
<!--[if IE]><link href="https://cdn5.bigcommerce.com/r-f21369a50d6397a1d6aa71f6a876b3787a78e1fb/themes/__SocialShop/Styles/ie.css" media="all" type="text/css" rel="stylesheet" /><![endif]-->
<link href="https://cdn5.bigcommerce.com/r-dbb64073de2da013433595ff249f52de19f7c59a/themes/__master/Styles/pro
http://www.hubspot.com/inbound-marketing
@goldalworming
goldalworming / README.md
Created February 18, 2016 05:19 — forked from mike10004/README.md
Reverse Shell Using Python
@goldalworming
goldalworming / xls2pdf.py
Created March 4, 2016 04:34 — forked from mprihoda/xls2pdf.py
Convert XLS to PDF using Iron Python and MS Office
import clr
import sys
import os.path
clr.AddReference("Microsoft.Office.Interop.Excel")
from Microsoft.Office.Interop import Excel
from System import Type, GC
# See http://msdn.microsoft.com/en-us/library/bb407651.aspx for
@goldalworming
goldalworming / wherein.go
Created March 5, 2016 04:06
use where in beego
func (c *RegisterController) Tes() {
res := struct{
Success bool
Rows []*models.User
Total int64
}{}
ids := []int{1, 2, 3}
o := orm.NewOrm()
arrstr := make([]string,len(ids))
for i := 0; i < len(ids); i++ {arrstr[i] = "?"}
@goldalworming
goldalworming / gist:33c2ff310cd99c2fc88b
Created March 7, 2016 09:48 — forked from schmichael/gist:7379338
Transparently compress and upload a file in golang
package main
import (
"bufio"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
def uploadfile(filepath, uploadurl, fileformelementname="upfile"):
'''
This will invoke an upload to the webserver
on the VM
'''
files = {fileformelementname : open(filepath,'rb')}
r = requests.post(uploadurl, files=files)
return r.status_code
http://blog.nobugware.com/
geodatabase
http://www.learn-cocos2d.com/2012/05/learn-create-cocos2d-game-lua-scripting-physics-tilemaps-arc/
모모타니 에리카
import speech_recognition
import pyttsx
speech_engine = pyttsx.init('sapi5') # see http://pyttsx.readthedocs.org/en/latest/engine.html#pyttsx.init
speech_engine.setProperty('rate', 150)
def speak(text):
speech_engine.say(text)
speech_engine.runAndWait()