blog.edfward.com blog.edfward.com

blog.edfward.com

edfward's blog

Three Versions of Judas 读后. 我的 Yelp Bookmark Map. 啊,笨 趣题 Linked List Cycle. Python Module of the Week - virtualenv. Python Module of the Week - lxml. 爆肝 Naive Bayes Classifier.

http://blog.edfward.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BLOG.EDFWARD.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

July

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.2 out of 5 with 16 reviews
5 star
7
4 star
5
3 star
4
2 star
0
1 star
0

Hey there! Start your review of blog.edfward.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.2 seconds

CONTACTS AT BLOG.EDFWARD.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
edfward's blog | blog.edfward.com Reviews
<META>
DESCRIPTION
Three Versions of Judas 读后. 我的 Yelp Bookmark Map. 啊,笨 趣题 Linked List Cycle. Python Module of the Week - virtualenv. Python Module of the Week - lxml. 爆肝 Naive Bayes Classifier.
<META>
KEYWORDS
1 edfward s blog
2 我日益贫瘠的精神生活
3 通关了一个游戏,看了一部电影
4 为什么我的字这么丑
5 火车上的读后感
6 中二的我
7 小草生月
8 github 打卡记
9 web 入门小记
10 一些有趣的文章
CONTENT
Page content here
KEYWORDS ON
PAGE
edfward s blog,我日益贫瘠的精神生活,通关了一个游戏,看了一部电影,为什么我的字这么丑,火车上的读后感,中二的我,小草生月,github 打卡记,web 入门小记,一些有趣的文章,再次 手动安装 numpy/scipy,mcmc,lda,文本建模 二,mcmc,lda,文本建模 一,基于 sphinx/coreseek 的全文检索引擎,嘿,kmp,peter norvig 的拼写检查器,racket 和 dp,与虾米签到奋斗的日子 终章,与虾米签到奋斗的日子,mailman 部署记
SERVER
nginx/1.4.6 (Ubuntu)
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

edfward's blog | blog.edfward.com Reviews

https://blog.edfward.com

Three Versions of Judas 读后. 我的 Yelp Bookmark Map. 啊,笨 趣题 Linked List Cycle. Python Module of the Week - virtualenv. Python Module of the Week - lxml. 爆肝 Naive Bayes Classifier.

INTERNAL PAGES

blog.edfward.com blog.edfward.com
1

基于 Sphinx/Coreseek 的全文检索引擎

http://blog.edfward.com/2013/09/04/dailyzhihu.html

用 PHP 和 Coreseek. 由于数据库用的是 MySQL 所以需要 MySQLdb,不要忘了. Sudo apt-get install python-mysqldb. 由于 api 提供的内容格式还是 HTML,所以用 BeautifulSoup. 一个重要的细节就是为了支持之后的中文 indexing, MySQL 的编码一定要是 UTF-8。 可以通过 修改 MySQL 默认字符集. 或者 在 MySQL 里修改表、字段、库的字符集. Lucene 的大名很早就听说过,但是最终还是选择了比较适合 PHP 的 Sphinx/Coreseek 来做中文索引。 首先要了解 indexing 的工作流程 (如果数据源是 SQL 的话). With all the SQL drivers, indexing generally works as follows. Connection to the database is established;. Main query is executed and the rows it returns are indexed;. Sql attr * *.

2

MCMC,LDA,文本建模 (二)

http://blog.edfward.com/2013/10/17/lda2.html

A parallel C implementation of fast Gibbs sampling of Latent Dirichlet Allocation) 的源码,不长,对理解 LDA 很有帮助,但还是要做好花时间的准备。 其实核心算法并不复杂,见如下的 python 伪代码 基本上就是把上一章的算法用伪代码表示出来,就当复习了吧. Init topic labels for every word randomly. Note that same VOCAB has many word POSITIONS. Word topic distribution[w][k] = 1. Generate topic distribution for w. Calculate P(z k W w, z w). Check convergence and post process. 都非常直观,记录每个文档的 topic 分布和每个 topic 的词汇分布,其中. 初始化就不用说了,随机给每篇文档每个词 注意 包括重复词,这里可以看作每个 位置 取一个 topic,并更新两个 model。 当时看这段 co...

3

啊,笨!趣题 Linked List Cycle

