blog.tonycube.com blog.tonycube.com

blog.tonycube.com

Tony Blog

程式設計學習筆記及教學(tutorial),包含網頁程式設計(web)、手機應用程式設計(Android App、iOS App)、程式語言(Java、Kotlin、PHP、Objective C、Swift)及框架(Laravel、Vue.js)。

http://blog.tonycube.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BLOG.TONYCUBE.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

April

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.1 out of 5 with 19 reviews
5 star
9
4 star
5
3 star
4
2 star
0
1 star
1

Hey there! Start your review of blog.tonycube.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2.7 seconds

CONTACTS AT BLOG.TONYCUBE.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Tony Blog | blog.tonycube.com Reviews
<META>
DESCRIPTION
程式設計學習筆記及教學(tutorial),包含網頁程式設計(web)、手機應用程式設計(Android App、iOS App)、程式語言(Java、Kotlin、PHP、Objective C、Swift)及框架(Laravel、Vue.js)。
<META>
KEYWORDS
1 tony blog
2 code for fun
3 vuejs
4 vuecomponent
5 在 html 元素中有
6 class
7 style
8 v bind
9 較舊的文章
10 熱門文章
CONTENT
Page content here
KEYWORDS ON
PAGE
tony blog,code for fun,vuejs,vuecomponent,在 html 元素中有,class,style,v bind,較舊的文章,熱門文章,系列文章,vuejs 系列文章,laravel 4 學習筆記,雲端主機推薦,digitalocean,註:使用此 連結,註冊可以幫我獲得推薦費用,感謝您,pubu,gitbook,載入中…,文章分類,android,laravel,java,windowsphone,flash,html,objective c,cocos2d,xcode
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Tony Blog | blog.tonycube.com Reviews

https://blog.tonycube.com

程式設計學習筆記及教學(tutorial),包含網頁程式設計(web)、手機應用程式設計(Android App、iOS App)、程式語言(Java、Kotlin、PHP、Objective C、Swift)及框架(Laravel、Vue.js)。

INTERNAL PAGES

blog.tonycube.com blog.tonycube.com
1

Tony Blog: 在 Android 中使用 SQLite 資料庫

http://blog.tonycube.com/2011/11/androidsqlite.html

在 Android 中使用 SQLite 資料庫. 11月 21, 2011. 在 Android 中使用 SQLite 資料庫來儲存資料。 來做少量資料的儲存,Preference採用Key-Value的方式來儲存,取資料的時候必須以Key去取得,若資料量大時,並不適合,這時候可以使用關聯式資料庫來做大量結構化資料的儲存。 是個輕量化的關聯式資料庫,它輕薄短小,無須設定或管理,沒有伺服器及組態檔,不需要資料庫管理員,它只是一個檔案,可以依須求四處移動,對移動裝置來說是非常好用的資料庫。Android把SQLite資料庫儲存在 /data/data/packagename/databases. 當你的App建立時,若沒有使用到資料庫,在/data/data/packagename目錄中並不會有databases目錄,如下圖:. 當你開始使用資料庫後,資料庫目錄及檔案就會被建立,如下圖:. DBHelper.java :用來管理資料庫的建立及更新。 DbConstants.java :資料庫欄位的常數值。 Package com.tonycube.demo; import android&...你好&#6...

2

Tony Blog: Laravel 學習筆記(22) - 寄信 (mail)

http://blog.tonycube.com/2015/01/laravel-22-mail.html

Laravel 學習筆記(22) - 寄信 (mail). 1月 26, 2015. Laravel 使用 SwiftMailer library. 來處理寄信的功能,並在其上提供一個 API 讓操作更簡單。設定檔在. 65292;driver 預設是 'smtp'。如果你要使用 PHP 的 mail 函式,可以改為 'mail',其他可用的還有 'sendmail'、'mailgun'、'mandrill'及'log'。設定成 log 的話,Laravel 就不會真的寄信,而是把要寄出的信寫入 log 檔。 假設你要使用 Gmail SMTP 來寄信,設定如下:. Driver' = 'smtp', 'host' = 'smtp.gmail.com', 'port' = 587, 'username' = '你的gmail帳號', 'password' = 'gmail的密碼',. 65281;這裡有點要小心,因為你是以明碼填入你的 gmail 密碼,所以請小心保護這個檔案。(或是另申請一個gmail). 從表單取得資料 $from = ['email'= $input['email'], 'name...

3

