bustta.logdown.com bustta.logdown.com

bustta.logdown.com

coding crops

My own technical notes and fresh things

http://bustta.logdown.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BUSTTA.LOGDOWN.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

July

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.6 out of 5 with 11 reviews
5 star
8
4 star
2
3 star
1
2 star
0
1 star
0

Hey there! Start your review of bustta.logdown.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2.3 seconds

FAVICON PREVIEW

  • bustta.logdown.com

    16x16

  • bustta.logdown.com

    32x32

CONTACTS AT BUSTTA.LOGDOWN.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
coding crops | bustta.logdown.com Reviews
<META>
DESCRIPTION
My own technical notes and fresh things
<META>
KEYWORDS
1 coding crops
2 blog
3 archives
4 about me
5 最後會發現程式碼越寫越右邊了,可能會長類似
6 dosomething
7 function
8 myreceiveservice
9 gettoken
10 auth
CONTENT
Page content here
KEYWORDS ON
PAGE
coding crops,blog,archives,about me,最後會發現程式碼越寫越右邊了,可能會長類似,dosomething,function,myreceiveservice,gettoken,auth,result,throw,getdevicevalue,retvalue,myresponseservice,senddevicevalue,status,而為什麼會寫出這種結構呢,循序的作,結果只有會成功或失敗,前面的錯了,那後面就 abort,有興趣可以參考 html5rock
SERVER
nginx/1.6.2 + Phusion Passenger 4.0.59
POWERED BY
Phusion Passenger 4.0.59
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

coding crops | bustta.logdown.com Reviews

https://bustta.logdown.com

My own technical notes and fresh things

INTERNAL PAGES

bustta.logdown.com bustta.logdown.com
1

[JS] Interface in JavaScript ? « coding crops

http://bustta.logdown.com/posts/278686-interface-in-javascript

JS] Interface in JavaScript? June 3, 2015. 然而,在 JavaScript 裡面我們無法這麼做,因為 JavaScript 沒有介面而且他是 weak tying. 這邊故意不實作 setStyle ,如果是一般 OO language 的話,在 compile 的時候應該就報錯了. 但是 js 要到你真正去 call 了 setStyle 的時候才會報錯,所以如果你不實作也不 call 的話,那大家和平共處相安無事. 模擬出來的 interface,他所能做到的只是個類似 spec doc 的功能. 告訴你應該實作那些 function,而之後沒有真正實作這些 function 也不會怎樣. 既然沒辦法對介面做事,也沒辦法規範實作的類別,那我覺得在 JavaScript 裡去模擬 interface 真是有點多餘了. 畢竟 duck typing 何必真的硬要把所有 OOP 的概念都實作出來呢. June 3, 2015. Comments powered by Disqus. JS] JavaScript Static Method.

2

[JS] JavaScript Factory Pattern « coding crops

http://bustta.logdown.com/posts/283094-javascript-factory-pattern

JS] JavaScript Factory Pattern. June 30, 2015. Var beverage = new BeverageFactory().createBeverage('GreenTea');. 但是上面這樣的工廠有一個問題,假設今天飲料有五十種的話,那就要五十個 if else 或是 switch case,. 而且把這個 map 放在 prototype 裡面也就不會每 new 一次就來一個 map 佔空間. Does not exist.'. June 30, 2015. Comments powered by Disqus. Note] Cached QuerySet in Django. JS] JavaScript Callback Hell with Promise. PY] Integrate Vagrant with PyCharm. JS] From Classic Async Function to Promise. JS] JavaScript Callback Hell with Promise.

3

使用反射來轉換類別物件 « coding crops

http://bustta.logdown.com/posts/255426-using-reflection-to-convert-class-object

February 15, 2015. 最近在寫 API 給人家用的時候遇到了一個問題,就是真實的 DataModel 到底要不要整串倒上 Help page 給 user 看. 以 Azure Table Storage 的特性來舉例,我寫自己的 model class 通常會繼承他的 TableEntity,而如果把 model 直接上 help page. 喔,真的是很快很方便,但就真的是全部被看光光,連 table entity 裏的 partitionKey 與 rowKey 這些 user 不需要知道的東西都露出了,感覺實在不是很好。 這概念其實跟從 DB 批次拿資料出來要塞進我們自己的 object 的概念一樣,所以理論上 AutoMapper. 主要概念是把所有想公開的 property 寫在 UserBindingModel,而 UserModel 才是真正繼承 tableEnitty 的 dataModel。 那實作呢 最簡單的方法就是一換一,例如一個 UserBindingModel 就 map 一個 UserModel。 February 15, 2015.