http://blog.edfward.com/2014/01/11/list_cycle.html

啊,笨 趣题 Linked List Cycle. 谈谈刷题趣闻最近做 LeetCode 上这两道看起来非常简单的题 Linked List Cycle. 和 Linked List Cycle II. 第一个问题就是检查一个链表里有没有循环,第二个稍微变种了一下是找到在哪里循环的,要求不用额外的存储 就是说不要用 hash map。 我记得当时很晚了,看到这道题之后就上床开始和室友们侃大山,边扯边想边蹬脚,后来想不出实在憋得不行就用手机去论坛上看了讨论,发现了一个 fast/slow runner 的解法实在神妙莫测,顿时来劲儿就着手机写了代码然后提交。 算法特简单 一个 slow runner 一次跑一步,另一个 fast runner 一次跑两步,如果相遇就说明有环。 想了10分钟后,不甘心地拿出了纸和笔开始列方程 20分钟后开始冒冷汗 30分钟后有了掀桌的冲动 1个小时后颓然地放下笔,打算出家当和尚,龙泉寺是没指望了,去个山里的小寺庙还是会被收留的吧。 有以下事实 s 代表 slow runner, f 代表 fast runner. K 1-[k 1-h%(k 1)]=h%(k 1).

4

Python Module of the Week - virtualenv

http://blog.edfward.com/2014/01/08/pymotw_virtualenv.html

Python Module of the Week - virtualenv. 先看一下为什么它要解决的问题 来自 官方的 documentation. The basic problem being addressed is one of dependencies and versions, and indirectly permissions. Imagine you have an application that needs version 1 of LibFoo, but another application requires version 2. How can you use both these applications? Or more generally, what if you want to install an application and leave it be? Also, what if you can’t install packages into the global site-packages directory. Virtualenv MYENV # or.

5

为什么我的字这么丑

http://blog.edfward.com/2016/06/13/exercise_03.html

Http:/ babel.soimort.org/about/. 非常精致的排版, MACBETH 和 いろは歌 的效果好得令人诧异。 都是久远的往事了 我想起了小时候的庞中华字帖和少年宫书法班,被称为 鬼画桃符 的暑假作业和考试作文,以及学生生涯中不同时期语文老师看到我写的字时脸上肌肉的颤动和发自喉咙深处的叹息 大概很早以前就明白了我所拥有的一个他人无法企及的天赋.

UPGRADE TO PREMIUM TO VIEW 15 MORE

TOTAL PAGES IN THIS WEBSITE

20

OTHER SITES

blog.edesky.cz blog.edesky.cz

Blog edesky.cz

U úředních desek nyní zobrazujeme kontaktní údaje. Uživatelům to může pomoci k lepší identifikaci daného úřadu nebo při potřebě úřad kontaktovat. Uacute;daje jsou získány ze seznamu orgánů veřejné moci poskytované Ministerstvem vnitra ČR zveřejňovaných na https:/ portal.gov.cz/portal/obcan/rejstriky/ogd/x-sovm.html. Pro zajištění jejich aktuálnosti je aktualizujeme každý týden. Dopravní značení, omezení a uzavírky. Volby na úředních deskách. Některé dokumenty vyvěšené na &u...Po uplynutí té...U každ...

blog.edevate.com blog.edevate.com

Edevate - Higher Education. Lower Cost.

Create microdegree programs for your organization. Recruit, Develop, and Retain Your Talent. Use our platform to not only create courses, but track and manage learners, and set up e-commerce for additional income. Have your employees take a customized MicroDegree, and put them on the path to gaining relevant credentials in their industry. Engaged Staff Lower Turnover Ability to Attract Great Talent Flexible, Low Cost, Job-Related Training. With the MicroDegree, custom MicroDegree, or individual courses, ...

blog.edeverett.co.uk blog.edeverett.co.uk

blog.edeverett.co.uk

