Skip to content

Instantly share code, notes, and snippets.

View jeromechan's full-sized avatar
🎯
Focusing

Jerome明允 jeromechan

🎯
Focusing
View GitHub Profile
@jeromechan
jeromechan / arc-exec.bat
Last active May 9, 2017 11:56
Phabricator arc wrapper script that integrate with Subversion, and it is used for Windows platform. (中文:集成了FB的Phabricator arc命令和SVN命令的windows bat脚手架命令集.)
@echo off
rem echo path
rem path
rem echo HELLO
rem pause
rem @pause
rem call php -v
@jeromechan
jeromechan / slim-demo.slim
Last active May 9, 2017 11:58
How to use slim engine for building html tags?(中文:slim模板引擎的使用demo样例)
doctype html
html lang="ja"
head
meta charset="utf-8"
title The Elevatorpitch
meta name="viewport" content="width=device-width, initial-scale=1.0"
meta name="description" content="エレベーターピッッチの作成をお手伝いします。テンプレートに言葉をはめて、30 秒で話せるようになりましょう。"
<!-- Le styles -->
link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet"
@jeromechan
jeromechan / gradleAndroidBase.gradle
Last active May 9, 2017 12:03 — forked from youxiachai/gradleAndroidBase.gradle
Gradle config demo file for Android development.(中文:面向Android应用开发的gradle项目配置文件demo示例.)
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'