4

[JS] JavaScript Static Method « coding crops

http://bustta.logdown.com/posts/276810-javascript-static-method

JS] JavaScript Static Method. May 21, 2015. 靜態成員在 OOP 當中是 class 層級的東西,亦即他是跟著 class 的生命週期而不是 instance,因此他在取用上不需要透過實體來做存取。 透過上面的程式碼,madeBy 就是 Device 的靜態方法. 而在這樣的模式下,要怎麼建立實體或一般方法 這時候就要透過 prototype 了. Prototype 在實體尚未建立前,你直接透過建構式是沒有辦法去 access 到的. Device.setType('3C'); / error. 這時候會發現它會找不到這個 function,因為它的生命周期是從 new 之後才開始. 但當需要用到 singleton pattern 的時候,靜態方法/成員就是不可或缺的了. May 21, 2015. Comments powered by Disqus. JS] JavaScript Module Pattern. JS] Interface in JavaScript? PY] Integrate Vagrant with PyCharm.

5

Category : Env « coding crops

http://bustta.logdown.com/categories/Env

PY] Integrate Vagrant with PyCharm. Deploy Django on DigitalOcean. Postgresql Remote Access Setting. PY] Integrate Vagrant with PyCharm. JS] From Classic Async Function to Promise. JS] JavaScript Callback Hell with Promise. JS] JavaScript Factory Pattern.

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

LINKS TO THIS WEBSITE

dinos80152.wordpress.com dinos80152.wordpress.com

SEO 相關技巧整理 | 不怕就是強

https://dinos80152.wordpress.com/2015/05/16/seo-相關技巧整理

