<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>彩色筆小沛的知識庫 - Programming</title>
    <link>https://forum.jdp.tw/forum-17-1.html</link>
    <description>Latest 20 threads of Programming</description>
    <copyright>Copyright(C) 彩色筆小沛的知識庫</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Tue, 21 Jul 2026 03:49:21 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://forum.jdp.tw/static/image/common/logo_88_31.gif</url>
      <title>彩色筆小沛的知識庫</title>
      <link>https://forum.jdp.tw/</link>
    </image>
    <item>
      <title>Python time、datetime、timestamp、string 互相轉換</title>
      <link>https://forum.jdp.tw/thread-60349-1-1.html</link>
      <description><![CDATA[Reference: http://blog.sina.com.cn/s/blog_b09d460201018o0v.html]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Sat, 30 Jun 2018 06:41:35 +0000</pubDate>
    </item>
    <item>
      <title>Visual Studio theme for JetBrains Editors (PHPStorm/IntelliJ IDEA/PyCharm)</title>
      <link>https://forum.jdp.tw/thread-60348-1-1.html</link>
      <description><![CDATA[Visual Studio 2013  Author: Vasily (字比較粗)
http://color-themes.com/?view=theme&amp;id=563a1a7680b4acf11273ae92

Visual Studio 2013(Edit) Author: Vasily (字比較粗)
http://color-themes.com/?view=theme&amp;id=563a1a9580b4acf11273aee6

Visual Studio 2017 Auth ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Tue, 12 Jun 2018 01:40:42 +0000</pubDate>
    </item>
    <item>
      <title>C# 產生JSON字串的幾種方式整理</title>
      <link>https://forum.jdp.tw/thread-1594-1-1.html</link>
      <description><![CDATA[https://dotblogs.com.tw/shadow/archive/2012/08/16/74099.aspx]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Tue, 22 Mar 2016 00:48:52 +0000</pubDate>
    </item>
    <item>
      <title>Objective C iOS NSXMLParser does not support reentrant parsing</title>
      <link>https://forum.jdp.tw/thread-1590-1-1.html</link>
      <description><![CDATA[iOS8後會碰到 NSXMLParser does not support reentrant parsing 的問題，造成錯誤無法執行。

只要使用 dispatch_queue 另開Thread去執行parse即可解決：
            dispatch_queue_t reentrantAvoidanceQueue = dispatch_queue_create(\&quot;reentrantAvoidanceQueue\&quot;, DI ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Thu, 24 Dec 2015 04:52:49 +0000</pubDate>
    </item>
    <item>
      <title>C# SQL 多行，並將多餘代碼取代</title>
      <link>https://forum.jdp.tw/thread-1559-1-1.html</link>
      <description><![CDATA[常常使用的SQL string都很長，分行看比較清楚也比較好改，以前都是用很多個字串相加，後來看到多行字串可以直接在字串前加上@即可，但是利用這方式有個問題，會多了很多\\r\\n\\t等代碼在其中，所以我們要再另外加一行去把這些代碼取代為空白，這樣就可以順利的使用囉!

Re ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Tue, 11 Nov 2014 00:54:48 +0000</pubDate>
    </item>
    <item>
      <title>C# IE、Chrome、Firefox下載方法判斷 - 解決下載檔名亂碼問題</title>
      <link>https://forum.jdp.tw/thread-1557-1-1.html</link>
      <description><![CDATA[主要是要判斷瀏覽器是否是IE，如果是IE，檔名需要先使用Urlencode編碼，如果是Chrome或Firefox則不需要，用這種方式才可避免下載的檔名變亂碼！

Reference:
IE、Chrome、Firefox下載方法判斷（C#）
http://hi.baidu.com/vebujoqnffbbord/item/fd534d302210eb1ecfb9fe38 ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Mon, 03 Nov 2014 07:12:34 +0000</pubDate>
    </item>
    <item>
      <title>請勿將 VS.NET 專案某些檔案類型的檔案commit至SVN</title>
      <link>https://forum.jdp.tw/thread-1548-1-1.html</link>
      <description><![CDATA[請勿將某些檔案類型的檔案簽入到 Subversion 版本庫
http://blog.miniasp.com/post/2008/02/20/Do-not-commit-these-file-type-into-subversion-repository.aspx]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Wed, 20 Aug 2014 05:27:55 +0000</pubDate>
    </item>
    <item>
      <title>C# MD5 &lt;=&gt; MSSQL MD5</title>
      <link>https://forum.jdp.tw/thread-1546-1-1.html</link>
      <description><![CDATA[[*]以上範例是用ASCII方式進行編碼，如果要修改為Unicode，則要改為System.Text.Encoding.Unicode.GetBytes，相對的MSSQL的加密字串前面也要加N Ex: N\'加密字串\'。
[*]如果要將產生的MD5改為大寫輸出，則要修改 sb.Append(hash[i ].ToString(\&quot;x2\&quot;)) 中的 x2，將之改為  ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Tue, 05 Aug 2014 03:19:18 +0000</pubDate>
    </item>
    <item>
      <title>C# 修改啟始Form</title>
      <link>https://forum.jdp.tw/thread-1366-1-1.html</link>
      <description><![CDATA[打開program.cs，修改Application.Run(new Form1());，將Form1改為要啟始的頁面即可!]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Fri, 07 Dec 2012 05:12:37 +0000</pubDate>
    </item>
    <item>
      <title>VB.NET 網頁自動註冊 - 教學&amp;原始碼</title>
      <link>https://forum.jdp.tw/thread-1336-1-1.html</link>
      <description><![CDATA[http://my-one-piece.blogspot.tw/2012/06/blog-post.html]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Thu, 28 Jun 2012 03:28:04 +0000</pubDate>
    </item>
    <item>
      <title>WM NETCF 就是那道光,我要自己控制我的背光</title>
      <link>https://forum.jdp.tw/thread-1285-1-1.html</link>
      <description><![CDATA[http://www.dotblogs.com.tw/bauann/archive/2009/07/23/9652.aspx]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Wed, 01 Feb 2012 03:03:47 +0000</pubDate>
    </item>
    <item>
      <title>安裝 64 位元環境的 Eclipse , JDK 和 Android SDK @ Windows 7 64-Bit</title>
      <link>https://forum.jdp.tw/thread-1271-1-1.html</link>
      <description><![CDATA[http://changyy.pixnet.net/blog/post/25441757-%5Bwindows%5D-%E5%AE%89%E8%A3%9D-64-%E4%BD%8D%E5%85%83%E7%92%B0%E5%A2%83%E7%9A%84-eclipse-,-jdk-%E5%92%8C-androi]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Sat, 03 Dec 2011 03:34:45 +0000</pubDate>
    </item>
    <item>
      <title>AutoIt 相關資料</title>
      <link>https://forum.jdp.tw/thread-1269-1-1.html</link>
      <description><![CDATA[與 AutoIt 親密接觸 Blog
http://hi.baidu.com/iokey/home
Reborn AutoIt教程
http://www.lixiaolai.com/archive ... ter-related/auto-it
AutoIt v3 FAQ By一點筆記
http://registerboy.pixnet.net/bl ... E%E7%AD%86%E8%A8%98
AutoIt.CN
http://www.autoit.net.cn/

 ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Tue, 22 Nov 2011 02:17:37 +0000</pubDate>
    </item>
    <item>
      <title>AutoHotkey &amp; AutoIt</title>
      <link>https://forum.jdp.tw/thread-1268-1-1.html</link>
      <description><![CDATA[http://www.cnblogs.com/applengine/archive/2008/04/19/1161387.html]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Mon, 21 Nov 2011 17:02:45 +0000</pubDate>
    </item>
    <item>
      <title>AutoHotkey 學習指南</title>
      <link>https://forum.jdp.tw/thread-1267-1-1.html</link>
      <description><![CDATA[http://xbeta.info/autohotkey-guide.htm]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Mon, 21 Nov 2011 17:00:46 +0000</pubDate>
    </item>
    <item>
      <title>WCF 相關資料</title>
      <link>https://forum.jdp.tw/thread-1248-1-1.html</link>
      <description><![CDATA[vs2010第一支Wcf，hello World！
http://yangxinde.pixnet.net/blog ... ello-world%EF%BC%81

The difference between Visual Studio\'s WCF Service Application and WCF Service Library project templates
http://www.itscodingtime.com/its ... ject-templates.aspx ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Fri, 23 Sep 2011 05:52:16 +0000</pubDate>
    </item>
    <item>
      <title>C# Windows Firewall 控制</title>
      <link>https://forum.jdp.tw/thread-1222-1-1.html</link>
      <description><![CDATA[Automating Windows Firewall Settings with C#
http://blogs.msdn.com/b/security ... ettings-with-c.aspx

在Vista中編程控制防火牆設定(C#)
http://www.cnblogs.com/phytan/archive/2009/01/20/814474.html

C#實現修改ip地址(呼叫netsh修改，因此可拿來控制Firewal ...]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Fri, 12 Aug 2011 07:54:34 +0000</pubDate>
    </item>
    <item>
      <title>Visual Studio 2010 負載測試</title>
      <link>https://forum.jdp.tw/thread-1119-1-1.html</link>
      <description><![CDATA[Visual Studio 負載測試筆記 
http://huan-lin.blogspot.com/2010/09/visual-studio-load-testing-notes.html]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Tue, 22 Mar 2011 07:42:04 +0000</pubDate>
    </item>
    <item>
      <title>C# 取得中華民國(台灣)日期格式</title>
      <link>https://forum.jdp.tw/thread-1111-1-1.html</link>
      <description><![CDATA[在.NET 2.0 之後，你可以直接輸出民國的日期格式:輸出結果：民國 98/11/20

Reference: http://felixhuang.pixnet.net/blog/post/23716192]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Thu, 03 Mar 2011 09:02:52 +0000</pubDate>
    </item>
    <item>
      <title>C# 在Class中使用ArrayList</title>
      <link>https://forum.jdp.tw/thread-1110-1-1.html</link>
      <description><![CDATA[Reference: http://social.msdn.microsoft.com/forums/zh-TW/233/thread/cbcaf32f-3d14-46bb-b41d-e3c80d8afb6d]]></description>
      <category>Programming</category>
      <author>JDP</author>
      <pubDate>Thu, 03 Mar 2011 07:09:19 +0000</pubDate>
    </item>
  </channel>
</rss>