10 2017 档案

摘要:1 touch a clc.bat 2 touch a clcpp.bat 3 add clc.bat clcpp.bat to env 4 _vimrc 阅读全文
posted @ 2017-10-25 15:02 idlewith 阅读(202) 评论(0) 推荐(0)
摘要:``` jupyter notebook --no-browser --port=8898 --ip=127.0.0.1 --allow-root ``` ``` ssh -N -f -L 127.0.0.1:8898:127.0.0.1:8898 root@remote_ip ``` ``` http://127.0.0.1:8898 ``` 阅读全文
posted @ 2017-10-24 18:58 idlewith 阅读(175) 评论(0) 推荐(0)
摘要:``` !/usr/local/bin/python coding: utf 8 import os import sys import time device = sys.argv[1] index = sys.argv[2] community = '' version = '1' limit 阅读全文
posted @ 2017-10-24 11:55 idlewith 阅读(159) 评论(0) 推荐(0)
摘要:``` #!/usr/bin/env python # _*_ coding: utf-8 _*_ # @Time : 2017/10/19 14:38 # @Author : otfsenter # @File : operation_registry.py import _winreg def delete_sub_key(key0, key1, key2=""): ... 阅读全文
posted @ 2017-10-20 10:11 idlewith 阅读(190) 评论(0) 推荐(0)
摘要:``` #!/usr/bin/env python # _*_ coding: utf-8 _*_ # @Time : 2017/10/20 9:36 # @Author : otfsenter # @File : open_connections.py import ctypes import subprocess import time import win32gui as... 阅读全文
posted @ 2017-10-20 10:09 idlewith 阅读(187) 评论(0) 推荐(0)
摘要:``` schtasks /create /sc minute /mo 5 /st 00:00:00 /tn "ws_monitor" /tr "C:\Python27_64\python.exe C:\cell_manage\ws_monitor.py" /ru "System" /f ``` 阅读全文
posted @ 2017-10-17 08:50 idlewith 阅读(193) 评论(0) 推荐(0)
摘要:c_fib.c include int Cfib(int n) { if (n 阅读全文
posted @ 2017-10-10 12:38 idlewith 阅读(225) 评论(0) 推荐(0)
摘要:``` 转载 #!/usr/bin/env python #-*-coding=gbk-*- """ 原始数据,用于建立模型 """ #缩水版的courses,实际数据的格式应该为 课程名\t课程简介\t课程详情,并已去除html等干扰因素 courses = [ u'Writing II: Rhetorical Composing', ... 阅读全文
posted @ 2017-10-07 12:46 idlewith 阅读(250) 评论(0) 推荐(0)