Blog edeverett.co.uk. 8220;MVP” suffers from over exposure. It has lost its original meaning. Like “beta” before it, MVP is often (usually? Used to allow corner cutting with empty promises of fixing it next time. We should be using clear language that is descriptive and has meaning built in. Beta and MVP did mean something. Unpicking the differences is instructive. A […]. 15 Jan, 2017. UX Design isn’t UX. 8 Jul, 2015. UX design isn’t an umbrella. 7 Jul, 2015. UX design isn’t UCD. 3 Jul, 2015. The quickes...

blog.edfat.com blog.edfat.com

i am online

Tuesday, 8 November 2011. I told myself never again. But I lied. Sunday, 30 October 2011. So with bismillahirrahmanirrahim, i step out into space…. Sunday, 30 October 2011. Tuesday, 25 October 2011. Why then should I question the next meeting? Should I not put faith that a new meeting, if nothing else, will enrich me? The heart breaks I suffered should be enough lessons to get me through another meeting, surely? Perhaps this time there won’t be a goodbye. Thursday, 20 October 2011. I dreamt of you today&...

blog.edferrara.com.br blog.edferrara.com.br

Ed Ferrara

Quarta-feira, 12 de agosto de 2015. A BRINCADEIRA DA VEZ. Vocês sabem que meu estilo é trabalhar a personalidade da forma do personagem, independente de suas atribuições heróicas. E quanto mais diversificado e assimétrico melhor. Imaginei uma Carol Danvers como uma pessoa comum, com barriguinha, uns culotes, olhar cansado, tronco curto e baixa. Mas no seu interior ela guarda a mesma pujança heróica de sempre juntamente com seus super poderes. Pelo menos é assim que vejo. Links para esta postagem. Eu era ...

blog.edfward.com blog.edfward.com

edfward's blog

Three Versions of Judas 读后. 我的 Yelp Bookmark Map. 啊,笨 趣题 Linked List Cycle. Python Module of the Week - virtualenv. Python Module of the Week - lxml. 爆肝 Naive Bayes Classifier.

blog.edgarbv.com blog.edgarbv.com

The Linkielist | Linking ideas with the world

Linking ideas with the world. New Android-infecting malware brew hijacks devices and then attacks your wifi router. Posted in January 12, 2017 ¬ 10:33h. New Android-infecting malware brew hijacks devices. Why, you ask? Your router The Register. Because Google is forbidden there, so Chinese Android users are forced to use different app market places than the Play store. KLIC-WIN shows the underground infrastructure of your neigbourhood – in NL. Posted in January 12, 2017 ¬ 10:24h. They discovered that a d...

blog.edgarcornejo.com blog.edgarcornejo.com

Blog Edgar Cornejo - Diseño gráfico, desarrollo web, tecnologia, marketing online, trucos

Diseño gráfico, desarrollo web, tecnologia, marketing online, trucos. Seguridad en la vida diaria. Lo que necesitas saber sobre una página web adaptable. Consejos y recursos para nuestra página web, gifs animados y videos. Seguridad en la vida diaria. Tal vez no lo vimos llegar pero la verdad es que estuvo en nuestras narices. Hoy leí un post acerca de esto y me parece un buen tema para el día de hoy así que modestia parte quisiera daros unos consejos para evitar ser víctimas de los ciberdelincuentes.

blog.edgardelchaar.com blog.edgardelchaar.com

Dr. El Chaar's Blog

Dr El Chaar's Blog. From Dr. El Chaar's Desk. Smile for Your Good Health. April 9th, 2010. Did you know that healthy gums and teeth can lead to a healthier body? My patients are always interested in learning about quick and easy ways to keep their gums healthy, so I would like to start my first blog post with some helpful tips:. For Ultrasonic Scaling Technology. Can remove the tartar above and below the gum-line. 4 Quit smoking and all other forms of tobacco. If you are a smoker, you are more likely...

blog.edgarkhachatryan.com blog.edgarkhachatryan.com

Blog of Edgar Khachatryan |

Blog of Edgar Khachatryan. August 29, 2013. One comment so far. Proudly powered by WordPress.

blog.edgarmirambel.com blog.edgarmirambel.com

Cebu Daily SEO

SEO, Infographics and Social Media Stuffs. Optin Form Optimization Tricks. On March 6, 2015 · 0 Comment. Create a Sense of Urgency Making your visitors believe your offer is available at any time might be the worst thing you can do for your business. Why would they need to sign up now if your offer is still on the table tomorrow? Automatically get Toolbar Pagerank in Google docs Spreadsheet Fucntion. On December 14, 2013 · 0 Comment. Filed in: Link Building. On May 24, 2013 · 2 Comments. By adding the tw...