Sponsored Links

自從 Microsoft 宣布要停止 MSN 的服務後,只好乖乖的使用 Skype 了,但說真的,一開始使用 Skype 很不習慣,真的

覺很難用,這陣子都是適應中...現在用久了也慢慢習慣了,而在這過程發現了一個很不錯的小軟體 pamela for Skype,

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

應該很多人跟我一樣遇過相同問題,當 Windows 7 開機後,都已經過一段時間了,但硬碟狀態卻仍一直讀取的情況,檢查後,即便 Windows 7 沒有在進行更新動作,也未作任何其他行為,但那種 "喀喀"聲卻讓人聽了有點煩...而且也會造成要執行其他應用程式時;拖慢速度,為了降低硬碟出現一直讀取狀態中,可以作以下的設定來降低持續讀取的問題,經測試,的確有改善很多。

以下列出幾項要進行調整設定:

文章標籤

mitblog 發表在 痞客邦 留言(1) 人氣()

AndroidStudio for Visual Studio

Download:http://androidstudio.tektips.in/android-studio-download-now.aspx

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

範例碼(一):C/C++ 語言 99 乘法表。

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>

int main(int argc, char *argv[])
{
        int x,y;
        for(x=1; x < 10 ; ++x)
        {
                for(y=1; y <= x ; y++)
                {
                        if(y == 1)
                        {
                        printf("%d * %d = %d",y,x,(x*y));
                        }
                        else
                        {
                        printf("\t%d * %d = %d",y,x,(x*y));
                        }
                }
                printf("\n");
        }
        
        return 0;
}

執行結果:

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

破解 Windows Syskey 加密,在 Windows 2000/XP/7 系統安裝目錄中有一個 "repair" 資料夾,完整路徑:c:\windows\repair,此資料夾儲存的就是系統安裝完後,首次啟動時所建立的註冊表備份檔案,如下圖。

201304072243 

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

今天因系統有問題,所以將 Windows 7 重灌,但重灌後,卻不小心把 Administrator 權限與群組刪除,並把 MyUser 帳

號權限改為 HomeUsers,登出在登入後,卻發現無法做本機的一些管理與執行需要 Administrator 權限的程式,原本登

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

【軟體名稱】:UltraEdit 11

【軟體分類】:開發軟體

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

【軟體名稱】:UltraEdit 18

【軟體分類】:開發軟體

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

【軟體名稱】:UltraEdit 19

【軟體分類】:開發軟體

文章標籤

mitblog 發表在 痞客邦 留言(2) 人氣()

CodeIgniter 預設控制器(Controllers)為 Welcome,如下圖在 URL 輸入 http://Domain/ProjectName/。

201304041306    

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

【檔案名稱】:WirelessKeyView
【檔案大小】:53.3 KB

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

 Avast 8 防毒軟體

文章標籤

mitblog 發表在 痞客邦 留言(4) 人氣()

Microsoft Visual Studio 2010 預設是沒有 ASP.NET MVC 4,但可自行安裝。

可至微軟官網下載:http://www.microsoft.com/zh-tw/download/details.aspx?id=30683

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

Code snippets(一):tolower(參數),將小寫英文字母轉成大寫英文字母。

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(int argc, char *argv[])
{
        //toupper(參數)
        //參數:小寫英文字母轉成大寫英文字母。
        char str[3];
        memset(str,0x00,sizeof(str));
        str[0]=toupper('g');
        str[1]=toupper('e');
        printf("轉換後字元=%s\n",str);
        return 0;
}
//Answer:轉換後字元=GE

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

code snippets(一):tolower(參數),將大寫英文字母轉成小寫英文字母。

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(int argc, char *argv[])
{
        //tolower(參數)
        //參數:大寫英文字母轉成小寫英文字母。
        char str[3];
        memset(str,0x00,sizeof(str));
        str[0]=tolower('G');
        str[1]=tolower('E');
        printf("轉換後字元=%s\n",str);
        }
        return 0;
}
//Answer:轉換後字元=ge

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()