- lorem ipsum
lorem ipsum is a filler text commonly used to demonstrate the graphic elements of a document or visual presentation.
- Computer
> computer
/** | |
* Created by rankun203 on 2/5/15. | |
* <p/> | |
* 初步支持英文符号!http://bbs.csdn.net/topics/230081892 | |
* <p/> | |
* 你说什么呢?我不知道什么你说的什么 | |
* <p/> | |
* <pre> | |
* 么你知呢你 | |
* 说道?说 |
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../ace-element/ace-element.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; |
lorem ipsum is a filler text commonly used to demonstrate the graphic elements of a document or visual presentation.
> computer
#!/usr/bin/env bash | |
# author: [email protected] | |
mkdir -p ~/tmp/dcim | |
echo "> Pull all the photos from my Phone?" | |
select yn in "Yes" "No"; do | |
case $yn in | |
Yes ) echo '> Pulling'; adb pull /storage/sdcard0/DCIM/Camera/ ~/tmp/dcim; echo '> Done'; break;; |
(?bhttp://[-A-Za-z0-9+&@#/%?=~_()|!:,.;]*[-A-Za-z0-9+&@#/%=~_()|] |
if(parent.frames.length == 0) { | |
// AW: always be inside a Colnect page | |
var dst = location.href.replace(/\/forums/, '/forum').replace(/\.php[\?]?/, '!'); | |
top.location.replace(dst); | |
} else { | |
try { | |
url = parent.location.href; | |
pos = url.search(/\/\w\w(\W|$)/); | |
lang = url.substring(pos+1,pos+3); | |
dst = location.href.replace(/\/forums/, '/'+lang+'/forum').replace(/\.php[\?]?/, '!').replace(/lang=\w\w&?/, ''); |
###Finder
Keys:
Desc | Key |
---|---|
Move here | Option+CMD+V |
Commands:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#include <stdio.h> | |
#include <conio.h> | |
/** | |
* author: [email protected] | |
* Usage: | |
* -With Parameter | |
* CMD: charascii.exe A | |
* OutPut: A: 65 | |
* -Without Parameter |
#!/bin/bash | |
#author [email protected] | |
#ref http://unix.stackexchange.com/a/24955 | |
cd /home/rankun203 | |
inotifywait -r -m ./www -e create -e moved_to | | |
while read path action file; do | |
echo "The file '$file' appeared in directory '$path' via '$action'" | |
rsync -avzrhu --update --progress --chmod=u+rwx,g+rwx,o+rwx "$path$file" [email protected]:/home/rankun203/html/files | |
done |