blog.urdada.net blog.urdada.net

blog.urdada.net

Dada's Blog

Just for fun!

http://blog.urdada.net/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BLOG.URDADA.NET

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.7 out of 5 with 7 reviews
5 star
5
4 star
2
3 star
0
2 star
0
1 star
0

Hey there! Start your review of blog.urdada.net

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

CONTACTS AT BLOG.URDADA.NET

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Dada's Blog | blog.urdada.net Reviews
<META>
DESCRIPTION
Just for fun!
<META>
KEYWORDS
1 dada
2 taiwan
3 gigamedia
4 freebsd
5 linux
6 internet
7 security
8 isp
9 plurk
10
CONTENT
Page content here
KEYWORDS ON
PAGE
dada's blog,just for fun,心情小語,旅遊休閒,網路科技,資訊安全,自製台灣2015年月曆 含台灣節日及農曆節氣 word/pdf,從前年開始因為自己的需要自製月曆 詳見 2013年,去年製作的月曆共被下載了兩萬五千多次,為了開始規劃明年的假日,所以提前把2015年的月曆做好了,引用之前關於此月曆的說明,完成的版本放在這邊分享下載,下載位置1 dropbox,pdf格式 2015 tw calendar pdf,可直接列印出來,如果你想加上自己的節日的話,適用舊版word
SERVER
nginx/1.12.1 (Ubuntu)
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Dada's Blog | blog.urdada.net Reviews

https://blog.urdada.net

Just for fun!

LINKS TO THIS WEBSITE

diary.tw diary.tw

My Program :: CSS寬度問題

http://diary.tw/tim/tag/width

今天在修正一個瀏覽器相容性問題時, 在使用 css 中的 calc(100%- 10px) 這樣的語法時, 由於 ie8 不支援, 所以改用 jQuery 的 obj.parent().width() 來進行設置. 測試後發現有一點落差, 起用 browser 的 box model 來檢查, 發現其中 parent 有設定左右的 padding, 導致 parent width 和原來的 css calc(100% -10px) 的 100% 會有落差, 所以查了一下 jQuery 語法, 使用 obj.parent().outerWidth() 就能順利取得和原來 css calc(100% -10px) 的 100% 寬度相同了. 如此一來就解決了在 ie8 下寬度使用 calc(100% -10px) 語法的問題. Trackback Address : http:/ diary.tw/tim/trackback/1110. 在 Azure 上 Media Servic. Replacement parts for ba. Replacement parts for ba.

diary.tw diary.tw

My Program :: 產生任意大小的圖片-fakeimg

http://diary.tw/tim/1029

