View objective c xml
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>万</key> | |
<string>萬</string> | |
<key>与</key> | |
<string>與</string> | |
<key>专</key> | |
<string>專</string> |
View mobile_device_check.html
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
<script> | |
if ((navigator.userAgent.match(/iPhone/i)) || | |
(navigator.userAgent.match(/Android/i)) || | |
(navigator.userAgent.match(/iPod/i))|| | |
(navigator.userAgent.match(/Windows Phone OS 7/i))) | |
{ | |
location.replace("mobile.aspx"); | |
} | |
</script> |
View intersection.sql
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
SELECT user_id | |
FROM `facebook_active_user_201303` | |
WHERE page_id = '145649977189' | |
AND startdate = '2013-03-01' | |
AND period = 'month' | |
AND user_id | |
IN | |
( | |
SELECT user_id | |
FROM `facebook_active_user_201303` |
View gps based recommendation list.json
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
{ | |
"array": [ | |
{ | |
"location": { | |
"lat": 123, | |
"long": 456, | |
"address": "xxxxxx" | |
}, | |
"uid": "12345" | |
"tel": "0912345678", |
View download_file_name_set
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
//指定ContentType | |
context.Response.ContentType = _contentType; | |
//檔案Response出去 註:這邊會將檔案整個Response出去但是並不會顯示路徑!! | |
context.Response.WriteFile(ConfigurationManager.AppSettings["files_folder_PhysicalPath"] + _file); | |
string _fileName = HttpUtility.UrlPathEncode( Path.GetFileName(_file)); | |
string strContentDisposition = String.Format("{0}; filename=\"{1}\"", "inline", _fileName); | |
context.Response.AddHeader("Content-Disposition", strContentDisposition); |
View isUTF8.php
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
//判斷是否是UTF8 | |
private function isUTF8($word) | |
{ | |
if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}$/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){2,}/",$word) == true) | |
{ | |
return true; | |
} | |
else | |
{ | |
return false; |
View sublime_setting.json
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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Monokai Soda.tmTheme", | |
"disabled_single_snippet_for_scopes": "text.html, er, pe, pc, if, ife, else, elsif, end, lt", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", |
View nginx.conf
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
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; | |
View es.sh
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
cd ~ | |
### Install default-jre | |
sudo apt-get update | |
sudo apt-get install default-jre | |
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.7.1.deb | |
sudo dpkg -i elasticsearch-1.7.1.deb |
View add-swap.sh
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
#!/bin/sh | |
# size of swapfile in megabytes | |
swapsize=512 | |
# does the swap file already exist? | |
grep -q "swapfile" /etc/fstab | |
# if not then create it | |
if [ $? -ne 0 ]; then |
OlderNewer