
notes.antoniuslin.info
Amusing A MusingThings I Think I Should Note Down For My Future Self.
http://notes.antoniuslin.info/
Things I Think I Should Note Down For My Future Self.
http://notes.antoniuslin.info/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.4 seconds
16x16
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
21
SITE IP
173.51.193.3
LOAD TIME
0.406 sec
SCORE
6.2
Amusing A Musing | notes.antoniuslin.info Reviews
https://notes.antoniuslin.info
Things I Think I Should Note Down For My Future Self.
sort - Amusing A Musing
http://notes.antoniuslin.info/tag/sort
Things I Think I Should Note Down For My Future Self. Javascript merge sort non-recursive. Var c = console.log, test = [6,5,3,1,8,7,2,4]; Array.prototype.msort = function() { var refdata = this, workdata = [], marker = this.length; for (var width = 1; width marker; width *= 2) { for (var index = 0; index marker; index = 2*width) { merge(refdata, index, Math.min(index width. Friday 07 Aug 2015. Javascript merge sort recursive. Thursday 06 Aug 2015. Wednesday 05 Aug 2015. Wednesday 11 Jun 2014. Var amusing...
Javascript merge sort non-recursive
http://notes.antoniuslin.info/javascript-merge-sort-non-recursive
Things I Think I Should Note Down For My Future Self. Javascript merge sort non-recursive. Comments powered by Disqus. Friday 07 Aug 2015.
passwd - Amusing A Musing
http://notes.antoniuslin.info/tag/passwd
Things I Think I Should Note Down For My Future Self. Mount -rw remount /. Monday 03 Aug 2015. Page 1 of 1.
Closing The Deal
http://notes.antoniuslin.info/closing-the-deal
Things I Think I Should Note Down For My Future Self. A closure is an internal function defined to access its parent's function's variable even when that variable is outside the inner function's immediate lexical scope. C = console.log; function outer(x) { var a = 10; function inner(y) { var b = 20; return b y x a; } return inner(2); } c(outer(1) ; / each additional call to outer still results in the same value / inner() cannot be called since it can only be referenced within outer(). Monday 30 Jun 2014.
merge - Amusing A Musing
http://notes.antoniuslin.info/tag/merge
Things I Think I Should Note Down For My Future Self. Javascript merge sort non-recursive. Var c = console.log, test = [6,5,3,1,8,7,2,4]; Array.prototype.msort = function() { var refdata = this, workdata = [], marker = this.length; for (var width = 1; width marker; width *= 2) { for (var index = 0; index marker; index = 2*width) { merge(refdata, index, Math.min(index width. Friday 07 Aug 2015. Javascript merge sort recursive. Thursday 06 Aug 2015. Page 1 of 1.
TOTAL PAGES IN THIS WEBSITE
19
json - Amusing A Musing
http://antoniuslin.info/tag/json
Things I Think I Should Note Down For My Future Self. Java JSON serializer libs */. Info source: http:/ stackoverflow.com/questions/338586/a-better-java-json-library. JSONLib: http:/ json-lib.sourceforge.net/. FlexJSON: http:/ flexjson.sourceforge.net/. Gson: http:/ code.google.com/p/google-gson/. Wednesday 25 Jun 2014. Page 1 of 1.
Bash S3 in
http://antoniuslin.info/bash-s3-in
Things I Think I Should Note Down For My Future Self. Bin/bash fetch files from s3 for f in `s3cmd ls -r s3:/ bucket/folder/* grep -o 's3:/ .*pattern.*.[ext png jpg]'`; do s3cmd get $f; done; put files to s3 s3cmd put *.* s3:/ bucket/folder/target/. Comments powered by Disqus. Thursday 26 Jun 2014.
Java JSON libs
http://antoniuslin.info/java-json-libs
Things I Think I Should Note Down For My Future Self. Java JSON serializer libs */. Info source: http:/ stackoverflow.com/questions/338586/a-better-java-json-library. JSONLib: http:/ json-lib.sourceforge.net/. FlexJSON: http:/ flexjson.sourceforge.net/. Gson: http:/ code.google.com/p/google-gson/. Comments powered by Disqus. Wednesday 25 Jun 2014.
mysql - Amusing A Musing
http://antoniuslin.info/tag/mysql
Things I Think I Should Note Down For My Future Self. Jdbc 2.0 db batch update sample */ connection.setAutoCommit(false); / do not auto-commit to rollback whole batch try { Statement s = connection.createStatement(); s.addBatch("call procedurename(argval1)"; s.addBatch("call procedurename(argval2)"; s.addBatch("call procedurename(argval3)"; int[] status = s.executeBatch(); connection.commit(); } catch (BatchUpdateException bue) { int[] status = bue.getUpdateCounts. Tuesday 24 Jun 2014. Monday 23 Jun 2014.
javascript - Amusing A Musing
http://antoniuslin.info/tag/javascript
Things I Think I Should Note Down For My Future Self. Javascript merge sort non-recursive. Var c = console.log, test = [6,5,3,1,8,7,2,4]; Array.prototype.msort = function() { var refdata = this, workdata = [], marker = this.length; for (var width = 1; width marker; width *= 2) { for (var index = 0; index marker; index = 2*width) { merge(refdata, index, Math.min(index width. Friday 07 Aug 2015. Javascript merge sort recursive. Thursday 06 Aug 2015. Tuesday 04 Aug 2015. Monday 30 Jun 2014. This is how we w...
lib - Amusing A Musing
http://antoniuslin.info/tag/lib
Things I Think I Should Note Down For My Future Self. Java JSON serializer libs */. Info source: http:/ stackoverflow.com/questions/338586/a-better-java-json-library. JSONLib: http:/ json-lib.sourceforge.net/. FlexJSON: http:/ flexjson.sourceforge.net/. Gson: http:/ code.google.com/p/google-gson/. Wednesday 25 Jun 2014. Page 1 of 1.
Collision circle
http://antoniuslin.info/collision-circle
Things I Think I Should Note Down For My Future Self. Comments powered by Disqus. Thursday 26 Jun 2014.
multiline - Amusing A Musing
http://antoniuslin.info/tag/multiline
Things I Think I Should Note Down For My Future Self. Multiline string values in Javascript. Var raw = function(f) { return f.toString(). replace(/ [ /] / *! Replace(/ * /[ /] $/, ' ); } var test = raw(function(){/*! This is how we write clean multi-line strings unencumbered with es {backslashes} */}); console.log(test.toString() ; console.log(raw.toString() ;. Friday 27 Jun 2014. Page 1 of 1.
Multiline string values in Javascript
http://antoniuslin.info/multiline-string-values-in-javascript
Things I Think I Should Note Down For My Future Self. Multiline string values in Javascript. Var raw = function(f) { return f.toString(). replace(/ [ /] / *! Replace(/ * /[ /] $/, ' ); } var test = raw(function(){/*! This is how we write clean multi-line strings unencumbered with es {backslashes} */}); console.log(test.toString() ; console.log(raw.toString() ;. Comments powered by Disqus. Friday 27 Jun 2014.
java - Amusing A Musing
http://antoniuslin.info/tag/java
Things I Think I Should Note Down For My Future Self. Java JSON serializer libs */. Info source: http:/ stackoverflow.com/questions/338586/a-better-java-json-library. JSONLib: http:/ json-lib.sourceforge.net/. FlexJSON: http:/ flexjson.sourceforge.net/. Gson: http:/ code.google.com/p/google-gson/. Wednesday 25 Jun 2014. Page 1 of 1.
TOTAL LINKS TO THIS WEBSITE
21
Reading Notes
Random images, notes on books, and other odds and ends too insubstantial for www.andrewlamb.me. Looking towards Lulworth Cove #prisma (at Lulworth Cove and Durdle Door, Dorset). Isle of Portland #prisma (at Durdle Door). Rain clouds in Dorset (at Dorset). View from the Gherkin. A foggy City from #London Bridge. Tulip Staircase (at Queen’s House). Mdash; Lewis Hyde –. Google and the Culture of Search. The Tower of Babel and the Library of Alexandria, to Jorge Luis Borges, HG Wells’ World Brain.
Andrew Romano: Covenger & Kester
August 10, 2015. The Pilot House by #AQuincyJones, #WhitneyRSmith and #EdgardoContini (1948). August 10, 2015. Rendering of the Warshaw Residence by #RMSchindler (1937). Supposed to be on Lucile Avenue in Silver Lake. Sadly, it was never built. August 10, 2015. August 10, 2015. Rug design for a child’s room by #AnniAlbers (1928). I know just the spot for this. August 3, 2015. August 3, 2015. August 3, 2015. August 3, 2015. August 3, 2015. So apparently #DoyleLane made teapots. August 3, 2015. The Beverly...
anglepoised notes
Order coupled with pleasing decoration. Kim Stanley Robinson,. All landscape art reminds us: we live in a tabula rasa, and must write on it. It is our world, and its beauty is entirely inside our heads. Kim Stanley Robinson,. The mind cannot carry away all that it has to give, nor does it always believe possible what it has carried away. Interface evolves toward transparency. The one you have to devote the least conscious effort to, survives, prospers. Distrust That Particular Flavor. Wind, Sand and Stars.
phpSysInfo - Redirection
In approx. 2 seconds the redirection target page should load. If it doesn't please select the link above. Generated by phpSysInfo - 3.1.8.
Anna Goss
If you're cold, pedal harder. Branding and digital. Happy to be a producer at With Associates. I’ve started writing collections of thoughts in a newsletter, because who doesn’t these days. I’ll still post more fully formed ideas here, but for now, opting in for the occasional emails. Is the best way to get a view of my garbled brain. Lastfm capturing me and @jamescpenycate. People laugh at me about twitter. people laugh at me about double knitwear. but i am usually right in the end. Others: buying a hous...
Amusing A Musing
Things I Think I Should Note Down For My Future Self. Javascript merge sort non-recursive. Var c = console.log, test = [6,5,3,1,8,7,2,4]; Array.prototype.msort = function() { var refdata = this, workdata = [], marker = this.length; for (var width = 1; width marker; width *= 2) { for (var index = 0; index marker; index = 2*width) { merge(refdata, index, Math.min(index width. Friday 05 Jun 2015. Javascript merge sort recursive. Thursday 04 Jun 2015. Wednesday 03 Jun 2015. Var c = console.log; var test1...
Antony的電腦技術學習記錄
把經驗和實作記錄,當作是提醒自己,或分享經驗,也很有益處。若發現任何錯漏或有某高見,請不吝留言賜教。 本站任何內容均不得複製或轉貼,若需轉貼,請先獲得站長許可。 在Mac OS X 10.10以上以BASH指令作SHA比對. 假設SHA256的結果(Message Digest)檔案名以sha256作結尾。 以下指令是比對本路徑底下(`pwd`)的所有m4a檔,使用時請因應情況改動。 For f in *.m4a; do openssl sha256 "$f" "$f.sha256"; done. For f in *.m4a; do diff (openssl sha256 "$f") (cat "$f.sha256"); done. Mac OS X 10.10(Yosemite)上使用ZTE MT820上網. 升級到Mac OS X 10.10 Yosemite後,ZTE MF820的連接程式無法在Yosemite版本偵察出硬體。 還在下面的「於選單上顯示數據機狀態」上打勾。 再到「進階設定」。在型號上挑選ZTE USB MODEM。 分類: mac os x. 包圍著的原碼都會變成上面一樣...
short notes
Is a journal on software, systems, engineering practices among other things. Contact address: email to the editor. Monday, 9. October 2006. Ralph Griswold 1934-05-19 - 2006-10-06. Passed away a few days ago. He was one of the early pioneers of computer science, invented SNOBOL language at the Bell Labs and Icon. Friday, 25. August 2006. Probably very few people know of software named Schoonschip. Monday, 26. December 2005. Browser 15 years later. Saturday, 25. June 2005. Jack Kilby 1923-11-08 - 2005-06-20.
ゆるメモ | 思いつくまま、ゆる〜くメモします
さて、サーバに接続するには作成した公開鍵をサーバにコピーして、ログインしたいユーザの /.sshディレクトリにあるauthorized keysに追加します。 Cd /ssh cat id rsa.pub authorized keys. Ssh -i 秘密鍵ファイル ユーザ名@サーバIPまたはホスト名 -p ポート番号. Openssl rsa -in id rsa -outform pem id rsa.pem. This entry was posted in MacOSX. Mac OS X にて、画像ファイルの色空間がRGBかCMYKかを判定する方法。 Sips -g space ファイル名. For nm in *.jpg;. Sips -g space $nm;. This entry was posted in MacOSX. 検証環境 Mac OS X 10.7.5、10.9.3. Grep -lr '検索する文字列' * xargs sed -i " -e 's/検索する文字列/置換後の文字列/g'. Continue reading →. Sudo port install tree.
APZ media's notes
A little bit of creative flow. Thoughts, ideas and references for video, art and design, curated by Pablo Apiolazza. This site is an extension of our website: APZmedia. You can follow us on facebook. Azaleh - Endeavour by Azaleh http:/ bit.ly/2eIT8Ga. Hip Hop Beat 5 (90 Bpm) by Fabio Ambrosino http:/ bit.ly/2dLWxU5. Hip Hop Beat (85 Bpm) by Fabio Ambrosino http:/ bit.ly/2eGD98k. Hip Hop Loop 1 (90 Bpm) by Fabio Ambrosino http:/ bit.ly/2dLWpnr.
arkmedical.com - This website is for sale! - arkmedical ark medical Resources and Information.
The owner of arkmedical.com. Is offering it for sale for an asking price of 4880 EUR! The owner of arkmedical.com. Is offering it for sale for an asking price of 4880 EUR! This webpage was generated by the domain owner using Sedo Domain Parking. Disclaimer: Sedo maintains no relationship with third party advertisers. Reference to any specific service or trade mark is not controlled by Sedo nor does it constitute or imply its association, endorsement or recommendation.