Blackie's Failed Notes

Show me. Don't tell me.


  • .NET Core

  • AWS

  • GCP

  • Categories

  • Archives

  • Tags

  • Search
close

Material Design Introduction

Posted on 2014-07-13   |   In UI&Design   |     |  

這系列文章為參考Google本身文件讀者本身對其之瞭解所做的筆記,如果有錯的地方麻煩順手讓我知道一下瞜~感謝

Read more »

Git基本教學與使用AWS EC2( Elastic Compute Cloud ) /Microsoft Azure建立自己的Git Server

Posted on 2014-07-12   |   In CI&CD   |     |  

這篇文章主要是帶大家在雲端服務上建立一個Git Server,並透過一個範例簡單帶大家瞭解一下Git基本指令

Read more »

c# ternary operator, null coalescing operator and var

Posted on 2014-05-05   |   In .NET   |     |  

在寫程式中往往會遇到一些簡化程式碼的簡寫,如foreach在C# 3.0有了LinQ與Lambda表態是後就漸漸的被少用了(在大型的開發架構下看的懂程式碼的架構才是第一步最重要的,除了效能考量外)

Read more »

Docker Introduce and Hands on LAB

Posted on 2014-04-18   |   In Virtualization   |     |  

Build, Ship and Run. Any App, Anywhere! 這就是Docker寫在官網上面對自己最簡單的描述。

Read more »

How to Control YouTube AutoPlay and Play after another video end

Posted on 2014-04-14   |   In JavaScript   |     |  

今天被一個朋友問起如何控制embed的YouTube影片,讓他可以自動撥放也可以在播放完後讓另外一個embed的影片也播放。

Read more »

JavaScript reserved word(保留字)

Posted on 2014-04-14   |   In JavaScript   |     |  

這禮拜在看以前的code的時候看到前人使用保留字的來宣告變數名稱的js code,可能當時的時空背景允許這樣的事情發生,但想到以後如果部門還有小朋友的話要告訴他們的正確的觀念所以寫了這篇來Memo一下。

Read more »

.NET MVC Multiple types were found that match the controller named 'XXX'

Posted on 2014-02-18   |   In .NET   |     |  

解決重複註冊多個的Routing問題

Read more »

Set Default Page to Hybrid Web Application(MVC and Web Form)

Posted on 2014-02-17   |   In .NET   |     |  

關於MVC架構下的Default Page的機制

Read more »

Callback function and how to override jQuery method

Posted on 2014-02-17   |   In JavaScript   |     |  

關於Callback這是一個在javascript很重要的機制

Read more »

Work with JSHint using Sublime Text 2

Posted on 2014-01-18   |   In JavaScript   |     |  

寫 JavaScript的時候常常會因為他多元的用法(結構較為鬆散或是說它組合較多元)而感到困惑,或因為不好的習慣導致自己浪費了大量效能做出一個很簡單的東西,這邊要如何驗證自己寫的Javascript有沒有水準符不符合基本規範呢?此時除了定義一些開發上面的規範外,我們還需要一些工具來幫我們做檢查,JSLint就是這行的老牌子工具。

Read more »

Edit Hosts file in Mac OS X with Terminal

Posted on 2014-01-18   |   In Linux   |     |  

如何在OSX的環境加入自行建立的domain

Read more »

Javascript call method(呼叫函式)

Posted on 2014-01-14   |   In JavaScript   |     |  

因為javascript是一個有無限可能的程式(我指的是寫法XD),所以這篇是幫js新手了解javascript如何呼叫/寫出函式

Read more »

Register customize .NET MVC Web/WebAPI Routing URL from Reflection

Posted on 2014-01-12   |   In .NET   |     |  

分享一下如何動態註冊客製的Routing

Read more »

Using Git bash with Proxy setting

Posted on 2014-01-01   |   In CI&CD   |     |  

Git一般在使用上都是直接安裝就可以Clone, Pull或Push你想要的專案了,但如果你所在的開發環境需要透過Proxy才可以連外的話,你也必須幫Git設定一些參數才可以方便他透過Proxy來幫你取得外部設定

Read more »

NTVS - Node.js Tools For Visual Studio Bootcamp

Posted on 2013-12-27   |   In Development&Coding   |     |  

NTVS是微軟上個月底新發行的一個VS tool,幫助開發者使用地表最強IDE工具開發NodeJS!除了支援可以一般的程式撰寫它還支援Intellisense, Profiling, npm,另外他在Debugging方面還支援 locally and remotely (Windows/MacOS/Linux),最棒的是他整合了Azure Web Sites 與 Cloud Service.

Read more »

實作javascript Carousel Animation

Posted on 2013-12-24   |   In JavaScript   |     |  

今天幫一個同事做一個前端效果所以自製了簡單的Carousel Animation(10分鐘的code沒有再經過大腦處理過,長得很醜請見諒)

Read more »

No more TODO - Customize your token keywords for Task List with Visual Studio

Posted on 2013-12-19   |   In Development&Coding   |     |  

在開發程式的時候想必我們都很習慣使用直接下註解TODO的方式來記錄我們以後要完成的function或是提醒自己有哪些事情還沒做,而使用Visual Studio 開發如果是自動產生的程式碼時不時都還會幫你加上這段

Read more »

App_Code is Evil in Web Application Project

Posted on 2013-12-15   |   In .NET   |     |  

最近在新的專案上使用了WebAPI開發一些服務,結果因為以前的壞習慣讓我直接下意識地開了App_Code的資料夾並在資料夾內放了一些會常用到的Utilc或Common類型的class或static method。

機車的是當我build過後真正傳入參數作處理要取得服務資料時出現了一些莫名的RunTime Error…

Read more »

Using Html.Raw() method to show content include Html tags in .NET MVC(under Razor ViewEngine)

Posted on 2013-11-13   |   In .NET   |     |  

在.NET MVC中如果使用Razor作為ViewEngine 我們最常用來輸出一個model的參數的用法應該就是@了,這邊來介紹如何輸出包含HTML Tag的內容

Read more »

Use NonAction Attribute to Hide Controller in .NET MVC Routing Table

Posted on 2013-11-04   |   In .NET   |     |  

如果我們想要讓某一個Controller中的Action不要在路由表內被註冊的時候就可以透過NonAction的方式來實現

Read more »
1…91011
Blackie Tsai

Blackie Tsai

Ever tried. Ever failed. No matter. Try Again. Fail again. Fail better.

0 visitors
219 posts
19 categories
161 tags
RSS
microsoft-mvp
Management/Agile Certificationspmp acp csm cspo csd
Technical Certificationsmcsd-app-2017 mcsa-web
Recommendation
  • JimmyWu - 不受限的技術狂人
  • JohnWu - 簡單不想寫,太難不會寫
  • Duran - Matsurigoto
  • Larry - Level up
  • Ouch - Developer ≈ Designer
  • Max W - Retry
  • Bruno - 饅頭小舖
  • Jed - 大濕大師
© 2013 - 2021 Blackie Tsai
Powered by Hexo
Theme - NexT.Mist