Tony Blog: Android 如何使用 GET & POST 取得資料

http://blog.tonycube.com/2011/11/androidget-post.html

Android 如何使用 GET and POST 取得資料. 11月 19, 2011. 對於寫網頁程式的人來說應該是不陌生,在網頁表單中,要送出資料時就會選擇要用Get的方式還是Post的方式。常見的Get方式是在網址後面加上查詢字串,像是. Http:/ www.myweb.com/product? 在 Android 中使用 Get 及 Post 的幾個提示. 使用 org.apache.http 套件(也可以用別的). 清楚知道要使用 Get 還是 Post. 如果抓網路資料時間太久,建議把它放到背景執行並加上 Loading 提示. 首先你要建立一個 HttpClient 物件:. HttpClient client = new DefaultHttpClient();. 接著建立 HttpGet 物件並傳入網址:. HttpGet get = new HttpGet( url);. 當 HttpClient 執行 Get 任務後,會傳回 HttpResponse:. HttpResponse response = client.execute(get);. Null) { result =...

4

Tony Blog: Android 使用 Fragment 建立 Tab 取代 TabActivity

http://blog.tonycube.com/2013/07/android-fragment-tab-tabactivity.html

Android 使用 Fragment 建立 Tab 取代 TabActivity. 7月 06, 2013. 註了又註:要建立 Tab 請改用 SlidingTab. 65292;容易實作,操作更靈活。(修改於 2015/6/11). 註:TabActivity 已經在 Android 3.2(API Level 13) 被棄用了,請改用 Actionbar。(修改於 2015/3/16). 在很久很久以前(也才不過一、兩年前吧 )使用 TabActivity. 來製作 Tab ,當初還不熟 Android ,花了點時間才做出 Tab。某天程式寫著寫著,突然發現. 名稱上出現了一條刪除線,還加上黃色的毛毛蟲底線,然後想這是什麼鬼,查了一下才知道,原來是被 Deprecated ,就是被拋棄了 Q.Q,從 API Level 13(Android 3.2) 開始被棄用,官方文件是說,請改用 Fragment 來取代這個功能。 首先會有一個主要的母體,用來包含其他的 Fragment ,這個母體要去繼承 FragmentActivity. 65292;其他被包含在其中的 tab 則要繼承 Fragment.

5

Tony Blog: Laravel 學習筆記(21) - 分頁 (Pagination)

http://blog.tonycube.com/2015/01/laravel-21-pagination.html

Laravel 學習筆記(21) - 分頁 (Pagination). 1月 23, 2015. 在 HomeController@index 中,原本的. Posts = Post: all();. 是取得全部的資料,現在我們設定為一頁只顯示 3 筆,所以改成:. Posts = Post: paginate(3);. 完成,這樣一頁就只會顯示 3 筆資料。 接下來在 view 中顯示頁數連結,放在原本的 foreach 迴圈後顯示:. Lt;ol @foreach ($posts as $post) / 略. @endforeach /ol { $posts- links() }. 會顯示分頁連結。只是樣子可能有點醜,要自己去設定 CSS,或是你也可以使用 bootstrap。 你可以在 app/config/view.php 裡面修改 pagination 的型式,有數字的:. 本文網址: http:/ blog.tonycube.com/2015/01/laravel-21-pagination.html. 撰寫,轉載時請註明出處及文章連結,謝謝 😀.

UPGRADE TO PREMIUM TO VIEW 8 MORE

TOTAL PAGES IN THIS WEBSITE

13

LINKS TO THIS WEBSITE

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: 解決Xcode外掛無法使用問題

http://bruce620.blogspot.com/2015/03/xcode.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. XCodde 6.3.2. Find /Library/Application Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID`. 訂閱: 張貼留言 (Atom). 這次來寫一下 如何使用android模擬器安裝中文輸入法, 發現自己的android模擬器裡居然沒有中文輸入法, 但要輸入中文做測試居然不行= = 後來查到是說, 先去下載注音輸入法的apk檔, Android 注音輸入法 這裡可以下載到 http:/ c. Android Webview javascript與Java 互動傳參數. ADT location: ...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: UIContainer View呼叫Parent ViewController屬性與傳值

http://bruce620.blogspot.com/2015/03/uicontainer-viewparent-viewcontroller.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. Import "ChildViewController.h" @interface ViewController : UIViewController ChildViewControllerDelegate @property (weak, nonatomic) IBOutlet UITextField *parentTF; @end. ParentUIViewController .m  檔. 而在 ChildViewController.h 要宣告定義好protocol讓UIViewController能夠處理你要他做的事情. 直接由container view controller去修改parent view controller的值. ViewController*)self.parentViewController).lb.text =[NSString stringWithFormat:@"%ld",indexPath.row];. 訂閱: 張貼留言 (Atom). UIWebview與Jav...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: eclipse背景主題與字型大小

http://bruce620.blogspot.com/2012/08/eclipse.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. 1 file → import. Windows→preference→General→Appearance→Colors and Fonts→TextFont→Edit. 訂閱: 張貼留言 (Atom). 這次來寫一下 如何使用android模擬器安裝中文輸入法, 發現自己的android模擬器裡居然沒有中文輸入法, 但要輸入中文做測試居然不行= = 後來查到是說, 先去下載注音輸入法的apk檔, Android 注音輸入法 這裡可以下載到 http:/ c. Android Webview javascript與Java 互動傳參數. 重點是 要先設定 webview.setWebChromeClient(new WebChromeClient() ; webview.addJavascriptInterface(new JavaScriptInterface(), android&quot. 設定中文app name for Android. Android 指定開Line App傳入文字訊息 通常...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: XCode6.3惱人的bug

http://bruce620.blogspot.com/2015/04/xcode63bug.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. 明明就有一隻手機是ios 8.1.2版. Project設定 iOS Deployment Target 為 8.0版本. 但升到XCode6.3 卻無法傳app至8.1.2、8.2 的iOS手機. 訂閱: 張貼留言 (Atom). 這次來寫一下 如何使用android模擬器安裝中文輸入法, 發現自己的android模擬器裡居然沒有中文輸入法, 但要輸入中文做測試居然不行= = 後來查到是說, 先去下載注音輸入法的apk檔, Android 注音輸入法 這裡可以下載到 http:/ c. Android Webview javascript與Java 互動傳參數. 重點是 要先設定 webview.setWebChromeClient(new WebChromeClient() ; webview.addJavascriptInterface(new JavaScriptInterface(), android&quot. 設定中文app name for Android. Android 指定開Line...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: Apple開發者帳號 統編申請方式

http://bruce620.blogspot.com/2014/05/apple.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. 2 附款成功後,獲得訂單編號。 3 打電話與台灣客服聯繫 0800-020-021 ,選擇國語 按4. 我 11/2 下訂單,下單後立即照你說的電話打去要求開統一編號。 我再打電話去問,他們說要我寄回折讓單,於是我又立馬寄了折讓單。 然後到了 11/19 還是沒收到發票。 我再打電話去問,Apple 說有收到折讓單了,他們會儘速處理。 這麼大的公司,收訂單連統編都不能打,只能說:. 謝謝你提供的資訊,每年公司都會要求要開統編,但怎麼下單就是沒有欄位可以輸入。 但看到你的文章後,我下完訂單馬上撥電話進去,客服人員告訴我,如果是馬上下完單就打電話進來要求開統編,是會成功的! 訂閱: 張貼留言 (Atom). Android Webview javascript與Java 互動傳參數. 設定中文app name for Android. Mac OS X 10.9.4啟用apache 執行 sudo apachectl start 檔案根目錄位於 /Library/WebServer/Docum...ADT l...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: Objective-C 字串比較

http://bruce620.blogspot.com/2015/02/objective-c.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. 1  在header(.h)檔. FOUNDATION EXPORT NSString * const MY NAME;. FOUNDATION EXPORT NSString * const MY GIRLFRIEND NAME;. NSString * const MY NAME = @"James";. NSString * const MY GIRLFRIEND NAME = @"Stella";. Define MY NAM @"James". Define MY GIRLFRIEND NAME @"Stella". 這兩種方法在檢查字串時,第一種可以使用(StringInstance = MY NAME )來比較,. 而使用define則是使用([StringInstance isEqualToString:MY NAME]) 來比較。 第一種直接比較是使用pointer address,第二種比較則是比較每個字元是否相等。 訂閱: 張貼留言 (Atom). Mac OS X 10.9...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: [Java] Insert sort 插入排序法

http://bruce620.blogspot.com/2015/04/java-insert-sort.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. Java] Insert sort 插入排序法. Public class InsertSort { int data[] = new int[6]; int size = data.length; public static void main(String args[]) { System.out.print("123"); InsertSort is = new InsertSort(); is.inputarr(); is.showData(); is.insert(); }. Void showData() { int i; for(i = 0 ; i size;i ) { System.out.print(data[i] " "); } System.out.print(" n"); }. 最壞及平均需較(n-1) (n-2) .3 2 1 = n(n-1)/ 2次. Insert sort建議在錄結串列上使用,因為會常造成資料的大量搬移。 訂閱: 張貼留言 (Atom). 使用Titaniu...

bruce620.blogspot.com bruce620.blogspot.com

James 的記錄: 一條MOD網路線同時上網與看MOD

http://bruce620.blogspot.com/2014/04/modmod.html

簡單‧自在‧快樂 行動平台開發、互動設計、人機互動、ActionScript、JAVA、PHP等. 無線路由器的輸出接到電腦 用電腦先連到 無線路由器裡(看說明書連到192.168.0.1). 訂閱: 張貼留言 (Atom). 這次來寫一下 如何使用android模擬器安裝中文輸入法, 發現自己的android模擬器裡居然沒有中文輸入法, 但要輸入中文做測試居然不行= = 後來查到是說, 先去下載注音輸入法的apk檔, Android 注音輸入法 這裡可以下載到 http:/ c. Android Webview javascript與Java 互動傳參數. 重點是 要先設定 webview.setWebChromeClient(new WebChromeClient() ; webview.addJavascriptInterface(new JavaScriptInterface(), android&quot. 設定中文app name for Android. Android 指定開Line App傳入文字訊息 通常Android要開啟第三方App需知道對方app的package name Pa...

UPGRADE TO PREMIUM TO VIEW 18 MORE

TOTAL LINKS TO THIS WEBSITE

26

SOCIAL ENGAGEMENT



OTHER SITES

blog.tonycasper.com blog.tonycasper.com

Tony Casper Photography Blog

Welcome to my brand new blog, stay tuned for more!

blog.tonychow.me blog.tonychow.me

Tonychow

关于 Python Iterator 协议的一点思考. 所以 Python 提供了迭代器的类型来对这些类型的内容进行迭代遍历,迭代类型新增于 Python 2.2。 迭代器类型指的是遵循迭代器协议的类型,对于 Python2.x 版本来说就是实现了. Read on →. 今天把剩下的 20-23 章的内容阅读完毕了,这几章也是与 Python 相关的高级内容,包括 Web 编程,数据库接口和 Python 扩展等内容,下面稍微总结下每章的内容。 这一章所谓的 Web 编程内容实际上讲的是利用 urllib 模块进行的 Web 相关的编程,同时也讲到了利用 cgi 模块进行的 原始的 cgi 编程。 从内容来说的话主要介绍了 urllib 和 cgi 模块的一些使用。 Cgi 是比较早期的服务器处理客户端的 请求的方式,目前的 Python Web 编程已经不使用这种技术了。 此外,鉴于 HTTP 协议的无状态性质,可以利用 cookie 的方式来在客户端和服务器端进行一定的状态判断。 Read on →. 正则表达式在很多语言中都被支持,而同样 Python 也提供了对正则表达式支持的模块 re。

blog.tonycicero.com blog.tonycicero.com

Tony Cicero Photography - Blog of Photographer Tony Cicero

Blog of Photographer Tony Cicero. Cranes in the Winter City. As a follow up to my recent story. Cranes in the City. Junction Craft Brewery’s new home: The Destructor on Symes Road. The Junction Craft Brewery. Have expanded their production facilities by moving into The Destructor on Symes Road. Originally built in 1934 by legendary architect R.C. Harris. It is now the city’s newest event venue featuring over 9,700 square feet of combined space. The brewery is part of three large rooms which can...I will ...

blog.tonycoconate.com blog.tonycoconate.com

I'm Tony Coconate and I have a blog.

I'm Tony Coconate and I write this blog about people, links, quotes, photos, videos and cultural learnings I have found all across the Internet. Rage Against the Machine’s live performance circa 1992… wow, I’m old. Video posted January 14th, 2015 Permalink. Mark Ronson - Uptown Funk (feat. Bruno Mars) #funkyashell. Video posted November 21st, 2014 Permalink. Be witness to a little happiness tomorrow. Video posted September 30th, 2014 Permalink. Eddie Berman and Laura Marling - Like a Rolling Stone.

blog.tonycode.com blog.tonycode.com

Random Thoughts

Customer requested email spoofing: SPF, DKIM and the desire to please your customers. Feb 14, 2014. Published by Tony Primerano. I have worked on a handful of web applications that send mail as a core feature. In all cases, no matter how much I protest, we end up with customers that insist on mail sent on their behalf to come from their domain. Here is the scenario. (these domain names are made up but likely active so don't go there). My application runs on wonderfulapp.com. Acme's site is at acme.com.

blog.tonycube.com blog.tonycube.com

Tony Blog

Vuejs (14) - 過場效果及動畫. Vuejs 可以在新增、更新或移除 DOM 時使用 CSS 顯示過場效果及動畫,讓元素或元件產生漸進變化。動畫效果可以自己設定,也可以使用第三方的函式庫。 Vuejs (13) - 建立 Laravel Artisan 指令產生 Vue 元件檔. Laravel 允許我們在 Artisan 中加入自己的指令,而我們每次在建立一個 Vue 元件檔時,動作及內容都差不多,這些重覆的流程就應該把它們自動化。 Vuejs (12) - 實戰 CRUD 使用 Laravel Vue. 接續前一篇 Vue.js (11) - 在 Laravel 5.4 中使用 Vue 2.1. 65292;這一篇將要實戰如何寫出一個 CRUD 的應用,也就是對資料庫做建立、讀取、更新及刪除的動作。 Vuejs (11) - 在 Laravel 5.4 中使用 Vue 2.1. Laravel 在第 5 版時已經內建支援 Vue,這篇將簡單介紹如何使用它們一起工作。 Vuejs (10) - 單一元件檔(Single-file components). Vuejs (6) - 計算屬性.

blog.tonyfendall.com blog.tonyfendall.com

Tony Fendall

I am a AWS Architect and Technical Lead working at BulletProof. This blog is where I share the tips and tricks I pick up along the way. Welcome to my home on the web. Serverless Architectures using AWS Lambda. Animating ProgressBar Skin in Flex. Using Vector Paths with Degrafa. Facebook Iframe Resizing Solution. Serverless Architectures using AWS Lambda. As a developer, managing a Linux operating system is pretty far down the list of things I want to be doing. As Werner Vogels said:. December 6, 2015.

blog.tonyfield.ca blog.tonyfield.ca

Tony Field’s Blog

Tony Field’s Blog. Random thoughts and musings. Fri 27 Jul 2012. Installing WebCenter Sites 11gR1 on Mac OS X with CSDT. Posted by tony.field under Technology , FatWire Content Server , Oracle WebCenter Sites. The following instructions are some great cheat sheet instructions for getting OWCS 11gR1 up and running on a Mac. I use Tomcat & HSQLDB. Installation works perfectly fine. It is assumed that nothing is installed at all - no database, application. Server, or even Eclipse. SET UP HOME DIRECTORIES.

blog.tonyfitzgeraldphotography.com blog.tonyfitzgeraldphotography.com

Tony Fitzgerald Photography | SANTA CRUZ WEDDING PHOTOGRAPHERS – TIMELESS | CONTEMPORARY | GREEN

SANTA CRUZ WEDDING PHOTOGRAPHERS – TIMELESS CONTEMPORARY GREEN. Henry Cowel State Park. Natural Bridges State Beach. PLANNING A WEDDING IN SANTA CRUZ. Local wedding cake designers. Featured on Wedding Lovely blog Engagement photos at Natural Bridges. Jennifer and Bobby’s engagement photos were just featured on the Wedding Lovely blog. The supportive hub for engaged couples and vendors. Click the link to see the full post. Photos by Tony Fitzgerald Photography. Share on Facebook (Opens in new window).

blog.tonygallagherphotography.com blog.tonygallagherphotography.com

Tony Gallagher Photography Blog | Denver Photographer

Tony Gallagher Photography Blog. The photo weblog of Tony Gallagher Photography. Welcome to Tony's Blog! Having settled in Denver, Colo., after years of living and working as a professional photographer. In New York City and San Francisco, I spend my days (and quite a few nights) taking pictures. My love for photography is more than a passion; it’s an obsession, and I’m constantly in search for the next story I can tell through my camera lens. Kaitlyn Mitch Breckenridge Wedding. This venue has a definite...

blog.tonyganchev.com blog.tonyganchev.com

Carbonara Code | Tony's Rudeness and Random Obsessions

Tony's Rudeness and Random Obsessions. March 18, 2014. Welcome to WordPress. This is your first post. Edit or delete it, then start blogging! Designed and Developed by templatesnext.