• P8

      CDLinux 無線密碼解密圖文教程 文檔

    ? CDLinux無線密碼破解圖文教程 一、minidwep 1、進入CDLinux系統, 雙擊minidwep圖標,窗口出現wireless card selected:wlan0,說明minidwep已經識別網卡。

    hunk.xia 2012-10-29   4215   0
    Linux  
    P3

      云計算背景的數據丟失如何預防 文檔

    ?云計算背景的數據丟失如何預防 根據Ponemon研究所去年4月份的報告顯示,只有50%的企業知道其云計算服務提供商是如何為他們提供數據保護的,而只有略高于三分之一的企業正在進行或已經進行了盡職調查

    benifit 2015-01-13   1518   0
    P8

      IE6 PNG格式 透明圖片處理 文檔

    透明 (三種解決方法)(轉來的哦) FF和IE7已經直接支持透明的png圖了,下面這個主要是解決IE6透明PNG圖片有灰底的 ======================================

    imier_hbd 2012-12-12   577   0
    P14

      Centos 5.5 搭建Redmine項目管理軟件 文檔

      ● 外觀模版化定制(可以使用 Basecamp 、Ruby安裝) ? 下面介紹一在Centos 5.5的安裝,以及和nginx結合的問題。 ? 1. 先安裝一些相關庫 yum groupinstall

    nanjia 2012-12-17   458   0
    CentOS  
    P3

      .netrabbitmq的使用4-訂閱和發布 文檔

    ?.NetRabbitMQ的使用(4) -- 訂閱和發布 ? 消息的訂閱和發布是使用消息隊列的常用場景。在上一篇文章中,雖然有多個消費者,但是一個消息只會有一個消費者來處理。而訂閱和發布則是每個訂閱

    abocide 2014-05-23   441   0
    P1

      Linux操作系統源碼閱讀工具ctags+vim中ctags的安裝 文檔

    ?Linux操作系統源碼閱讀工具ctags+vim中ctags的安裝 Linux操作系統源碼閱讀工具ctags+vim中ctags的安裝 來源: ChinaUnix博客  日期: 2008.02.14

    liming0604 2014-07-30   2564   0
    Linux  
    P6

      windows-2003搭建ftp服務器的步驟 文檔

    ?Windows 2003搭建FTP服務器的步驟 作者:芬達出處:博客2010-09-28 07:04 Windows 2003 Standard Edition、Windows 2003 Enterprise

    zjf_gx 2017-03-02   1859   0
    P8

      Win7硬盤安裝Ubuntu12.04雙系統[圖文] 文檔

    ?Win7硬盤安裝Ubuntu12.04雙系統 一、準備工作(在win7操作完成) 1.下載鏡像文件,http://mirror.bit.edu.cn/ubuntu-releases/ (這是我們學校的鏡像源,也可去官網下

    wolf2012 2012-08-14   9750   0
    Ubuntu  
    P24

      WebKit在windows7+vs2012的編譯和構建 文檔

    ?WebKit在windows7+vs2012的編譯和構建 編譯步驟大致如下 1. 從webkit下載cygwin 2. 下載合適的源代碼版本 3. 下載vs2010-build-env.cmd 4

    moniker 2014-07-08   499   0
    P34

      Red Hat Linux5.5 安裝oracle10g詳解 文檔

    ?Red Hat Linux5.5 安裝oracle10g詳解(圖) 安裝分兩個步驟:1. 配置linux的oracle安裝環境; 2. 安裝oracle10g 環境:系統:windowXP--虛擬機--Red

    mawenwu 2012-07-16   5125   0

    Ubuntu操作系統rbenv、ruby、rails開發環境搭建 代碼段

    # ! /usr/bin/sh # Ubuntu系統安裝ruby/rails必要的庫和編譯環境 sudo apt-get update sudo apt-get install -y build-essential

    em7 2015-01-22   7821   0
    Ruby  

    Python在windows模擬按鍵和鼠標點擊代碼 代碼段

    這段代碼可以模擬在窗口上按按鍵、鼠標左鍵點擊、鼠標右鍵點擊、鼠標雙擊等等 # # _*_ coding:UTF-8 _*_ import win32api import win32con import

    cwf8 2015-03-25   3500   0
    Python  

    Android系統檢測Wifi連接互聯網是否正常的代碼 代碼段

    /** * * 判斷網絡狀態是否可用 * * @return true: 網絡可用 ; false: 網絡不可用 */ public boolean isConnectInternet() { ConnectivityManager conManager = (ConnectivityManager) test.this .getSystemService(Context.CONNECTIVITY

    dw23 2015-03-23   1082   0
    Android  

    LinuxC語言獲取所有網卡信息的代碼 代碼段

    #include <sys/ioctl.h> #include <net/if.h> #include <unistd.h> #include <netinet/in.h> #include <string.h> int main() { struct ifreq ifr; struct ifconf ifc; char buf[2048]; int success = 0; int sock =

    kdloeki 2015-05-21   3728   0
    C/C++  

    C語言自己實現linuxcp文件復制命令 代碼段

    #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h> int main(int argc, char *argv[]) { char *buf = NULL; int fd_

    kdloeki 2015-05-21   4132   0
    C/C++  

    c++使用win32 api windows遍歷文件夾 代碼段

    #include <stdio.h> #include <windows.h> BOOL IsRoot(LPCTSTR lpszPath) { TCHAR szRoot[4]; wsprintf(szRoot, "%c:\\", lpszPath[0]); return (lstrcmp(szRoot, lpszPath) == 0); } void FindInAll(::LPCTSTR lps

    wdey 2015-05-24   1694   0
    C/C++  

    WindowsC++通過hook捕捉鼠標 代碼段

    /* * Make sure project type is windows application */ #define _WIN32_WINNT 0x0500 #include<windows.h> #include<cmath> LRESULT CALLBACK mouseHookProc(int nCode, WPARAM wParam, LPARAM lParam) { // Get e

    mx3y 2015-06-29   1202   0
    C/C++  

    WindowsC++通過Hooks記錄鍵盤敲擊記錄 代碼段

    #define _WIN32_WINNT 0x0500 #include<fstream> #include<windows.h> using namespace std; ofstream out("keys.txt", ios::out); LRESULT CALLBACK keyboardHookProc(int nCode, WPARAM wParam, LPARAM lParam) {

    mx3y 2015-06-29   1293   0
    C/C++  

    mysql 計算 兩點 經緯度 之間的距離 代碼段

    公式如下,單位米: 第一點經緯度:lng1 lat1 第二點經緯度:lng2?lat2 round(6378.138*2*asin(sqrt(pow(sin( (lat1*pi()/180-lat2*pi()/180)/2),2)+cos(lat1*pi()/180)*cos(lat2*pi()/180)* pow(sin( (lng1*pi()/180-lng2*pi()/180)/2),2))

    碼頭工人 2015-12-08   3764   0
    SQL  
    P14

      Linux Red Hat 6.4 Nginx + Mysql + PHP 服務器環境搭建 文檔

    ?Linux Red Hat 6.4 Nginx + Mysql + PHP 服務器環境搭建 系統平臺:RHEL 6.4 Nginx版本:nginx-1.1.8 Mysql版本:5.1.59 PHP版本:php-5

    q417603140 2014-04-08   592   0
    Nginx   PHP  
    1 2 3 4 5 6 7 8 9 10
  • sesese色