Code, System, Programming, Engineering. 2015 年 05 月 16 日. 2016 年 01 月 27 日. Facebook Like and Share. 越相關的字,在 title 往越前面擺,總長不要超過 20-25 個字. 英文使用小寫,單字間使用 – 分隔. 使用 Html 5 架構撰寫頁面, HTML 5 Semantics. 邱煜庭(小黑), SEO 真的只要做這些事就好,Modern Web Conf 2015. How To Create SEO and User Friendly URLs@LINCHPINSEO. MySQL Storage Engine, InnoDB vs. MyISAM →. One thought on “ SEO 相關技巧整理. 通告 目錄(Table of Contents) 不怕就是強. You are commenting using your WordPress.com account. ( Log Out. Laravel - 設計一個好的 Blade Template, 使用 @parent.

dinos80152.wordpress.com dinos80152.wordpress.com

MySQL Storage Engine, InnoDB vs. MyISAM | 不怕就是強

https://dinos80152.wordpress.com/2015/05/20/mysql-storage-engine-innodb-vs-myisam

Code, System, Programming, Engineering. MySQL Storage Engine, InnoDB vs. MyISAM. 2015 年 05 月 20 日. 2015 年 05 月 20 日. Storage engines are MySQL components that handle the SQL operations for different table types. 8211;MySQL 5.6 Reference Manual. No ordering in storage of data. Row data stored in pages in PK order. What’s the difference between MyISAM and InnoDB? MySQL 5.6 Reference Manual. 從 Laravel 4.2 到 5.0 基礎篇 (From Laravel 4.2 to 5.0 – The basic) →. 通告 目錄(Table of Contents) 不怕就是強. Linux 更新 PHP 版本.

dinos80152.wordpress.com dinos80152.wordpress.com

Functional Programming in PHP, Lambda | 不怕就是強

https://dinos80152.wordpress.com/2015/06/28/functional-programming-in-php-lambda

Code, System, Programming, Engineering. Functional Programming in PHP, Lambda. 2015 年 06 月 28 日. 2015 年 06 月 28 日. Function head sum($x) { for($x; $x 0; $x- ) { $sum = $x; } return $sum; }. Function head sum($x) { return ($x = 1)? X : $x head sum($x - 1); } head sum(10). Value = 5; $func name = function($param) use ($value) { return $param $value; }; echo $func name(3); / 8. Function get algorithm($rand seed func) { return (odd even($rand seed func() )? Functional Programming in PHP by Simon Holywell.

dinos80152.wordpress.com dinos80152.wordpress.com

Windows 上共用資料夾(Shared folder)至 VirtualBox Linux 設定與自動掛載 | 不怕就是強

https://dinos80152.wordpress.com/2015/03/15/windows-上共用資料夾shared-folder至-virtualbox-linux-設定與自動掛載

Code, System, Programming, Engineering. Windows 上共用資料夾(Shared folder)至 VirtualBox Linux 設定與自動掛載. 2015 年 03 月 15 日. 2015 年 04 月 06 日. 要在 VirtaulBox 上的 Linux 掛載 Windows 上的資料夾,必須藉由 Virtual Box 所提供的 Guest Additions 完成。 設定開機自動掛載時須先設定 modules-load vboxsf 才不會導致開機失敗。 本機 OS: Windows 7. 虛擬機 OS: CentOS 7. 在虛擬機器視窗 裝置 CD/DVD 裝置 選擇虛擬 CD/DVD 磁碟檔案. 選定 C: Program Files Oracle VirtualBox VboxGuestAdditions.iso. 進入 CentOS 7,並切換至 root. 035; mount /dev/cdrom /media/cdrom/. 選擇 Linux 版本的 Guest Additions 安裝. 035; ls /media/.

dinos80152.wordpress.com dinos80152.wordpress.com

從 Laravel 4.2 到 5.0─基礎篇 (From Laravel 4.2 to 5.0 – The basic) | 不怕就是強

https://dinos80152.wordpress.com/2015/05/31/dinolai

Code, System, Programming, Engineering. 從 Laravel 4.2 到 5.0 基礎篇 (From Laravel 4.2 to 5.0 – The basic). 2015 年 05 月 31 日. 2015 年 06 月 12 日. Laravel 5 doesn’t have environment detection * , use .env.example. Naming Your Application (optional). Php artisan app:name Mstar. CSRF Protection is default middleware in Laravel 5. App/filter.php Route: filter('csrf', function() { if (Session: token()! Input: get(' token') { throw new IlluminateSessionTokenMismatchException; } });. Parent Class and Namespace. Parent...

dinos80152.wordpress.com dinos80152.wordpress.com

Laravel – 設計一個好的 Blade Template, 使用 @parent | 不怕就是強

https://dinos80152.wordpress.com/2015/08/04/laravel-設計一個好的-blade-template-使用-parent

Code, System, Programming, Engineering. Laravel – 設計一個好的 Blade Template, 使用 @parent. 2015 年 08 月 04 日. 2015 年 08 月 04 日. 在 Laravel 裡我們會把版面都用到的地方切成 layout 出來,如 基本的 HTML Tag, Meta Tag, CSS, Javascript 等等,而因為 js 要給子頁面用,所以都會把 js 移到上面來。 Layout.blade.php -! DOCTYPE html html head title Laravel 5 Example - @yield('title') /title meta charset=utf-8 link rel=stylesheet href=https:/ maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css script src=https:/ ajax.googleapi...Layout.blade.php -! DOCTYPE html ht...

dinos80152.wordpress.com dinos80152.wordpress.com

Functional Programming in PHP, Array Functions | 不怕就是強

https://dinos80152.wordpress.com/2015/06/09/functional-programming-in-php-array-functions

Code, System, Programming, Engineering. Functional Programming in PHP, Array Functions. 2015 年 06 月 09 日. 2015 年 06 月 09 日. 會去走訪 array 裡的所有元素,並將符合條件的串成 array 回傳出來。 Array array filter ( array $array [, callable $callback [, int $flag = 0 ] ). Array filter($allow ips, function($ip) { return $ip = $ SERVER['REMOTE ADDR']; })? Throw new Exception('Denied IP');. 當沒有設定條件時,會傳回符合 true 條件的 array. Array filter(array('', true, 's', 0, null) ; / [true, 's']. 會將每個 array 裡的元素經過指定的 function 處理,並將結果丟進另一個 array 傳出來。

dinos80152.wordpress.com dinos80152.wordpress.com

dinos80152 | 不怕就是強

https://dinos80152.wordpress.com/author/dinos80152

Code, System, Programming, Engineering. Laravel 效能調校,讀寫分離 Read / Write. 2015 年 10 月 14 日. 2015 年 10 月 14 日. 在 Laravel 裡要做讀寫分離很簡單,首先要調整 config 裡的 db 連線,把 host 改為 read 與 write 分開,範例如下. DB HOST READ=192.168.1.1 DB HOST WRITE=192.168.1.2 DB DATABASE=homestead DB USERNAME=homestead DB PASSWORD=secret / . 這樣在 select 時會使用 read 的 connection, 而做 delete, update, insert 時則會使用 write 的 connection。 那問題來了,因為 database replicate 其實是需要時間的,那在一些需要即時的資料時 例如搶票 ,為了確保資料沒有落差,我們就不能使用讀寫分離,此時我們可以使用以下語法讓 select 去使用 write connection。

UPGRADE TO PREMIUM TO VIEW 4 MORE

TOTAL LINKS TO THIS WEBSITE

12

OTHER SITES

buststore.com buststore.com

buststore.com | Isimtescil.net | Ücretsiz yapım aşamasında sayfası

Lütfen en kısa sürede tekrar ziyaret ediniz. Alan Adı kaydı ve hostingi IsimTescil.NET.

buststress.com buststress.com

Bust Stress Now

Jill Baron, M.D. Do you feel overwhelmed by the many competing demands on your time? Do you often cave into your cravings when stressed out - but afterward get upset that you've messed up your diet yet again? Are you fed up with f being controlled by your frenzied, harried life? Connie Bennett, C.H.H.C. Then learn about the popular Don't Mess With Stress to Kick Sugar Program. With Jill Baron, M.D. and Connie Bennett, C.H.H.C., C.P.C. In your Don't Mess With Stress to Kick Sugar Now Program. Dr Baron is ...

bustt.net bustt.net

bu.st.t. | Business, Strategy & Technology « Providing a window into society's emerging economics.

Bustt Business, Strategy and Technology. Providing a window into society's emerging economics. Why Bitcoin acceptance can’t grow faster than many would like it to. June 9, 2014. Bitcoin meets real-world barriers that are not only difficult to overcome, but require a different understanding of money and its usage. The coming digital anarchy [The Telegraph]. June 4, 2014. No problem can be solved from the same level of consciousness that created it. 8212; Albert Einstein. The old paradigm of how we do thin...

bustt.skyrock.com bustt.skyrock.com

Blog de bustt - buster friendly - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Ben voila a la demande générale voici mon blog :) puis si jamais vous voulez lacher des coms vous pouvez je vous en voudrez po ;). Mise à jour :. Abonne-toi à mon blog! Petite soirée bien ajitée. Bouh que d'émotion se mardi soir, alors pour commencer petit apéros au subway, puis après on va chez moi pour que je me change, après on va pour acheter des clopes pour le copain de ma soeur et la sa sé le drame! Ou poster avec :. Posté le jeudi 12 avril 2007 15:33.

bustta.com bustta.com

BUSTTA

PAACE Automechanika Mexico 2013. Changzhou Bustta Auto Parts Co.,ltd attended " the. Changzhou Bustta Auto Parts Co.,ltd will attend.

bustta.logdown.com bustta.logdown.com

coding crops

JavaScript Callback Hell with Promise. August 13, 2015. 寫 JavaScript 免不了會寫到許多 asynchronous 的 function,. 而當 async function 做完事的下一步通常就是去執行丟進去的 callback function。 由於這樣的特性,有些我們想要等到 async function 做完才做的事就會寫在 callback function 裡。 如果只是一些簡單的處理那還好,但如果是又包一個 async function 進去呢. 這種太多層巢狀且越來越往右邊的結構有人說叫 pyramid of doom,也有一些人叫他 callback hell。 探究原因就是我們想要他循序的去執行這些 function,譬如說 a 做完再做 b,b 做完再做 c 並且,如果前面的 a 已經 error 了,那後面的都不要再做了. 如果認可與需要這樣的邏輯,那你需要的東西可以用 Promise 來做,Promise 大概是這樣的概念. 那可以找找以 Promise/A 這種標準的 lib 來用,. 但是 js 要到你真...

busttarerun.com busttarerun.com

バストが垂れる場合の対策

bustted.com bustted.com

bustted.com

CLICK HERE TO BUY NOW! The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois).

busttees.net busttees.net

BustTee's Gifts for Golfers

Error Page cannot be displayed. Please contact your service provider for more details. (1).

bustterje.skyrock.com bustterje.skyrock.com

Their Profile - BUSTTERJE - Skyrock.com

The position of the blocks have been saved. J'ai 22 ans , j'ai les yeux bleux je fait 1m76 J'ai les cheveux chatain claire. Monday, 08 June 2015 at 12:18 PM. Wed, March 11, 2015. Here for: To hook up. My star sign : Cancer. Post to my blog. Here you are free.

bustthatcherry.com bustthatcherry.com

Welcome to Bust That Cherry!

Welcome to BustThatCherry.com, we're all about breaking fresh new teens in for the first time EVER! That's right, inside you'll find hundreds of the cutest girls who haven't had their tight little cherries popped yet. That is until they came to visit us! Watch more teen cherries get popped. Click here to join! We came across this little promiscuous 18 year old while she was out sun tanning completely nude at the hotel we were staying at! Get your all access pass and start downloading! Now this is what we...