
blog.fluyy.net
fluyy's Blogfluyy,来自大山深处的程序员,现在从事后台研发工作。偶尔也会玩玩前端的东西。 这是我的个人blog,在这里我会记录一些我的工作与生活,聊聊python,C++,数据结构与算法
http://blog.fluyy.net/
fluyy,来自大山深处的程序员,现在从事后台研发工作。偶尔也会玩玩前端的东西。 这是我的个人blog,在这里我会记录一些我的工作与生活,聊聊python,C++,数据结构与算法
http://blog.fluyy.net/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Wednesday
LOAD TIME
4.7 seconds
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
1
SITE IP
119.28.48.229
LOAD TIME
4.703 sec
SCORE
6.2
fluyy's Blog | blog.fluyy.net Reviews
https://blog.fluyy.net
fluyy,来自大山深处的程序员,现在从事后台研发工作。偶尔也会玩玩前端的东西。 这是我的个人blog,在这里我会记录一些我的工作与生活,聊聊python,C++,数据结构与算法
linuxshell命令总结(2)
http://blog.fluyy.net/post/2013-10-16-linux_shell_2
Cat的作用是将一个文件的信息读到标准输出设备上 一般情况就是我们的屏幕 cat 后直接加上要查看的文件就可以,如果什么都没有加,就会从标准输入读,然后再输出到标准输出上 下面是一些常用的参数. Cat -n filename #输出信息加上行号 -b 的作用如此类似,只是输出的信息上不会加上行号 cat -s filename #会将连续的空行替换为一个空行 cat -T filename #将Tab字符显示为 I 这样就可以很方便的区分空格和Tab了. Cat filename #将标准输入 一般是键盘 的信息写入filename文件中 cat /dev/null filename #清空一个文件,文件如果不存在,则会创建一个新文件. Od则可以将文件内容以指定形式输出 默认是八进制 所以od多用来查看二进制文件 例如可执行文件。 Head -ck test #输出test文件的前k字节的内容 head -nk test #输出test文件的前k行内容 head -q test #不输出test文件的文件头内容. Tail -f test #当test文件增长时,输出后续添加的数据.
fluyy's Blog
http://blog.fluyy.net/links
python with statement
http://blog.fluyy.net/post/2014-12-7-python_context_manager
Try: with open(filename,'r') as filea: do process() except IOError as e: print e.strerrpr. Try: with open(file1,'r') as filea,open(file2,'r') as fileb: do process() except IOErrpr as e: print e.strerrpr. Try: f=open(test.txt,'r') print f.read() except IOError as e: print e finally: f.close(). 这里我们使用了try . finally语句。 在编写socket程序, 数据库程序时,都可以用try.finally语句来释放回收各种资源 python官方文档中,称作定义清理行为。 但是上面的代码显得不够Pythonic,这里我们介绍with语句,with语句也是一种控制流语句,可以简化 try.finally语句。 Enter context do something exit context.
CRC校验
http://blog.fluyy.net/post/2013-04-13-crc_check
2用得到的(k n)位数,除以除数P 除数一般是一个生成多项式 得到余数R(n位,比P少一位). 0)/ 当高位不是0时 { mes=mes key; / 模2除实际是异或运算 tl=len(mes); tl=cl-tl; key =tl; cl-=tl; } else { mes =1; key =1;/ 使数据和生成多项式高位保持一直 } } return mes;/ 生成冗余码 } int main() { unsigned int mes,key,res; while(1) { printf(所有数据以十六进制输入! Printf(请输入校验数据: n); scanf(%x,&mes); printf(请输入生成多项式: n); scanf(%x,&key); res=crc work(mes,key); printf(生成的校验码为0X%X n,res); } / crc work(0x59,0x19,4); / crc work(0x29,0x13,3); return 0; }.
从制作python模块包说起
http://blog.fluyy.net/post/2016-09-14-python-package-distutils
Wheel egg 与 tgz. Egg格式的包在2004年通过setuptools引入,其本质上是一个包含了项目代码以及元数据 一个名为egg-info的子目录 的zip压缩包,而Wheel格式则是于2012年在PEP 427中引入,一个Wheel格式的包中包含一个名为.dist-info的子目录。 这是非常关键的一步,无论你是制作egg格式包还是tgz格式的都需要编写setup.py , 下面以官方文档中的一个例子介绍一下setup.py的格式. Packages : 告诉Distutils需要处理的模块代码(含有 init .py的目录). Package dir : 告诉Distutils自己的映射规则, 例如当源码都放在 lib目录下时, 我们可以用. Package dir= {' : 'lib'}. 这个参数,指定lib为当前包的根目录,假设packages=["foo"], 则实际处理时,Distutils会去处理 lib/foo/目录。 Python setup.py bdist wheel.
TOTAL PAGES IN THIS WEBSITE
20
Friendly Link - JoyChou's Blog
http://www.joychou.org/index.php/friendly-link.html
The Road Less Traveled. Hash Length Extension Attack. ISCC CTF 2014 Writeup. ECSHOP v2.7.3后台代码执行漏洞getshell分析. WDCP add user.php任意数据库添加任意用户导致任意命令执行漏洞分析. Int i = 0.
TOTAL LINKS TO THIS WEBSITE
1
Through The Lens
Saturday, April 07, 2012. 1st though. Remember Cha Time? That little asian tea place that we found the day before? Remember how much we loved it and i vowed we would return? Priorities first right, i mean why walk around on a hot day if you don't have a delicious iced green tea thing infused with other fruit flavor goodness to make life bearable. So yeah, Cha Time in hand and we were off to Bondi! How dare you sir? What gives you the right? Links to this post. Thursday, April 05, 2012. Links to this post.
Fluxtream Blog
Money Matters. Or Not. Last week, my wife and I organised the second edition of the Brussels Meetup on Complementary Currencies. It’s a fascinating subject. As a short and simplistic primer, just think of a complementary currency as a combination of:. A specific community;. A means of exchange;. A need that is not addressed by the official currency;. Our connected and mobile devices are pointing us to new kinds of such resources every day. The combination of the URL, “Unified. But sometimes monetization ...
Fluxtream Blog Blog
Our next release (1.1.3) will introduce Heat Maps in the Map tab. Showing paths as we’ve always done is of course very useful but can be confusing when looking at a week’s or a month’s worth of data. You can now choose to see a heat map in place of the traditional paths rendering. Your heatmap preferences will be persisted on a time unit basis which means that if you checked the Heatmap checkbox as you were checking your data for a month, you will continue to see heat maps for monthly data. Note that the...
fluxusbrand.com
For more information about this domain, click here. X4E2D;古ドメイン. X304A;問い合わせは こちら. The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois).
Fluxx | Philanthropy and nonprofit technology news.
Nonprofits: How Data Helps You Get Better at What You Do. Posted on August 14, 2015. I’m just going to come right out and say it: data is here to stay. Whether you can’t wait to crunch numbers, or you avoid metrics like the plague, you can’t deny that data helps your nonprofit do better work. Data measures progress: It tells you if you’re working in line with your mission; if you’re providing all you can for your beneficiaries; if you’re making the most of your grant dollars. You guessed it: data. For ex...
fluyy's Blog
Wheel egg 与 tgz. 给定有n个整数(可能为负整数)组成的序列a1,a2,.,an,求该序列连续的子段和的最大值。 Try: with open(filename,'r') as filea: do process() except IOError as e: print e.strerrpr. Md5是一种消息摘要算法,它能够将输入的任何数据经过运算产生128 bit的hash值 这个hash便是这段消息的摘要 一般情况下,md5产生的消息摘要发生碰撞得可能性很低 还是存在的 ,所以人们常用通过对比经md5运算后摘要 来验证一段消息的完整性. 打印当前的行号 a text #将text添加到新行里去 i text #将文本插入到新行里 r filen. D #排序时忽略行前面的空白,从第一个非空白的地方开始比较 -f #忽略字母的大小写 -i #忽略不可打印字符 -n #根据数字的大小进行排序 #比如说 666和1000 默认的排序结果是1. Cat -n filename #输出信息加上行号 -b 的作. 网络上随时都流通了大量的数据包,我们要想实现抓包,并分析的,那么该怎么做呢?
FLVCD官方博客 | 记录您和我们一起走过的点点滴滴……
2018 年 1 月 30 日. 下不了B站视频的童鞋请到这里下载最新的压缩包 http:/ app.flvcd.com/flvcd-180107.zip. 2017 年 4 月 7 日. 硕鼠0481测试版-1 安装包可以下载了, 解决B站限速问题与BTV下载问题, 后续正式版将支持多个直播网站解析与下载,感谢大家的支持. Http:/ app.flvcd.com/bigrats setup 0.4.8.1beta1.exe. 2015 年 4 月 10 日. 2014 年 11 月 29 日. 下载地址: http:/ download.flvcd.com/setup/bigrats setup 0.4.7.9.exe. 2 支持英文,繁体系统的自动合并,并修正多个地方的乱码. 2014 年 7 月 6 日. 2013 年 12 月 24 日. 新增支持城市联合网络电视台解析,网站地址 http:/ www.cutv.com. 示例地址 http:/ www.cutv.com/yule/2013-12-24/1387846144650.shtml. 2013 年 11 月 25 日.
Flvorful Bloggage | bloggage with some flavor
Bloggage with some flavor. Flvorful Open Source Projects. EasyHTMLTags: A new jQuery library to create HTML tags easily. In jquery is a tedious and, quite frankly, boring task. Coming from a Rails web development background, I always wanted a way to create HTML. Like Rails does, with a content tag method helper that can take attributes as has and be passed function blocks to quickly generate HTML. Within ruby. This is where the inpsiration for EasyHTMLTags comes from. Let’s just dive in. Module, so you c...
The Virtual Voice | by Florida Virtual School
About The Virtual Voice. Return to FLVS.net. About The Virtual Voice. Return to FLVS.net. 6 Things to Think About When Starting High School. On March 15th, 2018. One of the most important times of a student’s life is the transition from middle school to high school. Students often ponder important questions about high school, such as:. What should I wear the first day? How can I get into PE with my best friend? How am I supposed to get from one side of the campus to the other in two minutes? National Gra...
Flwrs & Mtn | ,,Wenn die Dose weg ist, ist der Weg das Ziel"
Der erste Punkt (das Schreiben über das Großevent) hat sich in jedem Fall für mich auch soeben erledigt, denn diesen Job hat dankenswerterweise Micha von GeocachingBW. Übernommen. Der Artikel spiegelt auch meine Bedenken bezüglich des Megas wieder, weshalb ich mich hier mit der Verlinkung begnüge. Nicht nur) Neue Blogs und Youtube-Kanäle für T5-Kletterer. 8211; Blog und Youtube-Kanal in einem. 8211; einer der T5-Pioniere; leider seit 2012 inaktiv. 8211; der neue Blog von Blacksafe/der KSE. Gänzlich ̶...
彩虹海是我哒 - 冯小贤
January 7, 2017. January 7, 2017. January 7, 2016. 我记得我当时更改了关键词搜索出了一个页面,其实我是不报什么希望的,准备换回自己觉得还算熟悉的apache,谁知道一试可以了,真是他么的一个激动( o )/ 啊,内心无数头草泥马奔腾。 December 17, 2015. 已成功在阿里云上备案,我入坑了 ,备案时间感觉在预料之中吧( `ω )。 首次备案 2015-12-01 18:53:17 提交初审. 提交管局审核 通过 2015-12-17 15:11:59 通过. 湖北管局还是工作效率蛮高的,预计12天完成,一个星期就好了( y ) * 现在我底部栏出现了一串奇怪的数字( ε:). January 7, 2015. 如果您看到这篇文章,表示您的 blog 已经安装成功.