简单到极致
摘要: 在使用google code 的时候 做个备份,git clone https://wushuangzilong@code.google.com/p/maplebanana-proxy/git config --global user.email "wushuangzilong@gmail.com"git config --global user.name "wushuangzilong@gmail.com"git add *git commit -m "update" *git push origin 阅读全文
posted @ 2014-01-20 16:52 ring_hacker 阅读(193) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, StdCtrls, ExtActns, ComCtrls;typeTForm1 = class(TForm)ProgressBar1: TProgressBar;Label1: TLabel;Button1: TButton;procedure FormCreate(Sender: TObject);procedure Button1Click(Sender: TObject);pr 阅读全文
posted @ 2014-01-20 16:48 ring_hacker 阅读(165) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;type TForm1 = class(TForm) test: TMemo; Button1: TButton; Memo1: TMemo; Label1: TLabel; procedure Button1Click(Sender: TObject) 阅读全文
posted @ 2013-12-21 15:39 ring_hacker 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: https://raw.github.com/onionhacker/bananaproxy/master/update.ini 阅读全文
posted @ 2013-12-18 12:49 ring_hacker 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 使用Delphi读取网络上的txt和html文件可以使用两种方法:1.下载文件,然后进行读取下载文件的Delphi代码可以参考:http://www.delphibbs.com/delphibbs/dispq.asp?lid=35149532.使用TIdHTTP控件直接读取:使用TIdHTTP的Get方法读取http://192.168.198.1/a.txt,可以这样写:var IdHTTP1: TIdHTTP;string x :=IdHTTP1.Get('http://192.168.198.1/a.txt'); 阅读全文
posted @ 2013-12-18 12:48 ring_hacker 阅读(666) 评论(0) 推荐(0) 编辑