Skip to content

Instantly share code, notes, and snippets.

View Suave's full-sized avatar
:octocat:
Hiring

Rui Su Suave

:octocat:
Hiring
View GitHub Profile
D/AUTH (32521): onResume is_authing: 0
D/AUTH (32521): onResume after ApiTask execute
D/WIFI_ADMIN(32521): now ssid=H3C-test, netId=18
D/WIFI_ADMIN(32521): ssid=#H3C-test#, SSID=#H3C-test#, equal? true
D/WIFI_ADMIN(32521): open wifi
D/WIFI_ADMIN(32521): sleep...
D/WIFI_ADMIN(32521): wifi state 3
D/WIFI_ADMIN(32521): create wifi config ssid=H3C-test
D/WIFI_ADMIN(32521): create config : ssid=H3C-test, pass=,type=1
D/WIFI_ADMIN(32521): exist config, remove first
D/AUTH ( 7294): onResume is_authing: 0
D/AUTH ( 7294): onResume after ApiTask execute
D/WIFI_ADMIN( 7294): now ssid=H3C-test, netId=19
D/WIFI_ADMIN( 7294): ssid=#H3C-test#, SSID=#H3C-test#, equal? true
D/WIFI_ADMIN( 7294): open wifi
D/WIFI_ADMIN( 7294): sleep...
D/WIFI_ADMIN( 7294): wifi state 3
D/WIFI_ADMIN( 7294): create wifi config ssid=H3C-test
D/WIFI_ADMIN( 7294): create config : ssid=H3C-test, pass=,type=1
D/WIFI_ADMIN( 7294): exist config, remove first
@Suave
Suave / gist:4e77e39f96a0ef1d2620
Created July 7, 2014 12:33
auto_migrations_rails4 work in rails4.1
diff --git a/lib/auto_migrations_rails4.rb b/lib/auto_migrations_rails4.rb
index 5195142..35fecf8 100644
--- a/lib/auto_migrations_rails4.rb
+++ b/lib/auto_migrations_rails4.rb
@@ -1,5 +1,6 @@
# load rake
-Dir[File.join(File.dirname(__FILE__),'tasks/**/*.rake')].each { |f| load f } if defined?(Rake)
+require 'rake'
+Dir[File.join(File.dirname(__FILE__),'tasks/**/*.rake')].each { |f| import f } if defined?(Rake)
find . -type d -name ".svn"|xargs rm -rf
@Suave
Suave / gist:107984
Created May 7, 2009 08:06
js 获取 url 参数
<script type="text/javascript">
<!--
function getQueryStringRegExp(name)
{
var reg = new RegExp("(^|\\?|&)"+ name +"=([^&]*)(\\s|&|$)", "i");
if (reg.test(location.href)) return unescape(RegExp.$2.replace(/\+/g, " ")); return "";
};
//http://localhost/test.html?aa=bb&test=cc+dd&ee=ff
alert(getQueryStringRegExp('test'));
//-->
@Suave
Suave / gist:702901
Created November 17, 2010 02:45
查看 svn merge 信息
svn propedit svn:mergeinfo .
@Suave
Suave / python-tips
Created November 19, 2010 10:09
经常用经常忘的一些功能
从一个文件里面按行读
f = open(filename, 'r')
while 1:
line = f.readline()
if not line:
break
.....
@Suave
Suave / install ack standalone
Created December 10, 2010 08:52
install ack without macports
wget http://betterthangrep.com/ack-standalone
sudo mv ack-standalone /usr/local/bin/ack
sudo chmod +x /usr/local/bin/ack
@Suave
Suave / .ackrc
Created December 10, 2010 08:55
ack config
# Always color, even piping
--color
# Pager
#--pager=less -r
# Add .ptl file support
--type-add=python=.ptl
@Suave
Suave / gist:2248830
Created March 30, 2012 07:34
homebrew mysql5.1 install failed
% brew install mysql51 -v
==> Downloading http://mysql.mirrors.pair.com/Downloads/MySQL-5.1/mysql-5.1.58.tar.gz
Already downloaded: /Library/Caches/Homebrew/mysql51-5.1.58.tar.gz
/usr/bin/tar xf /Library/Caches/Homebrew/mysql51-5.1.58.tar.gz
==> Patching
/usr/bin/patch -f -p1 -i 000-homebrew.diff
patching file scripts/mysqld_safe.sh
Hunk #1 succeeded at 384 (offset 1 line).
patching file scripts/mysql_config.sh
==> ./configure --without-docs --without-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/mysql51/5.1.58 --localstatedir=/usr/local/var/mysql --sysconfdir=/usr/local/etc --with-plugins=innobase,myisam --with-extra-charsets=complex --with-ssl --without-readline --enable-assembler --enable-thread-safe-client --enable-local-infile --enable-shared --with-partition