一般在做網頁時, 若一時需要一個區塊的圖片, 指定大小, 來做出一個 mockup, 可以利用之前介紹的產生任意大小的貓圖片 ( link. 外, 還有剛從朋友網站 ( link. 看來的 fackimg: http:/ fackimg.pl/. 用法還蠻單純的, 官方網站上有幾個 sample 如下:. Img src="http:/ fakeimg.pl/300/" img src="http:/ fakeimg.pl/250x100/" img src="http:/ fakeimg.pl/250x100/ff0000/" img src="http:/ fakeimg.pl/350x200/ff0000/000" img src="http:/ fakeimg.pl/350x200/? Text=Hello" img src="http:/ fakeimg.pl/350x200/? Trackback Address : http:/ diary.tw/tim/trackback/1029. 這個也十分好用, 可以參考看看: http:/ lorempixel.com/.

diary.tw diary.tw

My Program :: MySQL資料表不存在的資料就新增-存在就忽略(或異動)的語法

http://diary.tw/tim/tag/on%20duplicate%20key

On duplicate key'相關日誌共 1 篇. 在新增資料於資料表時, 有個需求, 是不存在的資料就新增, 存在的資料就不動作(或是要處理一些異動), 這樣的需求如何操作呢? 可以使用 INSERT IGNORE INTO [table] . 的語法,. INSERT INTO [table]. ON DUPLICATE KEY UPDATE col=expr . Http:/ cain19811028.blogspot.tw/2015/01/mysql-insert-ignore-replace-on.html. Trackback Address : http:/ diary.tw/tim/trackback/1109. 在 Azure 上 Media Servic. Replacement parts for ba. Replacement parts for ba. BLOG]G. T. Wang. BLOG]Mr. 6 - 趨勢 創業. BLOG]Mr./Ms. Days (MMDa. BLOG]ProDevTips - dev r. BLOG]SEO 部落格 : 網路.

diary.tw diary.tw

My Program ::

http://diary.tw/tim/tag/MySQL

MySQL的on duplicate key update語法. 在要還原 mysql 備份檔時, 有時整個 database 的 backup file 檔案很大, 要找出其中某一個區塊很花時間, 也需要用一個能打開大檔的文字編輯器才能找到, 有沒有更方便的方法, 找出其中某個 table 呢? 可以使用好用的文字檔分割工具 csplit (linux 指令). 舉例來說, 我們要找一個 table t table1 的 dump 檔案內容, 而備份的 mysql database 檔案為 mysqlbackup.sql 我們使用指令如下:. Csplit -f output file mysqlbackup.sql "/Table structure for table `t table1`/" "/Table structure for table/". Csplit -f output file mysqlbackup.sql "/Table structure for table/" "{10}". 使用 csplit 可以快速的切割超級大檔案, 把要找的資料整理出來, 很方便又實用.

diary.tw diary.tw

My Program :: CSS寬度問題

http://diary.tw/tim/tag/calc

今天在修正一個瀏覽器相容性問題時, 在使用 css 中的 calc(100%- 10px) 這樣的語法時, 由於 ie8 不支援, 所以改用 jQuery 的 obj.parent().width() 來進行設置. 測試後發現有一點落差, 起用 browser 的 box model 來檢查, 發現其中 parent 有設定左右的 padding, 導致 parent width 和原來的 css calc(100% -10px) 的 100% 會有落差, 所以查了一下 jQuery 語法, 使用 obj.parent().outerWidth() 就能順利取得和原來 css calc(100% -10px) 的 100% 寬度相同了. 如此一來就解決了在 ie8 下寬度使用 calc(100% -10px) 語法的問題. Trackback Address : http:/ diary.tw/tim/trackback/1110. 在 Azure 上 Media Servic. Replacement parts for ba. Replacement parts for ba.

diary.tw diary.tw

My Program ::

http://diary.tw/tim/tag/Update

MySQL的on duplicate key update語法. 在新增資料於資料表時, 有個需求, 是不存在的資料就新增, 存在的資料就不動作(或是要處理一些異動), 這樣的需求如何操作呢? 可以使用 INSERT IGNORE INTO [table] . 的語法,. INSERT INTO [table]. ON DUPLICATE KEY UPDATE col=expr . Http:/ cain19811028.blogspot.tw/2015/01/mysql-insert-ignore-replace-on.html. Trackback Address : http:/ diary.tw/tim/trackback/1109. MySQL的on duplicate key update語法. 很有意思的一個語法, 不過可要小心使用, 在 mysql 5.0 版起, 可以在 insert 時, 指定若重覆 unique key 時, 則使用 update 語法, 這個有點像是在新增資料時, 若不存在則新增, 存在則 update 的方式. 在 Azure 上 Media Servic.

diary.tw diary.tw

My Program :: Google Maps Style

http://diary.tw/tim/tag/customized

Google Maps 大家很常用吧. 在做一些結合 Google Maps 的應用時, 有時會希望能把上面的圖示簡化, 或是一些圖示的顏色改變, 要如何進行呢? 可以使用 Google Maps API Styled Map Wizard: http:/ gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html. 這個 Wizard 可以快速的開關與調整圖示的顯示與否與改變顏色, 設定好後, 再產生出 JSON 格式的描述檔, 就可以自訂 Sytle 的 Google Maps. FeatureType": "water", "stylers": [ { "visibility": "off" } ] } ]. 以此類推, 一方面預覽一方面快速產出對應的描述檔, 很快速地建立自訂的 Google Maps. 上面已經有現成的許多格式可供套出, 一樣是產生 JSON 格式的描述檔供應用. 需要更詳細的自訂Google Maps Style可以參考Google 的官方文件:. 在 Azure 上 Media Servic.

diary.tw diary.tw

My Program :: CSS寬度問題

http://diary.tw/tim/tag/outerWidth

今天在修正一個瀏覽器相容性問題時, 在使用 css 中的 calc(100%- 10px) 這樣的語法時, 由於 ie8 不支援, 所以改用 jQuery 的 obj.parent().width() 來進行設置. 測試後發現有一點落差, 起用 browser 的 box model 來檢查, 發現其中 parent 有設定左右的 padding, 導致 parent width 和原來的 css calc(100% -10px) 的 100% 會有落差, 所以查了一下 jQuery 語法, 使用 obj.parent().outerWidth() 就能順利取得和原來 css calc(100% -10px) 的 100% 寬度相同了. 如此一來就解決了在 ie8 下寬度使用 calc(100% -10px) 語法的問題. Trackback Address : http:/ diary.tw/tim/trackback/1110. 在 Azure 上 Media Servic. Replacement parts for ba. Replacement parts for ba.

diary.tw diary.tw

My Program ::

http://diary.tw/tim/tag/database

這篇文章: http:/ blogs.microsoft.com/blog/2016/03/07/announcing-sql-server-on-linux/. 提到了, 即將在 linux 上執行 SQL Server 了. 這個微軟的當家資料庫服務器, 終於跨出了微軟的作業系統了, 有用過的應該都說好, 但到了 linux 下又是另一番風貌, 姑且不論效能如何, 微軟能走出這一步, 真的很值得肯定. 當然相信也能大幅拓展這個在微軟作業系統以外的其他平台市場, 讓 SQL Server 的優點發揮出來. Http:/ www.bnext.com.tw/article/view/id/38871. Trackback Address : http:/ diary.tw/tim/trackback/1139. 在新增資料於資料表時, 有個需求, 是不存在的資料就新增, 存在的資料就不動作(或是要處理一些異動), 這樣的需求如何操作呢? 可以使用 INSERT IGNORE INTO [table] . 的語法,. Order by a.name. 其中 a 是查 table 用的, 所以 a.x...

UPGRADE TO PREMIUM TO VIEW 17 MORE

TOTAL LINKS TO THIS WEBSITE

26

SOCIAL ENGAGEMENT



OTHER SITES

blog.urbmet.org blog.urbmet.org

urbmet

On July 18, 2012. After launching our website 3 months ago, we were pleasantly surprised with the level of interest online. We have had 4600 unique active users (each user makes an average of 4 queries). Through our survey we received hundreds of detailed responses with many useful suggestions for improvement which we hope to include in the next iteration. Our website was featured on The Guardian. The New York Times. And Google Maps Mania. Thanks for all the encouragement! On April 19, 2012. Hello and we...

blog.urbsly.com blog.urbsly.com

Urbsly Blog

Last year, due to personal circumstances, I had to put my plans for Urbsly on hold. But I never gave up on the idea of making it much easier for people to grow their own food, and for gardeners to more easily discover the varieties that would grow best for them in their local conditions. In fact, the need for the sort of tools I had in mind. Has only become more urgent. A few weeks ago, I was presented with an opportunity to restart the project using OpenFire. A new crowdfunding platform. Most importantl...

blog.urbylog.info blog.urbylog.info

urby by ub

Monday, July 14, 2014. Deploying A Ruby On Rails Application 4.1 with Capistrano 3. Deploying A Ruby On Rails Application 4.1 with Capistrano 3. Deploying A Ruby On Rails Application 4.1 with Capistrano 3. Setting and Securing Your Server. Server and development machine. Generating Your SSH Keys. Logging into the Server. With a sudoer account. Creating a deploy User and Setting Up SSH Keys. Installing The Web Stack. Installing Ruby and Rails. Installing Passenger and Nginx. Version 2.1.2. Such as mouse b...

blog.urchicago.com blog.urchicago.com

UR Chicago

Monday, February 26 2018. New N64 game coming out 40 Winks. I remember they hype for this back in 1998. Lost games always grab my interest for some reason, so the fact that 40 winks is finally seeing a release thanks to kick starter just butters my biscuit. To get in on the retro action, visit the kickstarter and pledge. Sadly, I don’t think they reached their goal for the Dreamcast version, so N64 carts only! Relive those classic early 3d platforming days! Thursday, January 25 2018. This little ball of ...

blog.urchmanphotos.com blog.urchmanphotos.com

Account Suspended

This Account Has Been Suspended.

blog.urdada.net blog.urdada.net

Dada's Blog

其中關於台灣的節日資訊取自 行政院 人事行政局 104年公務人員行事曆. 1/1(四) 1/4(日) - 元旦4天 (調整放假). 2/18(三) 2/23(一) - 春節6天. 2/27(五) 3/1 (日) - 和平紀念日3天. 4/3(五) 4/6 (一) - 兒童節/清明節4天. 5/1(五) 5/3(日) - 勞動節3天 (勞工適用). 6/19(五) 6/21(日) - 端午節3天. 9/26(六) 9/28(一) - 中秋節3天. 10/9(五) 10/11(日) - 國慶日3天. 春節假期往前多請2天假 (2/16 及 2/17),可以放到11天 2/14(六) 2/23(一)。 或者也可以往後請3天假 (2/24, 2/25, 2/26) 連接到228假期,共可以放到12天。 2014/9/28 更新 - 修正誤標於 6/28 的教師節註記. 2014/10/21 更新 - 行政院公布,1/2 調整放假,2014/12/27(六) 先行補上班. 2015/1/9 - 增加支援 WORD 97-2003 的版本 (doc). 中華電信 MOD 會影響 100M 光世代用戶的網路速度.

blog.urdanizdigital.com blog.urdanizdigital.com

Urdanizdigital Blog, el blog de Urdániz Preimpresión SL

Blog de Urdanizdigital.com, su centro de impresión personal. IV Semana sobre seguridad informática. Que organizan nuestros amigos de la Fundación Dédalo. Este año, entre el 22 y el 26 de marzo, se hablará de proteger nuestra información. seguridad en twitter. menores en la red. seguridad en navegadores web. Todo el programa e inscripciones aquí. Seguridad en la red. A las 15:26. Leer post. V Feria de Tiendas Virtuales. Huesca durante los 22 al 25 de marzo. La V Feria de Tiendas Virtuales. La correcta rep...

blog.urdb.org blog.urdb.org

Subtext - Database Login Failure

But I Can Help You. Subtext is having a bit of trouble connecting to your backend database. It could be a problem with the database login or that the database does not exist. Provides a nice reference for connection string formats. Please check the connection string in your web.config file. It’s located in the. Section with the key “subtextData”. Also make sure that the user specified in the connection string has permissions to your database.

blog.urdoll.com blog.urdoll.com

Blog

Tecnologia sì o tecnologia no? L’impiego buono della tecnologia nelle possibilità di risparmiare. Come guadagnare con le tendenze del web?

blog.urdumaza.com blog.urdumaza.com

Index of /

blog.uread.com blog.uread.com

Default Parallels Plesk Panel Page

Web Server's Default Page. This page is generated by Parallels Plesk Panel. The leading hosting automation software. You see this page because there is no Web site at this address. You can do the following:. Create domains and set up Web hosting using Parallels Plesk Panel. Parallels is a worldwide leader in virtualization and automation software that optimizes computing for consumers, businesses, and Cloud services providers across all major hardware, operating systems, and virtualization platforms.