由买买提看人间百态

topics

全部话题 - 话题: py
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
g*w
发帖数: 289
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: muqqq (muqq), 信区: JobHunting
标 题: 2014H1B浮想联翩:高技术非法劳工市场怎么样?
发信站: BBS 未名空间站 (Sun Feb 9 22:16:13 2014, 美东)
据说今年H1B会有20万人申请,名额还是8万多。我就想,为什么H1B可以把拥有
advanced学历的人牢牢限制住?那1100万估计连本科学历都没有,但依然可以靠自己的
辛勤劳作在这里站住脚跟。。。
有时候真的很想豁出去了,凭什么比你晚来两三百年,找个工作都要排队抽签看脸色。
凭什么起早贪黑辛勤工作的我随时可能被你贴上一个“非法移民”的标签,而你却可以
继续合法的好吃懒做不劳而获?
没有读过美国宪法,但凭感觉我相信制定宪法的美国先先们如果看到今年的美国,他们
也许会加上一条“这片土地上的任何有都有追逐自己的梦想的自由,只要他不侵犯别人
追逐梦想的权利”
我就想问一下,如果真的被他们贴上了非法移民的标签,advanced STEM degree加上2
年big data工作经验,湾区Startup会在意我是非法的吗... 阅读全帖
a*****p
发帖数: 1285
2
来自主题: Java版 - java graphics2d 画图请教
public class MouseComponent extends JComponent {



public MouseComponent() {

shapes = new ArrayList();
lines = new ArrayList();
bounds = new ArrayList();
current = null;
startpoint = null;
endpoint = null;

isSelected = false;
eraserSelected = false;
cursorPointer = false;
isLine = false;
clear = false;
filled = false;

shapeIndex =... 阅读全帖
b****u
发帖数: 1130
3
来自主题: Java版 - 问一个multiprocess的问题
我用python 而不是JAVA,但是这两个语言也差不多:
类似于multithread,由主线程控制子线程,主线程可以打开并运行多个子线程,控制子
线程。
那么在主程序中,运行到某语句,该语句是一个子程序,子程序是打开一个terminal,
并运行iperf -su (就是服务器端听)。然后该程序不会在这里hang住,而是接着执行
下一条语句,这条语句又是一个子程序,子程序打开一个terminal,并运行iperf -c (
就是客户端连接等等)。程序也不会在这里hang住,而是接着执行下一条语句。
大家明白我的意思了吗?如果用multithread实现很容易,但decouple不好,我不会采用
那么如果使用.batch文件,每个terminal的执行放在一个.py文件,然后
a.py &
b.py &
可能也能实现,但我不希望用这种方式。
我希望使用process,就是上述方法来实现,求帮忙
t******a
发帖数: 1200
4
原创,客户端GUI是用 Python 的 tkinter 用两个小时时间写出来的,比较
简陋,但优点是跨平台,可以在一切安装了 Python 的 OS, 比如 Windows XP/
Vista/7, Linux, Mac OS X, BSD 上运行.
从如下连接下载程序到本地后直接运行即可。 短期内会推出基于 Browser/AJAX,
可在 iPhone, Android 上运行的版本.
http://cwritepad.appspot.com/public/cwritepad.py
服务器端基于 Google Application Engine. 想了解如何调用识别服务,请查看
cwritepad.py 的源代码。
更新:
不需要下载任何东西,直接在浏览器里书写的 AJAX 版本
http://cwritepad.appspot.com/public/cwritepad.html
谢谢.
补充说明 -
1. 看回帖似乎很多用户不知道如何运行下载下来的 cwritepad.py 现简要说明如下
Windows 用户请通过如下链接下载并安装 Python, 然后双击 cwritep
s****h
发帖数: 921
5
来自主题: Programming版 - Python的一个错误
有一个multi_sc_test.py文件,被多次调用。
偶尔会出现问题:
File "D:\ERCOT\sc\Noise\multi_sc_test.py", line 7, in multi_sc_test
os.environ['PATH'] += ';C:\\Program Files\\PTI\\PSSE31\\PSSBIN'
File "C:\Python25\lib\os.py", line 432, in __setitem__
putenv(key, item)
OSError: [Errno 0] Error
这个是什么错误?
I*******e
发帖数: 1879
6
来自主题: Programming版 - [合集] 问个python问题
☆─────────────────────────────────────☆
ludovic (荷叶粉蒸肉) 于 (Fri Mar 13 13:59:18 2009) 提到:
我的程序需要动态的加载一些库。
需求是这样的,程序会扫描一些目录,如果发现存在某个特定的 .py文件,就要加载这
个.py中的一个库,然后运行代码。然后,需要卸载这个库,再继续搜索下一个目录。
具体大概是这么个形式:
for dir in dirList:
if os.path.isfile(dir + "/lib.py"):
# Load the lib

#Run some code to generate output
# unload the lib(as all these libs have the same name)
请问这里的动态加载卸载怎么解决?
加载部分,import XXX中的XXX似乎不能含有路径(路径只能从PYTHONPAT
c**y
发帖数: 172
7
来自主题: Programming版 - conversion between const to nonconst
Anyone can explain why the second output is 0, rather than 1.

========================================
#include
#include
#include
using namespace std;
int main() {

const int x = 0;

int const *py = &x;

int *px = const_cast(&x);

cout << *px << endl; // output 0

*px = 1;

cout << x << endl; // output 0, I don't understand
cout << *px << endl; // output 1
cout << *py << endl; ... 阅读全帖
f*******8
发帖数: 3612
8
这是一个将RFC 文件转换成 kindle格式的程序,
来自:
https://github.com/pingwin/RFC-2-Kindle
我是windows上的python 2.71, 运行完全仿照该网站的要求
结果出来是找不到font MONOSPACE, 不知道MONOspace是不是个字体库或别的什么。
running output:
D:\>rfctxt2kindlehtml.py -i rfc791.txt -o rfc791.html && ./ki
ndlegen rfc791.html
Unable to find font: /usr/share/cups/fonts/Monospace
Convert IETF RFC TXT file to HTML for kindlegen
-h --help This message
-v verbosity
-i --input input file
-o --output output file
-f --font font file to use for monospace ... 阅读全帖
S*******s
发帖数: 13043
9
来自主题: Programming版 - python: how to import a decorator?
I got an error if I want to run test.py:
@singleton
NameError: name 'singleton' is not defined
if I combine the two files, it would be fine.
what is right way to import decorator?
#in module Singleton.py
def singleton(theClass):
""" decorator for a class to make a singleton out of it """
classInstances = {}
def getInstance(*args, **kwargs):
""" creating or just return the one and only class instance.
The singleton depends on the parameters used in __init__ """... 阅读全帖
F****3
发帖数: 1504
10
来自主题: Programming版 - 请教exception handling的python问题
报错是这样的:
File "GeoIPcity.py", line 10, in
print >> g, gi.cityby_name(x)
File "build/bdist.linux-i686/egg/pygeoip/__init__.py", line 551, in org_by
_name

File "build/bdist.linux-i686/egg/pygeoip/__init__.py", line 412, in _
gethostbyname

socket.gaierror: [Errno -5] No address associated with hostname
这个是不是ValueError啊?其他的我不知道了。。。请问还有可能是什么种类的
exception我可以一个一个套。用的是geoip的包。
太谢谢了!
f********s
发帖数: 526
11
来自主题: Programming版 - 有人在ubuntu 13.04上装过python 3.4吗?
我装了一下装不上, ./configure没问题, 但是接下来用make的时候, 系统提示这个错
误, 大牛给看看, 咋办啊? 多谢啦~
.....
copying and adjusting /home/yanwang/.local/share/Trash/files/Python-3.4.1/
Tools/scripts/2to3 -> build/scripts-3.4
copying and adjusting /home/yanwang/.local/share/Trash/files/Python-3.4.1/
Tools/scripts/pyvenv -> build/scripts-3.4
changing mode of build/scripts-3.4/pydoc3 from 664 to 775
changing mode of build/scripts-3.4/idle3 from 664 to 775
changing mode of build/scripts-3.4/2to3 from 664 to 775
changing mode of build... 阅读全帖
w*s
发帖数: 7227
12
来自主题: Programming版 - python os.system( ) doesn't come back
This is what i suspect, python os.system( ) doesn't come back sometimes.
i have loop.py, it's very simple
for x in range(0, 10000):
rc = os.system("my_other_script.py")
time.sleep(10)
os.system("linux_cmd_to_turn_off_my_other_script")
Coming back from weekend, i don't see outputs from my_other_script.
When i manually run "linux_cmd_to_turn_off_my_other_script",
my_other_script seems alive again.
so i was thinking what happens if this line never come back ?
rc = os.system("my_othe... 阅读全帖
m***r
发帖数: 359
13
来自主题: Programming版 - Python 2015年1月楼
先按月在这分享吧,免得一天一个有刷版的嫌疑。
先贴今天的:
Python日报 2015-01-30
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-01-30/short.html
1) 【南大公开课:使用Python学习“概率论与数理统计”】 by @陈振宇NJU
关键词:数据科学, 计算
面向软件开发者的“概率论与数理统计”--数学理论与编程应用的完美结合!加入网易
云课堂 [1] ,让我们学会用严谨的数学方法和优雅的Python来分析那些似是而非的问
题! @网易云课堂 @中国计算机学会软件工程专委会
[1] http://mooc.study.163.com/course/NJU-1000031001#/info
2) 【plan:用python管理cron任务】 by @PyPINews
关键词:库, 运维
[PyPI Newest Package] p... 阅读全帖
m***r
发帖数: 359
14
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-01
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-01/short.html
1) 【Linux服务器Python生产环境配置】 by @叶枫落
关键词:基础, 博客, 课程, 运维
[Blog Update] Linux服务器Python生产环境配置 经常我们做运维配置的时候会重复查
找一些教程 [1] #linux# #python#
[1] http://hearrain.com/2015/02/814
2) 【哈工大公开课:程序设计入门—Python】 by @跃Louie
关键词:基础
推荐一门好课《程序设计入门—Python》, @云课堂App —每天涨一点姿势[给力] [1]
[1] http://mooc.study.163.com/course/YOOKCS0001-1000002017#/info?u... 阅读全帖
m***r
发帖数: 359
15
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-02
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-02/short.html
1) 【集群化部署定时任务apscheduler库】 by @wenphbupt
关键词:库, 博客, 定时任务, 运维
为了防止单点故障,定时任务可以用集群来完成,python实在太强大了 @Python开发者
@并发编程网站 @IT程序猿 @IT技术博客大学习 @程序员编辑部 。python第三方库系
列之十四--集群化部署定时任务apscheduler库,addr: [1]
[1] http://blog.csdn.net/wenph2008/article/details/43412633
2) 【Geocoder——纯Python的Geocoding模块】 by @爱可可-爱生活
关键词:库, 代码, 地理
[开源] Geocoder... 阅读全帖
m***r
发帖数: 359
16
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-03
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-03/short.html
1) 【知乎问答:你是如何自学 Python 的?】 by @ardoro
关键词:基础, 书籍, 课程
【你是如何自学 Python 的?】 @陈铮Liam : 我最先看的是《简明 Python 教程 》来
熟悉一下语法,自己敲了一下代码,发现python很容易上手,渐渐喜欢上它。接着买了
一本《python基础教程》,跟着书中的例子深入学习。这本书讲得很详细,… [1] (
分享自 @知乎 )
[1] http://www.zhihu.com/question/20702054/answer/15908321
2) 【Software Carpentry 在实践中一步一步学Python】 by @爱可可-爱生活
关键词:基础, 课程
[教程... 阅读全帖
m***r
发帖数: 359
17
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-05
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-05/short.html
1) 【Python脚本安全专家系列视频】 by @ringzero
关键词:安全, 视频
[Python脚本安全专家系列视频] SecurityTube - Python Scripting Expert ,内容涵
盖:系统安全、网络嗅探和数据包重定向攻击、Web应用攻击、漏洞Exp技术、逆向工程
、自动化攻击等。 下载地址: [1]
[1] http://pan.baidu.com/s/1hqy403i
2) 【Nature文章:编程,选择Python】 by @科学葡萄皮
关键词:基础
【Nature文章:编程,选择Python】Nature发表工具箱文章介绍Python__具有广大社区
支持的强大的编程语言:通过领域专家的经验,介绍什么... 阅读全帖
m***r
发帖数: 359
18
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-06
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-06/short.html
1) 【你不了解的python decorator】 by @湾区日报BayArea
关键词:Web, 库, Graham Dumpleton, 博客
你不了解的python decorator [1] 这一些列文章时mod-wsgi的开发者Graham
Dumpleton写的。他现在不久前刚上市的New Relics工作。10篇博文,大家慢慢看:)
[1] http://wanqu.co/2015-02-06-%E4%BD%A0%E4%B8%8D%E4%BA%86%E8%A7%A3%E7%9A%84python-decorator.html
2) 【DataScience.LA’14上的Python专题】 by @爱可可-爱生活
关键词:工具... 阅读全帖
m***r
发帖数: 359
19
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-07
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-07/short.html
1) 【用Docker部署Python应用的一些最佳实践】 by @DockerOne
关键词:运维
【使用Docker部署Python应用的一些最佳实践】本篇文章源自作者团队在长期开发过程
中总结的宝贵经验,其中Supervisor、Gunicorn以及Nginx更是在使用Python开发Web应
用时最常用的软件,因此对于打算使用Docker部署Python应用的读者而言,这些最佳实
践是很有参考价值。 [1]
[1] http://dockerone.com/article/185
2) 【Python用FFT和中值滤波检测时间序列】 by @爱可可-爱生活
关键词:数据科学, 计算
[IPN]《Outlier Detection in ... 阅读全帖
m***r
发帖数: 359
20
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-09
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-09/short.html
1) 【Python的正则式表达速查图】 by @安全_linso
关键词:基础, 正则表达式
这Python的正则式表达图不错哟[好棒]
长微博图:http://ww3.sinaimg.cn/large/005TSTNXjw1ep1z5qu40ej30ce0qowi9.jpg
2) 【网络编程包networkx的使用】 by @MachineLearning_python
关键词:数据科学, 博客, 图分析, 网络
发表了一篇转载博文《[转载]python下的复杂网络编程包networkx的使用(摘抄)》 [
1]
[1] http://blog.sina.com.cn/s/blog_9f47c51d0102vbk3.html?ref=wei... 阅读全帖
m***r
发帖数: 359
21
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-10
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-10/short.html
1) 【Python和Flask真是太强大了】 by @Python开发者
关键词:Web, 库, 书籍, Flask
《Python和Flask真是太强大了》作者是一个开发员,同时也写书籍赚点小钱。某次网
友抱怨他在线的图书付款流程太复杂,作者因而“大怒”,遂用Flask百余行代码完成
整个流程。绝对的实战案例,让你领教Falsk的威力。 [1] ( @XX含笑饮砒霜XX 译,
欢迎加入翻译组: [2] )
[1] http://python.jobbole.com/81065/
[2] http://www.jobbole.com/groups/6/
2) 【提升 Python 程序性能的 6 个技巧】 by @SinaAppEngine
... 阅读全帖
m***r
发帖数: 359
22
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-11
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-11/short.html
1) 【《Raspberry Pi开发实战》】 by @成华区学无涯书社
关键词:书籍, 硬件
每日新书:《Raspberry Pi开发实战》在本书中,你将会看到许多与树莓派相关内容的
示例,包括如何配置和使用树莓派;如何使用Python编程语言;如何用树莓派连接传感
器、显示器和电机等设备。本书还包括一章介绍如何让树莓派与Arduino开发板一起工
作的内容。包含大量的接口板和软件实例的介绍。
2) 【免费公开课视频ython运维自动化】 by @51CTO官方微博
关键词:运维, 课程
【高级运维和Python运维自动化分享课程】Python:主题《自动化运维之路》(1.5小
时);Linux运维主题:《什么是真正的运维自动化?—高级架构师... 阅读全帖
m***r
发帖数: 359
23
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-12
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-12/short.html
1) 【三大语言的LLVM】 by @爱可可-爱生活
关键词:工具, 博客, 解释器
[文章]三大语言的LLVM:Python-《Let's Write an LLVM Specializer for Python!》
[1] ;C -《How to get started with the LLVM C API》 [2] ;Haskell -《
Implementing a JIT Compiler with Haskell and LLVM》 [3] 皆大欢喜
[1] http://dev.stephendiehl.com/numpile/
[2] https://pauladamsmith.com/blog/2015/01/how-to-... 阅读全帖
m***r
发帖数: 359
24
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-14
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-14/short.html
1) 【python和perl的生物信息学应用库】 by @biostack
关键词:库, 代码, 生物
先前分享了许多python 的生物信息学应用库,比如: JCVI [1] , bcbio-nextgen [2
] 现在给出几个Perl 的生物信息学应用Github帐号BioInf-Wuerzburg [3] sesbio [4]
[1] https://github.com/tanghaibao/jcvi
[2] https://github.com/chapmanb/bcbio-nextgen
[3] https://github.com/BioInf-Wuerzburg
[4] https://github.com/sestaton... 阅读全帖
m***r
发帖数: 359
25
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-15
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-15/short.html
1) 【用Matplotlib创建论文插图】 by @爱可可-爱生活
关键词:库, 代码, 绘图
[文章]《Creating publication-quality figures with Matplotlib》 [1] Python下
用Matplotlib创建可供发布的论文插图,文中引用的资源也很实用
[1] https://github.com/jbmouret/matplotlib_for_papers
长微博图:http://ww4.sinaimg.cn/large/5396ee05jw1epac7q7b4sj20lmov7hdy.jpg
2) 【cmp函数原理剖析】 by @me坤子
关键词:基础
分享 @me坤子 的文章「Pyt... 阅读全帖
m***r
发帖数: 359
26
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-16
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-16/short.html
1) 【mlxtend数据科学工具和扩展库】 by @爱可可-爱生活
关键词:库, 数据科学, 代码, 绘图, 机器学习, 计算
[开源] mlxtend —— Python的数据科学(数据分析&机器学习)工具和扩展库,包括
文本预处理、Pandas工具、文件IO工具、Scikit-learn工具、数学工具、Matplotlib工
具等 GitHub: [1]
[1] https://github.com/rasbt/mlxtend#plotting_decision_regions
长微博图:http://ww4.sinaimg.cn/large/5396ee05jw1epar3n6gb4j20l8gh3u0z.jpg
2) 【新编程语言Ni... 阅读全帖
m***r
发帖数: 359
27
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-17
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-17/short.html
1) 【基于Python的测试驱动开发实战】 by @CSDN研发频道
关键词:开发, 测试
【基于Python的测试驱动开发实战】近年来测试驱动开发(TDD)受到越来越多的关注。
这是一个持续改进的过程,能从一开始就形成规范,帮助提高代码质量。这是切实可行
的而非天马行空的。 [1]
[1] http://www.csdn.net/article/2015-02-16/2823992-python
2) 【Appscale:Google App Engine的开源实现】 by @zzyongx
关键词:代码
appscale [1] ,开源的google app engine实现,支持python,java,php
[1] https://g... 阅读全帖
m***r
发帖数: 359
28
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-19
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-19/short.html
1) 【稀疏随机投影的Python实现】 by @爱可可-爱生活
关键词:库, 数据科学, 博客, 机器学习
[文章]《Python Sparse Random Projections》 [1] Python下用scikit-learn做稀疏
随机投影(sparse random projections)实现特征降维,简单高效
[1] http://blog.yhathq.com/posts/sparse-random-projections.html
长微博图:http://ww1.sinaimg.cn/large/5396ee05jw1epec033hffj20s166bqv5.jpg
2) 【用Python和NLTK发现公共Twitter... 阅读全帖
m***r
发帖数: 359
29
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-20
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-20/short.html
1) 【开源深度学习框架Mariana】 by @爱可可-爱生活
关键词:Web, 库, 数据科学, PDF, 代码, 机器学习, 框架
[开源] Mariana——来自腾讯的开源深度学习框架,基于theano [1] 相关文章和幻灯:
[2] [3]
[1] https://github.com/tariqdaouda/Mariana
[2] http://djt.qq.com/article/view/1231
[3] http://thumedia.org/assets/BDTC/%E9%82%B9%E6%B0%B8%E5%BC%BA%20-%20Mariana%EF%BC%9A%E8%85%BE%E8%AE%AF%E6%B7%B1%E5... 阅读全帖
m***r
发帖数: 359
30
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-22
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-22/short.html
1) 【Python下处理类间不均衡的分类问题】 by @爱可可-爱生活
关键词:数据科学, 机器学习, 可视化
[文章]《Dealing with Unbalanced Classes ,Svm, Random Forests And Decision
Trees In Python》 [1] Python下用Svm, Random Forests和Decision Trees分类wine
quality数据,并对类间不均衡问题进行可视化和讨论,很不错
[1] http://www.bigdataexaminer.com/dealing-with-unbalanced-classes-svm-random-forests-and-decisi... 阅读全帖
m***r
发帖数: 359
31
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-23
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-23/short.html
1) 【一个基于Python的Nearest Neighbors Search库】 by @路遥_机器学习
关键词:数据科学, 博客, 代码, 机器学习
一个基于Python的Nearest Neighbors Search库 [1] 。博文介绍 [2] 。另外基于这个
库的一个推荐系统 [3] ,将作为一个demo presentation在WWW上出现。作者是剑桥的
博士后 @唧唧歪歪de计算机博士
[1] https://github.com/ryanrhymes/panns
[2] http://ryanrhymes.blogspot.fi/2015/02/about-panns-naive-tool-for-approximate.h... 阅读全帖
m***r
发帖数: 359
32
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-23
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-23/short.html
1) 【一个基于Python的Nearest Neighbors Search库】 by @路遥_机器学习
关键词:数据科学, 博客, 代码, 机器学习
一个基于Python的Nearest Neighbors Search库 [1] 。博文介绍 [2] 。另外基于这个
库的一个推荐系统 [3] ,将作为一个demo presentation在WWW上出现。作者是剑桥的
博士后 @唧唧歪歪de计算机博士
[1] https://github.com/ryanrhymes/panns
[2] http://ryanrhymes.blogspot.fi/2015/02/about-panns-naive-tool-for-approximate.h... 阅读全帖
m***r
发帖数: 359
33
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-24
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-24/short.html
1) 【关于Python元类(Metaclasses)的详细讲解】 by @爱可可-爱生活
关键词:基础, 博客
[文章]《Understanding Python metaclasses》 [1] 关于Python元类(Metaclasses)的
详细讲解,深入浅出
[1] http://blog.ionelmc.ro/2015/02/09/understanding-python-metaclasses/
长微博图:http://ww2.sinaimg.cn/large/5396ee05jw1epk21k8yp9j20l3f63e83.jpg
2) 【Python软件包scholarNetwork可视化谷歌学术网络】 by @黠之大者
关键... 阅读全帖
m***r
发帖数: 359
34
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-25
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-25/short.html
1) 【Python代码优化】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, IPython, 博客, 计算
[文章]《Optimizing Python in the Real World: NumPy, Numba, and the NUFFT》 [
1] 以非均匀快速傅立叶变换(NUFFT)为例介绍面向实战的Python代码优化 ipn: [2]
[1] https://jakevdp.github.io/blog/2015/02/24/optimizing-python-with-numpy-
and-numba/
[2] http://nbviewer.ipython.org/url/jakevdp.github.io/d... 阅读全帖
m***r
发帖数: 359
35
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-26
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-26/short.html
1) 【Python强化学习库】 by @爱可可-爱生活
关键词:库, 数据科学, Andrew Ng, 代码, 机器学习
[开源] reinforce —— Python下“即插即用”型强化学习(reinforcement learning)
库 GitHub: [1] 其实现基于Andrew Ng的notes [2] 以及另一篇关于强化学习实现的文
章《Reinforcement Learning》 [3]
[1] https://github.com/nathanepstein/reinforce
[2] http://pan.baidu.com/s/1eQcUvdC
[3] http://nathanepstein.github.io/... 阅读全帖
m***r
发帖数: 359
36
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-02
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-02/short.html
1) 【解读IPython3新特性】 by @python产品开发
关键词:Python3, 博客
IPython3的时代到来了, 作为150个贡献者中的一个, 我也很惊讶来的这么快, 我写了
篇blog对其中最重要的内容做了解释. [1] @好东西传送门 @ZoomQuiet @开发者头条 @
WEB开发者
[1] http://www.dongwm.com/archives/ipython3shi-dai-dao-lai/
2) 【Python下用Pandas读取和分析数据的一组实际例子】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, 资源, IPython, 计算, 课程
[IPN]《Pandas in a Hurry》 [1... 阅读全帖
m***r
发帖数: 359
37
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-03
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-03/short.html
1) 【Python下用Scrapy和MongoDB构建爬虫系统】 by @爱可可-爱生活
关键词:库, 博客, 爬虫
《Web Scraping and Crawling With Scrapy and MongoDB》Part1: [1] Part2: [2]
Python下用Scrapy和MongoDB构建爬虫系统,以StackOverflow为例,难得的Scrapy实操
好文
[1] https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/
[2] https://realpython.com/blog/python/web-scraping-and... 阅读全帖
m***r
发帖数: 359
38
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-04
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-04/short.html
1) 【Python下的环境科学数据分析实战】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, IPython, SciPy, 代码, 机器学习, 计算
[IPN]《Python for Data Analysis》 [1] Python数据分析指南,环境科学数据实战,
内容涉及IPython使用、Python基础、Numpy及Scipy基础、统计数据建模、Pandas、
Scikit-Learn使用等,相当有料,推荐! ipn: [2]
[1] https://github.com/nicolasfauchereau/NIWA_Python_seminars
[2] http://nbviewer.ipython.org/githu... 阅读全帖
m***r
发帖数: 359
39
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-05
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-05/short.html
1) 【Python代码微优化——查找速度提高5%的技巧】 by @爱可可-爱生活
关键词:开发, 优化
[文章]《Micro-Optimizations in Python Code: Speeding Up Lookups》 [1] Python
代码微优化——查找速度提高5%的技巧(可读性会下降)
[1] http://jamesls.com/micro-optimizations-in-python-code-speeding-up-lookups.html
长微博图:http://ww2.sinaimg.cn/large/5396ee05jw1epux2p9r2qj20kn473e5s.jpg
2) 【详细讲解Django模型】 by... 阅读全帖
m***r
发帖数: 359
40
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-02
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-02/short.html
1) 【解读IPython3新特性】 by @python产品开发
关键词:Python3, 博客
IPython3的时代到来了, 作为150个贡献者中的一个, 我也很惊讶来的这么快, 我写了
篇blog对其中最重要的内容做了解释. [1] @好东西传送门 @ZoomQuiet @开发者头条 @
WEB开发者
[1] http://www.dongwm.com/archives/ipython3shi-dai-dao-lai/
2) 【Python下用Pandas读取和分析数据的一组实际例子】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, 资源, IPython, 计算, 课程
[IPN]《Pandas in a Hurry》 [1] 2015 San Dieg... 阅读全帖
m***r
发帖数: 359
41
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-03
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-03/short.html
1) 【Python下用Scrapy和MongoDB构建爬虫系统】 by @爱可可-爱生活
关键词:库, 博客, 爬虫
《Web Scraping and Crawling With Scrapy and MongoDB》Part1: [1] Part2: [2]
Python下用Scrapy和MongoDB构建爬虫系统,以StackOverflow为例,难得的Scrapy实操
好文
[1] https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/
[2] https://realpython.com/blog/python/web-scraping-and-crawling-with-... 阅读全帖
m***r
发帖数: 359
42
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-04
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-04/short.html
1) 【Python下的环境科学数据分析实战】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, IPython, SciPy, 代码, 机器学习, 计算
[IPN]《Python for Data Analysis》 [1] Python数据分析指南,环境科学数据实战,
内容涉及IPython使用、Python基础、Numpy及Scipy基础、统计数据建模、Pandas、
Scikit-Learn使用等,相当有料,推荐! ipn: [2]
[1] https://github.com/nicolasfauchereau/NIWA_Python_seminars
[2] http://nbviewer.ipython.org/github/nicolasfauche... 阅读全帖
m***r
发帖数: 359
43
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-05
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-05/short.html
1) 【Python代码微优化——查找速度提高5%的技巧】 by @爱可可-爱生活
关键词:开发, 优化
[文章]《Micro-Optimizations in Python Code: Speeding Up Lookups》 [1] Python
代码微优化——查找速度提高5%的技巧(可读性会下降)
[1] http://jamesls.com/micro-optimizations-in-python-code-speeding-up-lookups.html
长微博图:http://ww2.sinaimg.cn/large/5396ee05jw1epux2p9r2qj20kn473e5s.jpg
2) 【详细讲解Django模型】 by @博客园
关键词:Web, ... 阅读全帖
m***r
发帖数: 359
44
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-06
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-06/short.html
1) 【深度讲解Python Decorators和Context Managers】 by @Python传送门
关键词:基础, 博客
深度讲解Python Decorators和Context Managers [1]
[1] https://codefisher.org/catch/blog/2015/02/10/python-decorators-and-
context-managers/?utm_content=bufferd7135&utm_medium=social&utm_source=
twitter.com&utm_campaign=buffer
2) 【SciPy'13上用Python做统计数据分析的Tutorial】 by @爱可可-爱生活
关键词... 阅读全帖
m***r
发帖数: 359
45
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-07
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-07/short.html
1) 【Python下利用GetStream.io快速搭建一个实时通知系统】 by @Python传送门
关键词:代码
Python下利用GetStream.io快速搭建一个实时通知系统 [1]
[1] https://gist.github.com/tbarbugli/3d43136edb5dcf9bf98b
2) 【Python中备忘功能和装饰器】 by @Python开发者
关键词:Donald Michie
《Python中备忘功能和装饰器》备忘这个词是由Donald Michie在1968年提出的,它基
于拉丁语单词“memorandum”,意思是“被记住”。虽然它和单词“memorization”在
某种程度上有些相似,但它并不是该单词的错误拼写。 [1] ( ... 阅读全帖
m***r
发帖数: 359
46
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-08
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-08/short.html
1) 【Python中的默认参数】 by @Python开发者
关键词:基础
《Python中的默认参数》文本介绍了Python中的默认参数,作者从自己的经历中总结了
Python默认参数的使用中,易犯的错误。通过本篇文章可以深入掌握Python默认参数的
细节。 [1] ( @XX含笑饮砒霜XX 译,欢迎加入翻译组: [2] )
[1] http://python.jobbole.com/81105/
[2] http://www.jobbole.com/groups/6/
2) 【Python的Twitter情感预测工具】 by @路遥_机器学习
关键词:资源, 课程
和小伙伴 @黑皮肖特 用Python做个了基于CNN的Twitter Sentiment Predic... 阅读全帖
m***r
发帖数: 359
47
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-09
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-09/short.html
1) 【9/11相关新闻的主题分析及可视化】 by @爱可可-爱生活
关键词:应用, 博客, 代码, 可视化
[文章]《Topic modeling in 9/11 news articles》 [1] 9/11相关新闻的主题分析及
可视化,主题抽取基于NMF,数据来自New York Times,提供Python源码,很不错 在线
演示: [2] 代码: [3]
[1] http://blog.dominodatalab.com/topic-modeling-in-sept-11-news-articles/
[2] http://djsensei.github.io/911/
[3] https://github.com/djsensei/AlwaysRemember
... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)