蘭帝部落格
2018年3月18日 星期日
[工商服務_NS遊戲]外界清單更新20180318]
https://docs.google.com/spreadsheets/d/1diHDSew41eaR33kCymQlGbwUpPfbfCePl28Z4FLjxPY/edit?usp=sharing
2017年1月29日 星期日
如何在Mac下建立.net環境
1.安裝Install Homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
參考網址:https://www.microsoft.com/net/core#macos.
2.執行https://www.microsoft.com/net/core#macos的1.Install pre-requisites及2.
Install .NET Core SDK.
3.從visual studio code擴充功能Install the C# extension及c#.
4.自行建立一個存放.net專案的資料夾.
5.打開終端機切換到4.建立的位置.
6.執行dotnet new建立一個Program.cs檔案,內含hello world.
7.執行dotnet restore進行編譯會產出兩個檔案,分別是project.json及project.lock.json.
8.執行dotnet run在終端機畫面上產出hello world.
以上使用c#去編寫.net
參考網址:https://code.visualstudio.com/docs/runtimes/dotnet
2016年7月21日 星期四
python-url download code
import urllib2
import os
url = ('')
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
import os
url = ('')
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
python-telnet code
import telnetlib
print("beta version:1,date:2016/5/22")
x = raw_input(">>> Input Host IP to test: ")
y = raw_input(">>> Input Port to test: ")
tn = telnetlib.Telnet(x, y)
tn.write(b"ipconfig\n")
tn.write(b"exit\n")
print("test is ok~~~~~~~~~~\n"+tn.read_all().decode('ascii'))
try:
input("Press enter to continue")
except SyntaxError:
pass
print("beta version:1,date:2016/5/22")
x = raw_input(">>> Input Host IP to test: ")
y = raw_input(">>> Input Port to test: ")
tn = telnetlib.Telnet(x, y)
tn.write(b"ipconfig\n")
tn.write(b"exit\n")
print("test is ok~~~~~~~~~~\n"+tn.read_all().decode('ascii'))
try:
input("Press enter to continue")
except SyntaxError:
pass
2016年2月13日 星期六
python IndentationError:expected an indented block
撰寫python時遇到了
IndentationError:expected an indented block
經過google搜尋後查到下面這篇來暫時解決問題,但是沒想到tcp&udp client擷取封包的工具程式也有問題,這下有得除錯了.
http://blog.csdn.net/hongkangwl/article/details/16344749
2016年2月12日 星期五
Mac上撰寫Python的方式
[轉貼]金魚人備忘錄: 【Python】在XCode上寫python
http://celinechiu0809.blogspot.tw/2015/07/pythonxcodepython.html
http://celinechiu0809.blogspot.tw/2015/07/pythonxcodepython.html
sublime test 3安裝python相關設定筆記:
1.安裝Package Control https://packagecontrol.io/installation#st3
2.安裝SublimeREPL,環境設定部分目前沒用到,參考網址:https://packagecontrol.io/packages/SublimeREPL
2015年12月20日 星期日
訂閱:
文章 (Atom)