??xml version="1.0" encoding="utf-8" standalone="yes"?>日韩视频不卡中文,中国av一区,国产精品swaghttp://www.shnenglu.com/niewenlong/zh-cnSat, 23 Aug 2025 22:24:51 GMTSat, 23 Aug 2025 22:24:51 GMT60Linux下删除大量文?/title><link>http://www.shnenglu.com/niewenlong/archive/2021/07/11/217736.html</link><dc:creator>聂文?/dc:creator><author>聂文?/author><pubDate>Sun, 11 Jul 2021 07:07:00 GMT</pubDate><guid>http://www.shnenglu.com/niewenlong/archive/2021/07/11/217736.html</guid><wfw:comment>http://www.shnenglu.com/niewenlong/comments/217736.html</wfw:comment><comments>http://www.shnenglu.com/niewenlong/archive/2021/07/11/217736.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/niewenlong/comments/commentRss/217736.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/niewenlong/services/trackbacks/217736.html</trackback:ping><description><![CDATA[     摘要: Linux下删除大量文件主要参考了http://www.slashroot.in/which-is-the-fastest-method-to-delete-files-in-linux首先建立50万个文g? test for i in $(seq 1 500000);do echo text >>$i.txt;done 1.   rm?..  <a href='http://www.shnenglu.com/niewenlong/archive/2021/07/11/217736.html'>阅读全文</a><img src ="http://www.shnenglu.com/niewenlong/aggbug/217736.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/niewenlong/" target="_blank">聂文?/a> 2021-07-11 15:07 <a href="http://www.shnenglu.com/niewenlong/archive/2021/07/11/217736.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>止 .mysql_historyhttp://www.shnenglu.com/niewenlong/archive/2018/03/25/215570.html聂文?/dc:creator>聂文?/author>Sun, 25 Mar 2018 10:18:00 GMThttp://www.shnenglu.com/niewenlong/archive/2018/03/25/215570.htmlhttp://www.shnenglu.com/niewenlong/comments/215570.htmlhttp://www.shnenglu.com/niewenlong/archive/2018/03/25/215570.html#Feedback1http://www.shnenglu.com/niewenlong/comments/commentRss/215570.htmlhttp://www.shnenglu.com/niewenlong/services/trackbacks/215570.html
  • $find / -name .mysql_history    
  • 或者进入主目录Q?nbsp; 
  • $cd $HOME  
  • $find . -name .mysql_history  
    1. $cat /dev/null > ~/.mysql_history  



    通常情况?Q数据库理员都是很秘的,因ؓ他们l常几个语句搞定了数据库查询缓慢的问题Q让Z非常佩服Q但是熟悉mysql的朋友都知道mysql 在当前用L家目录下会有?.mysql_history 文gQ其中保存着q去执行q的mysql命oQ通过q个命o你就能知道他刚才执行了什么语句。这也是我熟悉mysql的学习的一个有力工兗?/span>
    但是当你若是一个数据库理员时Q你p考虑下这个问题了。因Z执行的某些语句是不希望别人看到的。例如定期修Ҏ据库用户root的密码?q样别h只要有此文g的读取权限,那么数据库就没有安全可言了?怎么?可以通过讄 关闭q个?/span>
    Ҏ如下 
    首先 ?etc/profile 中添?/span>
    export MYSQL_HISTFILE=/dev/null
    保存退出后  
    在terminal 中执?/span> ln -s /dev/null   ~/.mysql_history
    现有的文g删除
    rm ~/.mysql_history  
    ls -al  ~/lrwxrwxrwx.  1 root root       9 1?  3 23:14 .mysql_history -> /dev/null
    xQ以?  你在mysql中执行的命o׃会被记录了?/span>




    ]]>
    Debian pȝ退出时清除 相关记录http://www.shnenglu.com/niewenlong/archive/2018/03/25/215569.html聂文?/dc:creator>聂文?/author>Sun, 25 Mar 2018 10:10:00 GMThttp://www.shnenglu.com/niewenlong/archive/2018/03/25/215569.htmlhttp://www.shnenglu.com/niewenlong/comments/215569.htmlhttp://www.shnenglu.com/niewenlong/archive/2018/03/25/215569.html#Feedback0http://www.shnenglu.com/niewenlong/comments/commentRss/215569.htmlhttp://www.shnenglu.com/niewenlong/services/trackbacks/215569.htmlLast login: Sun Mar 25 17:44:20 on ttys003

    MACdeiMac-2:~ MAC$ sudo -s

    Password:

    bash-3.2# ssh -p 3389 xxx.xxx.xxx.xxx

    Linux localhost 3.2.0-4-amd64 #1 SMP Debian 3.2.88-1 x86_64


    The programs included with the Debian GNU/Linux system are free software;

    the exact distribution terms for each program are described in the

    individual files in /usr/share/doc/*/copyright.


    Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent

    permitted by applicable law.

    Last login: Sun Mar 25 16:41:05 2018 from xxx.xxx.xxx.xxx

    root@localhost:~# cat /etc/skel/.bash_logout 

    # ~/.bash_logout: executed by bash(1) when login shell exits.


    # when leaving the console clear the screen to increase privacy


    if [ "$SHLVL" = 1 ]; then

        [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q

    fi

    # add by me remove history files when logout.

    rm -f $HOME/.bash_history

    root@localhost:~# cat /etc/skel/.bash

    .bash_logout .bashrc       

    root@localhost:~# cat /etc/skel/.bashrc 

    # ~/.bashrc: executed by bash(1) for non-login shells.

    # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)

    # for examples


    # If not running interactively, don't do anything

    case $- in

        *i*) ;;

          *) return;;

    esac


    # don't put duplicate lines or lines starting with space in the history.

    # See bash(1) for more options

    HISTCONTROL=ignoreboth


    # append to the history file, don't overwrite it

    shopt -s histappend


    # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)

    HISTSIZE=1000

    HISTFILESIZE=2000


    # check the window size after each command and, if necessary,

    # update the values of LINES and COLUMNS.

    shopt -s checkwinsize


    # If set, the pattern "**" used in a pathname expansion context will

    # match all files and zero or more directories and subdirectories.

    #shopt -s globstar


    # make less more friendly for non-text input files, see lesspipe(1)

    #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"


    # set variable identifying the chroot you work in (used in the prompt below)

    if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then

        debian_chroot=$(cat /etc/debian_chroot)

    fi


    # set a fancy prompt (non-color, unless we know we "want" color)

    case "$TERM" in

        xterm-color) color_prompt=yes;;

    esac


    # uncomment for a colored prompt, if the terminal has the capability; turned

    # off by default to not distract the user: the focus in a terminal window

    # should be on the output of commands, not on the prompt

    #force_color_prompt=yes


    if [ -n "$force_color_prompt" ]; then

        if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then

    # We have color support; assume it's compliant with Ecma-48

    # (ISO/IEC-6429). (Lack of such support is extremely rare, and such

    # a case would tend to support setf rather than setaf.)

    color_prompt=yes

        else

    color_prompt=

        fi

    fi


    if [ "$color_prompt" = yes ]; then

        PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

    else

        PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '

    fi

    unset color_prompt force_color_prompt


    # If this is an xterm set the title to user@host:dir

    case "$TERM" in

    xterm*|rxvt*)

        PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"

        ;;

    *)

        ;;

    esac


    # enable color support of ls and also add handy aliases

    if [ -x /usr/bin/dircolors ]; then

        test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"

        alias ls='ls --color=auto'

        #alias dir='dir --color=auto'

        #alias vdir='vdir --color=auto'


        #alias grep='grep --color=auto'

        #alias fgrep='fgrep --color=auto'

        #alias egrep='egrep --color=auto'

    fi


    # some more ls aliases

    #alias ll='ls -l'

    #alias la='ls -A'

    #alias l='ls -CF'


    # Alias definitions.

    # You may want to put all your additions into a separate file like

    # ~/.bash_aliases, instead of adding them here directly.

    # See /usr/share/doc/bash-doc/examples in the bash-doc package.


    if [ -f ~/.bash_aliases ]; then

        . ~/.bash_aliases

    fi


    # enable programmable completion features (you don't need to enable

    # this, if it's already enabled in /etc/bash.bashrc and /etc/profile

    # sources /etc/bash.bashrc).

    if ! shopt -oq posix; then

     if [ -f /usr/share/bash-completion/bash_completion ]; then

        . /usr/share/bash-completion/bash_completion

     elif [ -f /etc/bash_completion ]; then

        . /etc/bash_completion

     fi

    fi

    root@localhost:~# vi /etc/skel/.bashrc 

    root@localhost:~# 



    ]]>
    OpenSSL ~译参?/title><link>http://www.shnenglu.com/niewenlong/archive/2018/02/28/215537.html</link><dc:creator>聂文?/dc:creator><author>聂文?/author><pubDate>Tue, 27 Feb 2018 17:40:00 GMT</pubDate><guid>http://www.shnenglu.com/niewenlong/archive/2018/02/28/215537.html</guid><wfw:comment>http://www.shnenglu.com/niewenlong/comments/215537.html</wfw:comment><comments>http://www.shnenglu.com/niewenlong/archive/2018/02/28/215537.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/niewenlong/comments/commentRss/215537.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/niewenlong/services/trackbacks/215537.html</trackback:ping><description><![CDATA[<div>openssl  别h~译的下?Qhttps://www.npcglib.org/~stathis/blog/precompiled-openssl/<br /><br /><div>http://blog.csdn.net/liang19890820/article/details/51658574<br /><br />http://blog.csdn.net/ljttianqin/article/details/72978612</div><div clearfix"="" style="margin: 0px; box-sizing: border-box; outline: 0px; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><h2>OpenSSL~译(Win7,64?VS2010)</h2></div><div class="phfdj99" id="content" mod-cs-content="" text-content="" clearfix"="" style="margin: 7px 0px 10px; box-sizing: border-box; outline: 0px; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; background-color: #ffffff; overflow: hidden; line-height: 1.5;"><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">pȝ环境</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">操作pȝQWindows 7专业版(SP1Q?/p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">pȝcdQ?4位操作系l?/p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">~译环境</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">Microsoft Visual Studio 2010</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">下蝲</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">OpenSSL</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">下蝲地址Q?a target="_blank" style="color: #1e375a; outline: 0px; margin: 0px; padding: 0px; box-sizing: border-box; text-decoration-line: none;">http://www.openssl.org/source</a></p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">ActivePerl</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">下蝲地址Q?a target="_blank" style="color: #1e375a; outline: 0px; margin: 0px; padding: 0px; box-sizing: border-box; text-decoration-line: none;">http://downloads.activestate.com/ActivePerl</a></p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">安装Q没啥好说的</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">~译步骤</p><ol style="margin: 0px 0px 0px 35px; padding: 0px; box-sizing: border-box; list-style: none; outline: 0px; font-family: tahoma, helvetica, arial;"><li style="margin: 0px; padding: 0px; box-sizing: border-box; list-style: decimal; outline: 0px;"><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">启动Microsoft Visual Studio 2010 => Microsoft Visual Studio 2010 =>Visual Studio x64 Cross Tools Command Prompt (2010)</p></li><li style="margin: 0px; padding: 0px; box-sizing: border-box; list-style: decimal; outline: 0px;"><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">cd 到OpenSSL的下载\径例如(cd D:\adobe_study\openssl-1.0.1e)</p></li><li style="margin: 0px; padding: 0px; box-sizing: border-box; list-style: decimal; outline: 0px;"><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">按照OpenSSL下蝲目录中的"INSTALL.W64"文gQ用文本工h开Q例如UEQ里提示的命?如下)逐步q行操作?/p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">> perl Configure VC-WIN64A</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">> ms\do_win64a</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">> nmake -f ms\ntdll.mak</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">> cd out32dll</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; color: #4f4f4f; line-height: 26px; min-height: 26px;">> ..\ms\test</p></li></ol><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">补充</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">~译Debug版本(xxxMDd.lib)</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    a.修改ms\do_win64a </p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">        perl util\mk1mf.pl VC-WIN64A >ms\nt.mak => perl util\mk1mf.pl debug VC-WIN64A >ms\nt.mak</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">        perl util\mk1mf.pl dll VC-WIN64A >ms\ntdll.mak => perl util\mk1mf.pl debug dll VC-WIN64A >ms\ntdll.mak</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    b.修改ms\ntdll.mak</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">        SSL=ssleay32 => SSL=ssleay32MDd</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">        CRYPTO=libeay32 => CRYPTO=libeay32MDd</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    c.修改ms\libeay32.def  —— LIBRARY LIBEAY32 => LIBRARY LIBEAY32MDd</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    d.修改ms\ssleay32.def  —— LIBRARY SSLEAY32 => LIBRARY SSLEAY32MDd</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    e.q行 > nmake -f ms\ntdll.mak</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">2.  ~译Debug版本(xxxMTd.lib)<br style="box-sizing: border-box; outline: 0px;" /></p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    a.修改ms\nt.mak</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">        SSL=ssleay32 => SSL=ssleay32MTd</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">        CRYPTO=libeay32 => CRYPTO=libeay32MTd</p><p style="margin: 0px; padding: 0px; box-sizing: border-box; outline: 0px; font-size: 16px; line-height: 26px; min-height: 26px; text-align: justify; font-family: tahoma, helvetica, arial;">    b.q行 > nmake -f ms\nt.mak<br /><br /><br /></p></div><div></div></div><img src ="http://www.shnenglu.com/niewenlong/aggbug/215537.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/niewenlong/" target="_blank">聂文?/a> 2018-02-28 01:40 <a href="http://www.shnenglu.com/niewenlong/archive/2018/02/28/215537.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>C语言中字W串如何转换Zq制、八q制、十q制、十六进?/title><link>http://www.shnenglu.com/niewenlong/archive/2018/01/30/215489.html</link><dc:creator>聂文?/dc:creator><author>聂文?/author><pubDate>Mon, 29 Jan 2018 20:55:00 GMT</pubDate><guid>http://www.shnenglu.com/niewenlong/archive/2018/01/30/215489.html</guid><wfw:comment>http://www.shnenglu.com/niewenlong/comments/215489.html</wfw:comment><comments>http://www.shnenglu.com/niewenlong/archive/2018/01/30/215489.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/niewenlong/comments/commentRss/215489.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/niewenlong/services/trackbacks/215489.html</trackback:ping><description><![CDATA[<div style="background-color:#eeeeee;font-size:13px;border:1px solid #CCCCCC;padding-right: 5px;padding-bottom: 4px;padding-left: 4px;padding-top: 4px;width: 98%;word-break:break-all"><!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->#include <stdio.h><br />#include <stdlib.h><br />#include <<span style="color: #0000FF; ">string</span>.h><br />#include <locale.h><br /><span style="color: #0000FF; ">int</span> main() {<br />    <span style="color: #0000FF; ">int</span> i,v;<br />    <span style="color: #0000FF; ">char</span> bs[33];<br />    <span style="color: #0000FF; ">char</span> b[33];<br />    <span style="color: #0000FF; ">char</span> hs[9];<br />    <span style="color: #0000FF; ">char</span> h[9];<br />    <span style="color: #0000FF; ">char</span> s[4];<br />    <span style="color: #0000FF; ">char</span> *e;<br /> <br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 十进制整数{二进制串Q?/span><span style="color: #008000; "><br /></span>    i=1024;<br />    ltoa(i,b,2);<br />    sprintf(bs,"%032s",b);<br />    printf("i=%d,bs=%s\n",i,bs);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 十进制整数{十六q制Ԍ</span><span style="color: #008000; "><br /></span>    i=1024;<br />    ltoa(i,h,16);<br />    sprintf(hs,"%08s",h);<br />    printf("i=%d,hs=%s\n",i,hs);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 十六q制字符串{成十q制?/span><span style="color: #008000; "><br /></span>    strcpy(hs,"00000400");<br />    sscanf(hs,"%x",&i);<br />    printf("hs=%s,i=%d\n",hs,i);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 二进制字W串转化为十六进制字W串Q?/span><span style="color: #008000; "><br /></span>    strcpy(bs,"00000000000000000000010000000000");<br />    i=strtol(bs,&e,2);<br />    ltoa(i,h,16);<br />    sprintf(hs,"%08s",h);<br />    printf("bs=%s,hs=%s\n",bs,hs);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 二进制字W串转化为十q制敎ͼ</span><span style="color: #008000; "><br /></span>    strcpy(bs,"00000000000000000000010000000000");<br />    i=strtol(bs,&e,2);<br />    printf("bs=%s,i=%d\n",bs,i);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 十六q制字符串{成二q制?/span><span style="color: #008000; "><br /></span>    strcpy(hs,"00000400");<br />    sscanf(hs,"%x",&i);<br />    ltoa(i,b,2);<br />    sprintf(bs,"%032s",b);<br />    printf("hs=%s,bs=%s\n",hs,bs);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> ASC\GBK字符串{十六q制?/span><span style="color: #008000; "><br /></span>    strcpy(s,"a?);<br />    i=0;<br />    <span style="color: #0000FF; ">while</span> (1) {<br />        <span style="color: #0000FF; ">if</span> (0==s[i]) <span style="color: #0000FF; ">break</span>;<br />        sprintf(hs+i*2,"%02X",(unsigned <span style="color: #0000FF; ">char</span>)s[i]);<br />        i++;<br />    }<br />    setlocale(LC_ALL,"chs");<br />    printf("s=%s,hs=%s\n",s,hs);<br /><span style="color: #008000; ">//</span><span style="color: #008000; "> 十六q制字符串{成汉字(GBKQ及字符(ASC)</span><span style="color: #008000; "><br /></span>    strcpy(hs,"61BABA");<br />    i=0;<br />    <span style="color: #0000FF; ">while</span> (1) {<br />        <span style="color: #0000FF; ">if</span> (1!=sscanf(hs+i*2,"%2x",&v)) <span style="color: #0000FF; ">break</span>;<br />        s[i]=(<span style="color: #0000FF; ">char</span>)v;<br />        i++;<br />    }<br />    s[i]=0;<br />    printf("hs=%s,s=%s\n",hs,s);<br /> <br />    <span style="color: #0000FF; ">return</span> 0;<br /> <br />}<br /><span style="color: #008000; ">//</span><span style="color: #008000; ">i=1024,bs=00000000000000000000010000000000<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">i=1024,hs=00000400<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">hs=00000400,i=1024<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">bs=00000000000000000000010000000000,hs=00000400<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">bs=00000000000000000000010000000000,i=1024<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">hs=00000400,bs=00000000000000000000010000000000<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">s=a?hs=61BABA<br /></span><span style="color: #008000; ">//</span><span style="color: #008000; ">hs=61BABA,s=a?/span></div><img src ="http://www.shnenglu.com/niewenlong/aggbug/215489.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/niewenlong/" target="_blank">聂文?/a> 2018-01-30 04:55 <a href="http://www.shnenglu.com/niewenlong/archive/2018/01/30/215489.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Poco介绍及编?/title><link>http://www.shnenglu.com/niewenlong/archive/2018/01/16/215475.html</link><dc:creator>聂文?/dc:creator><author>聂文?/author><pubDate>Tue, 16 Jan 2018 15:05:00 GMT</pubDate><guid>http://www.shnenglu.com/niewenlong/archive/2018/01/16/215475.html</guid><wfw:comment>http://www.shnenglu.com/niewenlong/comments/215475.html</wfw:comment><comments>http://www.shnenglu.com/niewenlong/archive/2018/01/16/215475.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/niewenlong/comments/commentRss/215475.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/niewenlong/services/trackbacks/215475.html</trackback:ping><description><![CDATA[<h1><span style="box-sizing: border-box; margin: 0px; padding: 0px;">Poco C++库是Q?/span></h1><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">一pdC++cdQ类似JavacdQ?Net框架QApple的Cocoa;</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">侧重于互联网时代的网l应用程?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">使用高效的,C的标准ANSI/ISO C++QƈZSTL</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">高可Ud性,q可在多个^C可用</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">开源,q用Boost Software License发布</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">不管是否商用Q都完全免费</li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t1" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">Poco库概?/span></h1><p style="box-sizing: border-box; margin-top: 10px; margin-bottom: 10px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal;"></p></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t2" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">Ҏ:</span></h1></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">DynamicAny与Anyc?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Cache框架</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">ZOpenSSL的密码系l?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">日期Q时间类?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">事g和通知框架</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">FTP客户?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">跨^台的文gpȝcd</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">HTML表单cd</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">HTTP客户端和服务端(支持SSLQ,C++ 服务器页面编译器</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">日志框架</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">多线E框ӞU程池,zd对象Q工作队列等Q?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">POP3客户端类?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">跨^収ͼ一ơ编写,多^台编译和q行</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">q程理和进E间通信cd</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">反射框架</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">ZPCRE的正则表辑ּ</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">SMTP客户端类?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">数据库访问类库(SQLite,MySQL, ODBC)</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">支持SSL/TLSQ基于OpenSSL</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">动态类库加?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">先进的内存和指针理QBuffer, PoolQ?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Socketcd</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">|络数据类库,支持Base64,HexBinary~解码,压羃{等</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">字符串格式化和其它字W串工具cd</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">TCP服务器框Ӟ多线E)</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">文本~码和{?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Tuples</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">URI支持</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">支持UTF8和Unicode~码</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">UUID生成?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">XML生成和解析器</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Zip文g操作cd</li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t3" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">Poco的?/span></h1><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Poco是一个强大的cdQƈ易于构徏自己的应用程?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Poco帮助你创q_的应用程序(一ơ编写,多^台编译和q行Q?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">模块化和可扩展,可应用于嵌入式到企业U程?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">提供全面Q易懂的~程接口</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">使用C++语言Q快速且高效</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Poco崇尚?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">在设计,代码风格和文上保持一?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Poco代码质量Q包括可L,l合性,一致性,~码风格和可试?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Poco使得C++~程更加Ҏ</li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t4" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">指导斚w</span></h1><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">高度x代码质量Q编码风|一致性,可读?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">高度x试</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">注重实用?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Z现有的,可靠的组件开?/li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t5" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">版本历史</span></h1></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Summer 2004: Günter Obiltschnig started development</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">February 2005: First release on SourceForge</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">(Release 0.91 under Sleepycat license)</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">May 2005: First contributions by Aleksandar Fabijanic</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">January 2006: Release 1.0</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">March 2006: Release 1.1</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">July 2006: Moved to Boost license, POCO Community Website</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">August 2006: Release 1.2</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">May 2007: Release 1.3</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">July 2010: Stable Release 1.3.7,</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">about 20 contributors, used in 100s of projects</li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t6" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">支持q_</span></h1></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Microsoft Windows</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Linux</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Mac OS X</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">HP-UX, Solaris, AIX*</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Embedded Linux (uClibc, glibc)</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">iOS</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">Windows Embedded CE</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">QNX</li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t7" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">Poco应用场景</span></h1><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">创徏自动化的中间件和讑֤</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">工业自动化和工业讑֤</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">量控制pȝ</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">健康pȝ</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">量Q数据收集和试pȝ</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">消费电子产品和家庭自动化产品</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">量</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">航空交通管理系l?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">VoIP</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">务和入口控制系l?/li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">包装应用E序</li></ul></div><div style="box-sizing: border-box; margin: 0px; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"><h1><a name="t8" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">Poco的优?/span></h1><ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style-position: initial; list-style-image: initial;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">全面的,完整的C++框架Q可减少开发工作,快速让产品走向市场</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">易学易用,以及相当多的CZ代码和良好的文档</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">原生的C++代码Q性能优秀Q低内存占用</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">q_无关Q一处编写,跨^台编译和q行<ul style="box-sizing: border-box; margin: 0px 0px 0px 30px; padding: 0px; list-style: disc;"><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">大多数情况下Q可以开发机上完成开发和调试工作</li><li style="box-sizing: border-box; margin: 0px 0px 1em; padding: 0px; list-style: disc;">可以非常Ҏ的迁Ud新^?/li></ul></li></ul></div><p style="box-sizing: border-box; margin-top: 10px; margin-bottom: 10px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"> </p><h1><a name="t9" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); margin: 0px; padding: 0px; outline: 0px;"></a><span style="box-sizing: border-box; margin: 0px; padding: 0px;">~译</span></h1><p style="box-sizing: border-box; margin-top: 10px; margin-bottom: 10px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; color: #454545; font-size: 16px; background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif;"></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">?vs2008 Z:</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">Poco 根目录下?/p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">build_vs90.cmd<br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">buildwin.cmd<br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">q两个批处理文g, 我们得修改一下它?/p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">把build_vs90.cmd 修改Z下内?</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">@echo off<br style="box-sizing: border-box;" />if defined VS90COMNTOOLS (<br style="box-sizing: border-box;" />call "%VS90COMNTOOLS%\vsvars32.bat")<br style="box-sizing: border-box;" />buildwin 90 build all both Win32 samples<br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">如果你不需? NetSSL_OpenSSL ?nbsp;<a title="MySQL知识? target="_blank" style="box-sizing: border-box; background: transparent; color: #df3434; text-decoration-line: none; margin: 0px; padding: 0px; font-weight: bold; outline: 0px;">MySQL</a>   ,此时保存后就双击它就行了. 它会自动~译好各U库.<br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">如果你要NetSSL_OpenSSL q个?你必?</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">在buildwin.cmd 中的38?讄 openssl 的\? 它默认在C:\OpenSSL. 可以修改?你的路径.</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">如果你要 Poco 中的 MySQL ?你还得安? Mysql</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">关于  OpenSSL ?Mysql  库的的安装包</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">OpenSSL:</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 26px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">在这里下载一个安装包</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 26px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><a target="_blank" style="box-sizing: border-box; background: transparent; color: #336699; text-decoration-line: none; margin: 0px; padding: 0px; outline: 0px;">http://slproweb.com/products/Win32OpenSSL.html</a></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 26px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">注意Light 是没有开发包? 有x64 和x32 之分,  x32 ?4位windows下也可以完全正常工作. 如果要编译poco的话 我徏议用x32. </p><span style="color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;">不要下蝲dl尾的,dl尾的缺部分dllQ下载kl尾的例如Win32OpenSSL-1_0_2k.exe</span><br style="box-sizing: border-box; background-color: #ffffff; color: #333333; font-family: Arial;" /><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">mysql:</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><a target="_blank" style="box-sizing: border-box; background: transparent; color: #336699; text-decoration-line: none; margin: 0px; padding: 0px; outline: 0px;">http://www.mysql.com/downloads/connector/c/</a><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">q个也有x32 和x64之分.一般下载x32的就可以?</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;"><br style="box-sizing: border-box;" /></p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">关于x32和x64 :</p><p style="box-sizing: border-box; margin: 0px 0px 16px; padding: 0px; line-height: 28px; word-wrap: break-word; word-break: normal; background-color: #ffffff; color: #333333; font-family: Arial;">Poco 默认是x32? 所以我们的 OpensSSL  ?Mysql 也必M?x32?</p><img src ="http://www.shnenglu.com/niewenlong/aggbug/215475.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/niewenlong/" target="_blank">聂文?/a> 2018-01-16 23:05 <a href="http://www.shnenglu.com/niewenlong/archive/2018/01/16/215475.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>c++ 二进制输?/title><link>http://www.shnenglu.com/niewenlong/archive/2018/01/07/215460.html</link><dc:creator>聂文?/dc:creator><author>聂文?/author><pubDate>Sat, 06 Jan 2018 16:58:00 GMT</pubDate><guid>http://www.shnenglu.com/niewenlong/archive/2018/01/07/215460.html</guid><wfw:comment>http://www.shnenglu.com/niewenlong/comments/215460.html</wfw:comment><comments>http://www.shnenglu.com/niewenlong/archive/2018/01/07/215460.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/niewenlong/comments/commentRss/215460.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/niewenlong/services/trackbacks/215460.html</trackback:ping><description><![CDATA[<pre id="best-content-2277186518" accuse="aContent" mb-10"="" style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", arial, 宋体, sans-serif, tahoma; white-space: pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 29px; color: #333333; min-height: 55px;">有如下几U方法:<br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> #include 〈iostream?br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> #include 〈list? <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> #include 〈bitset? <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> using namespace std; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> 1.//递归输出二进制函?br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> void BinaryRecursion(int n)<br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> int a; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> a=n%2; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> n=a; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> if (n==0)<br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> return; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> else <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> BinaryRecursion(n); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈〈a; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> } <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> 2.//使用容器<a target="_blank" style="color: #3f88bf;">转换二进?/a> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> void BinaryVector(int n) <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> int temp; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> temp=n; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> list〈int?L; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> while(temp!=0) <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> L.push_front(temp%2); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> temp=temp〉?; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> } <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> for (list〈int?:iterator iter=L.begin();iter!=L.end();iter++ ) <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈?iter; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈〈endl; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> } <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> 3.//一般方法,32位,逐步?做与q算? <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> void Binarycout(int n) <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> for (int i=31;i?0;i--) <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈?(n〉〉i)&1); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> } <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈〈endl; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> } <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> 4.//使用bitset<a target="_blank" style="color: #3f88bf;">转换二进?/a> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> void BinaryBitset(int n) <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈〈bitset〈sizeof(int)*8?n)〈〈endl; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> } <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> int main() <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> { <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> int a=1045,b=2; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> int c; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> c=a+b; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈?BinaryRecursion(c)Q?; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> BinaryRecursion(c); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout?BinaryVector(c); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈?Binarycout(c):"; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> Binarycout(c); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈?BinaryBitset(c):"; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> BinaryBitset(c); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> cout〈?BinaryChar(c):"; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> BinaryChar(c); <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> //cout?return 0; <br style="content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;" /> }</pre> <pre id="best-content-2277186518" accuse="aContent" mb-10"="" style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", arial, 宋体, sans-serif, tahoma; white-space: pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 29px; color: #333333; min-height: 55px;"><br /> </pre> <pre id="best-content-2277186518" accuse="aContent" mb-10"="" style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", arial, 宋体, sans-serif, tahoma; white-space: pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 29px; color: #333333; min-height: 55px;"><br /> </pre> <pre id="best-content-2277186518" accuse="aContent" mb-10"="" style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", arial, 宋体, sans-serif, tahoma; white-space: pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 29px; color: #333333; min-height: 55px;"><br /> </pre> <pre id="best-content-2277186518" accuse="aContent" mb-10"="" style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", arial, 宋体, sans-serif, tahoma; white-space: pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 29px; color: #333333; min-height: 55px;"><br /> </pre> <pre id="best-content-2277186518" accuse="aContent" mb-10"="" style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", arial, 宋体, sans-serif, tahoma; white-space: pre-wrap; word-wrap: break-word; font-size: 16px; line-height: 29px; color: #333333; min-height: 55px;"><span style="font-size: 14px; white-space: normal; background-color: #ffffff;">输出没有直接昄二进制的 ,能通过其他库函数{换一?/span><br style="content: ""; display: block; width: 700px; height: 0px; margin: 15px 0px; font-size: 14px; white-space: normal;" /> <br style="content: ""; display: block; width: 700px; height: 0px; margin: 15px 0px; font-size: 14px; white-space: normal;" /> <span style="font-size: 14px; white-space: normal; background-color: #ffffff;">int decimal = 200;</span><br style="content: ""; display: block; width: 700px; height: 0px; margin: 15px 0px; font-size: 14px; white-space: normal;" /> <span style="font-size: 14px; white-space: normal; background-color: #ffffff;">char binary[255];</span><br style="content: ""; display: block; width: 700px; height: 0px; margin: 15px 0px; font-size: 14px; white-space: normal;" /> <span style="font-size: 14px; white-space: normal; background-color: #ffffff;">itoa(decimal, binary, 2);</span><br style="content: ""; display: block; width: 700px; height: 0px; margin: 15px 0px; font-size: 14px; white-space: normal;" /> <span style="font-size: 14px; white-space: normal; background-color: #ffffff;">cout << binary;</span></pre> @import url(http://www.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);<img src ="http://www.shnenglu.com/niewenlong/aggbug/215460.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/niewenlong/" target="_blank">聂文?/a> 2018-01-07 00:58 <a href="http://www.shnenglu.com/niewenlong/archive/2018/01/07/215460.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>protobuf maphttp://www.shnenglu.com/niewenlong/archive/2018/01/06/215459.html聂文?/dc:creator>聂文?/author>Sat, 06 Jan 2018 10:09:00 GMThttp://www.shnenglu.com/niewenlong/archive/2018/01/06/215459.htmlhttp://www.shnenglu.com/niewenlong/comments/215459.htmlhttp://www.shnenglu.com/niewenlong/archive/2018/01/06/215459.html#Feedback0http://www.shnenglu.com/niewenlong/comments/commentRss/215459.htmlhttp://www.shnenglu.com/niewenlong/services/trackbacks/215459.html阅读全文

    ]]>
    MariaDB 密码认证无效的一个坑http://www.shnenglu.com/niewenlong/archive/2017/12/30/215453.html聂文?/dc:creator>聂文?/author>Sat, 30 Dec 2017 08:04:00 GMThttp://www.shnenglu.com/niewenlong/archive/2017/12/30/215453.htmlhttp://www.shnenglu.com/niewenlong/comments/215453.htmlhttp://www.shnenglu.com/niewenlong/archive/2017/12/30/215453.html#Feedback0http://www.shnenglu.com/niewenlong/comments/commentRss/215453.htmlhttp://www.shnenglu.com/niewenlong/services/trackbacks/215453.htmlMariaDB root 账户默认使用?UNIX_SOCKET 插gQ只允许 root 用户q接Q无需密码?nbsp;


    可以使用 root 用户q接后创建新用户或者执行: 
    update mysql.user set plugin = '' where User='root'; 
    flush privileges; 
    or 
    update mysql.user set plugin = 'mysql_native_password' where User='root'; 
    flush privileges; @import url(http://www.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);


    ]]>
    chromium .cipd_client p|的解军_?/title><link>http://www.shnenglu.com/niewenlong/archive/2017/12/20/215433.html</link><dc:creator>聂文?/dc:creator><author>聂文?/author><pubDate>Wed, 20 Dec 2017 05:39:00 GMT</pubDate><guid>http://www.shnenglu.com/niewenlong/archive/2017/12/20/215433.html</guid><wfw:comment>http://www.shnenglu.com/niewenlong/comments/215433.html</wfw:comment><comments>http://www.shnenglu.com/niewenlong/archive/2017/12/20/215433.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.shnenglu.com/niewenlong/comments/commentRss/215433.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/niewenlong/services/trackbacks/215433.html</trackback:ping><description><![CDATA[<p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; font-size: 14px; line-height: 24px;">chromium 代理完美解决办法</span><br style="box-sizing: border-box;" /></span></p><p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">#git的代理设|?/span></p><span style="box-sizing: border-box; margin: 0px; padding: 0px; background-color: #ffffff; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">git config --global http.proxy http://127.0.0.1:1080<br style="box-sizing: border-box;" /></span><p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">git config --global https.proxy https://127.0.0.1:1080</span></p><p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">#winhttp的代理设|?/span></p><p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">netsh winhttp set proxy 127.0.0.1:1080</span></p><p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">#cipd_client目来源与https://github.com/luci/luci-go/tree/master/cipd/client/cipd</span></p><p style="box-sizing: border-box; margin: 0px; padding: 0px; word-wrap: break-word; word-break: normal; color: #454545; font-family: "PingFang SC", "Microsoft YaHei", SimHei, Arial, SimSun; font-size: 16px; background-color: #ffffff;"><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">使用的是</span><span style="box-sizing: border-box; margin: 0px; padding: 0px; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">golong的net/http库访问http/httpsQ可通过环境变量讄代理</span></p><span style="box-sizing: border-box; margin: 0px; padding: 0px; background-color: #ffffff; color: #333333; font-family: "Microsoft YaHei"; font-size: 22px; line-height: 31.4286px;">set HTTP_PROXY=http://127.0.0.1:1080<br style="box-sizing: border-box;" />set HTTPS_PROXY=https://127.0.0.1:1080</span><img src ="http://www.shnenglu.com/niewenlong/aggbug/215433.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/niewenlong/" target="_blank">聂文?/a> 2017-12-20 13:39 <a href="http://www.shnenglu.com/niewenlong/archive/2017/12/20/215433.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>лǵվܻԴȤ</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.xibu520.cn" target="_blank">ҹþӰԺ</a>| <a href="http://www.0475job.cn" target="_blank">97þۺϾƷþþۺ</a>| <a href="http://www.biezhuai.cn" target="_blank">ŷҹͽþþ</a>| <a href="http://www.squc.cn" target="_blank">Ʒݾþþþø</a>| <a href="http://www.52shadu.cn" target="_blank">Ʒþ¶</a>| <a href="http://www.caifu580.cn" target="_blank">ƷëٸAVѾþ </a>| <a href="http://www.chcbszxw.cn" target="_blank">ɫۺϾþĻ</a>| <a href="http://www.cnfeiting.cn" target="_blank">޾Ʒ׽þþþþ</a>| <a href="http://www.taobaomaiba.cn" target="_blank">þ91Ʒ91þС </a>| <a href="http://www.86mls.cn" target="_blank">99ŷƷþþѿ </a>| <a href="http://www.baolaiqi.com.cn" target="_blank">þùҹAVӰԺ</a>| <a href="http://www.918jj.cn" target="_blank">þAV߳AVAV</a>| <a href="http://www.matchweb.cn" target="_blank">þþþAVרɫ</a>| <a href="http://www.legxcn.cn" target="_blank">ھƷžžþþƷ </a>| <a href="http://www.qwkhd.cn" target="_blank">þùֱ</a>| <a href="http://www.t2tt.cn" target="_blank">ƷۺϾþ</a>| <a href="http://www.ekqz.cn" target="_blank">ݺɫþۺ</a>| <a href="http://www.hezh.cn" target="_blank">㽶þۺӰ</a>| <a href="http://www.25552l.cn" target="_blank">ҹƷþþþþ</a>| <a href="http://www.ycs8.cn" target="_blank">wwwþ</a>| <a href="http://www.tianit.cn" target="_blank">þѸƵ</a>| <a href="http://www.hdv1p7.cn" target="_blank">ľþþþר</a>| <a href="http://www.hedv.com.cn" target="_blank">ĻþþƷ </a>| <a href="http://www.grux.cn" target="_blank">˾þav</a>| <a href="http://www.baolaiqi.com.cn" target="_blank">þþWWW</a>| <a href="http://www.ksszzyy.cn" target="_blank">ݺݾþۺ˲</a>| <a href="http://www.hbxdh.cn" target="_blank">ŷþþþ</a>| <a href="http://www.0510beta.cn" target="_blank">þùѹۿƷ</a>| <a href="http://www.ojlf.cn" target="_blank">þùƷ</a>| <a href="http://www.sjz10086.cn" target="_blank">99þù޸ۿ2024</a>| <a href="http://www.fnmqw.cn" target="_blank">žžþȻ㽶ͼƬ</a>| <a href="http://www.fandele.cn" target="_blank">ɫۺϾþþþ </a>| <a href="http://www.vueq.cn" target="_blank">ԸߺþþþþþþAAAAA</a>| <a href="http://www.lxbike.cn" target="_blank"> ŷ þ</a>| <a href="http://www.bestsilm.cn" target="_blank">VۺVŷþ</a>| <a href="http://www.myth9.cn" target="_blank">Ʒþҹҹ³³</a>| <a href="http://www.waihuimaoyi.cn" target="_blank">þAv뾫Ʒϵ</a>| <a href="http://www.jw62.cn" target="_blank">99þĻ</a>| <a href="http://www.zqyipin.cn" target="_blank">˾Ʒþ޸岻</a>| <a href="http://www.iningyu.cn" target="_blank">99þþƷѿ</a>| <a href="http://www.p146.cn" target="_blank">þ޾Ʒһ</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>