This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// decompressXML -- Parse the 'compressed' binary form of Android XML docs | |
// such as for AndroidManifest.xml in .apk files | |
int endDocTag = 0x00100101; | |
int startTag = 0x00100102; | |
int endTag = 0x00100103; | |
public void decompressXML(byte[] xml) { | |
// Compressed XML file/bytes starts with 24x bytes of data, | |
// 9 32 bit words in little endian order (LSB first): | |
// 0th word is 03 00 08 00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** E.g., UIColorFromRGB(0xE5E5E5) */ | |
#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class ScalaDocs < Formula | |
homepage 'http://www.scala-lang.org/' | |
url 'http://www.scala-lang.org/downloads/distrib/files/scala-2.9.1.final-devel-docs.tgz' | |
version '2.9.1' | |
md5 'acb16cbdf46f682806f60b052707b7b7' | |
end | |
class Scala < Formula |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net._ | |
import java.io._ | |
import scala.io._ | |
import scala.util.control.Breaks._ | |
val server = "irc.freenode.net"; | |
val nick = "SeymourCakes" | |
val login = "SeymourCakesBot" | |
val channel = "#myoss" | |
val socket = new Socket(server, 6667) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.util.zip.ZipEntry; | |
import java.util.zip.ZipFile; | |
class AndroidXMLDecompress { | |
// decompressXML -- Parse the 'compressed' binary form of Android XML docs | |
// such as for AndroidManifest.xml in .apk files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Project here: https://github.com/seymores/gcm-clj | |
;;; | |
;;; Note: you need to specify the custom repo to get gcm-server.jar | |
;;; :repositories [["google" "https://github.com/slorber/gcm-server-repository/raw/master/releases"]] | |
;;; :dependencies [[com.google.android.gcm/gcm-server "1.0.2"]] | |
;;; | |
;;; See http://developer.android.com/google/gcm/gs.html#server-app | |
;; Import all the needed classes from gcm-server.jar | |
(import (com.google.android.gcm.server Sender Message Message$Builder MulticastResult)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.jsoup.* | |
String URL = "http://apims.doe.gov.my/apims/hourly2.php" | |
def doc = Jsoup.connect(URL).get(); | |
def result = doc.select("table.table1 tr"); | |
result.each { tr -> | |
def row = tr.select("td") | |
println " ---- row---\n" + row[0].text() + " " + row[1].text() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns haze-api.core | |
(:require [net.cgrand.enlive-html :as html]) | |
(:gen-class)) | |
(def doe-url "http://apims.doe.gov.my/apims/hourly2.php") | |
(defn rows-by-enlive | |
[url] | |
(let [site (html/html-resource (java.net.URL. url)) | |
rows (html/select site [:table.table1 :tr])] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://durdn.com/blog/2012/11/22/must-have-git-aliases-advanced-examples/ | |
[alias] | |
co = checkout | |
br = branch | |
ci = commit | |
st = status | |
last = log -1 HEAD | |
visual = !gitk | |
l = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is all you need to know about Clojure’s namespace declarations: | |
(ns my-project.core | |
; :require Clojure libs | |
(:require clojure.core.async | |
[compojure.core :refer [POST routes]] | |
[compojure.handler :refer :all] | |
[ring.adapter.jetty :as jetty] | |
[clojure.edn :as edn :refer [read]]) | |
; :import for Java classes |
OlderNewer