Skip to content

Phanix's Blog

Menu
  • About Me / 關於我

Category: 程式

Execute Batch file in Silent mode (no cmd window) / 以無 dos 命令列視窗執行 .bat

No Comments
| 學習工作, 程式

有點繁瑣的方式,全部需要三個檔案來完成。

Read More »

Using XPath to select nodes with namespace in C# / 在C#中用XPath選取具有namespace之節點

No Comments
| 學習工作, 工作, 研究, 程式

處理 XML 文件資料時,利用 XPath 來選取文件中節點是蠻常見的方式,可是當這個節點是具有 namespace 時,該怎麼辦呢?

Read More »

[Note] Import Data in SQL Server 2005 (匯入資料)

No Comments
| 學習工作, 工作, 研究, 程式, 軟體, 電腦網路

Remeber to check the item “Integration Services” (SSIS) in the install process, or you will fail and get a error message like “product level is insufficient for components” while importing data from txt, excel, etc. files into a SQL server 2005 database. Related: porduct level is insufficient for components

Read More »

還是改用Regular expression好了

No Comments
| 學習工作, 程式

既然都有誤斬忠良的時候… 那 extract html text content 還是用 regular expression 好了,然後再特殊處理一下 <script> 和 <style>… int i, j; i = tb1.Text.ToLower().IndexOf("<script"); while (i >= 0) {     j = tb1.Text.ToLower().IndexOf("</script>", i);     tb1.Text = tb1.Text.Substring(0, i) + tb1.Text.Substring(j + 9);     i = tb1.Text.ToLower().IndexOf("<script"); } i = tb1.Text.ToLower().IndexOf("<style"); while (i >= 0) {     j = tb1.Text.ToLower().IndexOf("</style>", i);     tb1.Text = tb1.Text.Substring(0, […]

Read More »

[Memo] 整理一下最近寫程式用到的東西

No Comments
| 學習工作, 研究, 程式

免得以後要找很麻煩。都是 C# 的程式。 Threading 中作 output 到 textbox 中 delegate void SetTextCallback(TextBox tb, string text); private void SetText(TextBox tb, string text) {     if (tb.InvokeRequired)     {         SetTextCallback d = new SetTextCallback(SetText);         this.Invoke(d, new object[] { tb, text });     }     else     {         tb.Text = text;     } } Extract text in <body> tag strpage = ""; // Store […]

Read More »

Disabling Close button on Forms

No Comments
| 學習工作, 程式

//Used in .net private const int CP_NOCLOSE_BUTTON = 0x200; protected override CreateParams CreateParams {         get         {                 CreateParams myCp = base.CreateParams;                 myCp.ClassStyle = myCp.ClassStyle | CP_NOCLOSE_BUTTON;                 return myCp;         } }

Read More »

WordPress 與 MySQL 的 Encoding 大混戰…

No Comments
| 學習工作, 程式, 網路應用, 電腦網路

週五晚上終於順利解決這個煩人的 encoding 問題

Read More »

M$ SQL Server BCP utility

No Comments
| 唸書, 學習工作, 工作, 程式

BCP為M$ SQL Server的一個公用程式(utility),主要的功能為將大量儲存在檔案中的資料拷貝進入資料庫表格中,或者將資料庫表格中的資料匯出到檔案中,而這些動作都可以透過command line來完成,所以也可以很方便地透過batch file的編寫來當成scheduled job來使用。

Read More »

Lucene.NET

No Comments
| 唸書, 學習工作, 程式

之前整理的資料…

Read More »

C# 進行對 Windows Form 控制項的安全執行緒呼叫

No Comments
| 學習工作, 工作, 程式

Windows Form 控制項的存取並非原本就採用安全執行緒的方式。當有兩個或多個執行緒管理控制項的狀態,就有可能強制控制項進入不一致的狀態。其他與執行緒有關的錯誤也有可能如此,包括競爭情形和死結。

Read More »

Posts pagination

Previous 1 … 11 12 13 Next

Recent Posts

  • NextJS connect to backend Go api for buffering response
  • NextJs 的 404 handling
  • 強制 nextjs app router 不使用 Static Site Generation (SSG)
  • 將長時間英文 podcast 轉為中文 SRT 字幕檔
  • Letsencrypt 設定讓 apache2 通過 ssl labs 安全測試 A+

Recent Comments

  • Champagne Tasting - 2023/09 - Phanix's Blog on 龍吟 wine dinner
  • 天灰 on 撲克牌遊戲 — 德州撲克 (Texas Hold’em / Texas Poker)
  • 用FFmpeg取代 AWS Media Converter - Phanix's Blog on AWS S3+Media Converter+CloudFront 做 video file streaming CDN服務
  • Mount GCP storage as filesystem, and access with php - Phanix's Blog on php+apache 執行 sudo 命令出現 sudo: no tty present and no askpass program specified
  • Chateau de la Roche-aux-Moines (Nicolas Joly) Tasting - Phanix's Blog on Nicolas Joly 與他的生物動力法哲學

Archives

Tags

.net (29) 2008 (66) 2009 (91) Bordeaux (46) Bourgogne (37) c# (33) Cabernet Sauvignon (41) California (85) Chardonnay (46) dessert wine (26) food (53) France (58) France 法國 (68) French (28) French wine (25) japanese food (32) murmuring (25) photo-taking (46) photographing (48) php (41) Pinot Noir (52) programming (38) red wine (189) Santa Cruz (33) system administration (72) Taiwan (40) traveling (74) USA (125) white wine (120) wine (176) wine tasting (225) 加州 (64) 勃根地 (40) 台灣 (29) 品酒 (223) 攝影 (93) 旅遊 (60) 法國 (33) 波爾多 (38) 甜酒 (28) 白酒 (116) 系統管理 (51) 紅酒 (186) 美國 (100) 義大利 (36)

Categories

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Phanix's Blog 2025 . Powered by WordPress