VICTORIAHONG.COM
Victoria's BlogWelcome to Victoria's personal page.
http://www.victoriahong.com/
Welcome to Victoria's personal page.
http://www.victoriahong.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
0.5 seconds
16x16
32x32
64x64
128x128
160x160
192x192
256x256
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
10
SITE IP
151.101.40.133
LOAD TIME
0.519 sec
SCORE
6.2
Victoria's Blog | victoriahong.com Reviews
https://victoriahong.com
Welcome to Victoria's personal page.
victoriahong.com
Victoria's Blog
http://victoriahong.com/page/2
Algorithms Part I Week 2. May 06, 2016. Stacks and Queues and Elementary Sorts. For stack, push pop. Each operation cost constant time in the worst case. Extra time and space to deal with the link. For queue, enqueue dequeue. Each operation cost constant amortized time. May 02, 2016. My A to Z. Help yourself with these cookies. Apr 29, 2016. OOD for Blackjack game. Bittiger 硅谷之路 44 and 45. Apr 29, 2016. How to write crawler code and how to improve it step by step. Algorithms Part I - Week 0 and 1.
Category: Life - Victoria's Blog
http://victoriahong.com/categories/Life
May 14, 2016. May 08, 2016. Use an ios app named Paper. To draw a favicon for my blog. lol. Hope you enjoy it :). Remove background from images. Page 1 of 1. Master student at CMU. Foodie and Programmer and Fashionista. Looking for full-time position @Bay area. Mountain View, CA.
Bittiger 硅谷之路 9 - Victoria's Blog
http://victoriahong.com/2016/05/Bittiger-硅谷之路9
May 12, 2016. 深入浅出 Google File System. Google 三篇论文 Google File System, BigTable, MapReduce. Disk 有一部分存文件的 metadata,包括文件属性 name, createdTime, size 以及索引。 一个 block 大小为 1024 bytes。 Store a Big File. 一个 chunk 大小为 64 MB。 等于 64K 个 block。 Advantages: less metadata; less data flow. Disadvantages: small files waste space. Store supper big file. 索引放在 master 设备上,记录 chunk server 和 offset。 Disadvantages: chunk server 的变化要通知 master。 Solution: master 不记录每块数据的 offset,只记录在哪个 chunk server 上。 每个 block 存一个 32 bit 的 checksum。
Bittiger 硅谷之路 10 - Victoria's Blog
http://victoriahong.com/2016/05/Bittiger-硅谷之路10
May 12, 2016. Table = a list of sorted. A big table = a list of tablets. A tablet = a list of sorted. A tablet = memTable a list of smallTables. 写入 memTable 的同时,写入硬盘内 tableLog。 A tablet = memTable a list of smallTables log. 写策略造成 需要查找所有的小小表和memTable, 很慢. Share on Google Plus. Master student at CMU. Foodie and Programmer and Fashionista. Looking for full-time position @Bay area. Mountain View, CA.
Resume -- Looking for Software Engineering Position! - Victoria's Blog
http://victoriahong.com/about
Resume - Looking for Software Engineering Position! Aug 22, 2016. Master student at CMU. Foodie and Programmer and Fashionista. Looking for full-time position @Bay area. Mountain View, CA.
TOTAL PAGES IN THIS WEBSITE
19
A Primer to System Administration - Users and groups | Wilbeibi Blog
http://wilbeibi.com/2014/08/2014-08-08-SysAdmin
The trick, William Potter, is not minding that it hurts. A Primer to System Administration - Users and groups. How to create a user. How to create a group. How to add a user to a group. How to list all users in a group. What is sticky bit. What is sticky bit looks like. How to set it. How to set it. And it is dangerous. How to create a user. Useradd -m -d HomeDir -g Group username. It’s optional to specify the new user’s home directory and group, but I strongly suggest to do so. Stands for create home,.
我为什么要编程 | Wilbeibi Blog
http://wilbeibi.com/2015/02/2015-02-06-whyiwrite
The trick, William Potter, is not minding that it hurts. 30% 以上的人有优异的数学 参加过中学数学竞赛等 或者算法 ACM, OI 背景。 How to delete nodes of linked list with pointers-to-pointers (Chinese). And Theme by Jacman.
How to deal with Git A-Z? | Wilbeibi Blog
http://wilbeibi.com/2014/07/2014-7-21-gitAtoZ
The trick, William Potter, is not minding that it hurts. How to deal with Git A-Z? How to modify file and update to remote repository? How to change last commit? How to delete files in remote repository? So, what if files conflict after git pull (auto merge failed). How to overwrite, rather than merge, one branch from another. How to delete a branch? How to roll back to a specific commit? What is commit -a? How to git ignore something except a certain file? How to clone a specific branch. Or, just type.
A Primer to System Administration - About SSH | Wilbeibi Blog
http://wilbeibi.com/2014/08/2014-08-29-SysAdmin3
The trick, William Potter, is not minding that it hurts. A Primer to System Administration - About SSH. How to generate key pair? Make an alias of the connection. When we talk about SSH, we are usually referring to OpenSSH - a FREE version of the SSH connectivity tools. As their official website said:. Is one of the most used commands for programmers (Windows users, you have putty, that’s not bad). In this post I am going to list some most basic usage of. How to generate key pair? At last, add your key to.
Wilbeibi Blog
http://wilbeibi.com/page/2
The trick, William Potter, is not minding that it hurts. A Primer to System Administration - About SSH. Basic usages of ssh. Tested on Mac OSX 10.9.4, OpenSSH 6.2p2. A Primer to System Administration - Know Thy System. A collection of commands for checking system information and performance. Tested on Ubuntu 14.04. A Primer to System Administration - Users and groups. Just some examples, no big deal. Tested on Ubuntu 14.04. How to deal with Git A-Z? A personal Git FAQ. Scrape data the right way Part:1.
找出编辑距离不大于 K 的单词 | Wilbeibi Blog
http://wilbeibi.com/2015/05/2015-05-09-K_edit_distances
The trick, William Potter, is not minding that it hurts. 关于 edit distance 的一道题. 关于 edit distance 的一道题. 最近看到一个很有意思的面试题 给一个单词和一个字典,找出字典中所有和给定单词编辑距离不大于 k 的词。 我们知道编辑距离是二维 DP,时间复杂度为 $O(L 2)$,其中 L 为每个单词平均长度,则总时间复杂度为$O(NL 2)$, N 为字典中词的个数。 基于 知乎 Lee Shellay的回答. 可以通过构造 Trie, 结合 DFS,来解决这个问题。 Check fuzzy(trie, word, path, tol). 匹配当前字符,有两种情况 匹配,那么直接递归下一层 不匹配,可能是字母不一致或者是 word 已经结束 这个情况很容易被忽略 ,需要 tol 减一后递归下一层。 这里和知乎回答里的不一样,那里是枚举了26个字母,其实只要枚举当前 tree 的所有节点字母就行了 Jayxon 大牛想到的。 Trie = {}. T[c] = {}. T[END] = {}.
2015 年部分计划 | Wilbeibi Blog
http://wilbeibi.com/2015/01/2015-01-27-plan
The trick, William Potter, is not minding that it hurts. Deadline driven development 是最有生产力的。 读书,Peter Thiel 的 Zero To One , 王兴推荐的 Resource Revoution , 朴灵大大的 深入浅出Nodejs ,还有王力的 中国古代文化常识。 A Primer to System Administration - About SSH. And Theme by Jacman.
A Primer to System Administration - Know Thy System | Wilbeibi Blog
http://wilbeibi.com/2014/08/2014-08-10-SysAdmin2
The trick, William Potter, is not minding that it hurts. A Primer to System Administration - Know Thy System. You may Also interested in. To get system information:. For print all the information. To print the number of processing units available (GNU coreutils):. To display CPU architecture information (util-linux). Is a powerful command for displaying system disk. Are also pretty handly solutions to check the partitions and mount disks. Just as same as disk,. Alternatively, you can type. And PID field,...
How to delete nodes of linked list with pointers-to-pointers (Chinese) | Wilbeibi Blog
http://wilbeibi.com/2015/02/2015-02-12-2D-pointer
The trick, William Potter, is not minding that it hurts. How to delete nodes of linked list with pointers-to-pointers (Chinese). 我在用C 写 Leetcode中 Remove duplicates from linked list II 一题时,看到别人的一份代码,感觉写法很有趣,细细研究了一下。 Suppose we have a linked list "1- 2- 3", we want to delete the. Second node, remains "1- 3". ListNode * p = &head, *succ;. P = &(*p)- next;. Succ = (*p)- next;. P) = succ;. Ptr = ptr- next;. P) = (*p)- next;. P = &(*p)- next. Colorizing Loggers - A simple practice of decorator.
Producer consumer problem in coroutine | Wilbeibi Blog
http://wilbeibi.com/2015/03/2015-03-02-coroutine-producer-comsumer
The trick, William Potter, is not minding that it hurts. Producer consumer problem in coroutine. Producer and consumer problem. Reference and Recommended Reading:. As the name implies, coroutine refers to co-operative routine. It allows you to suspending and resuming execution at different locations. So, it’s essentially just context switching. Not surprisingly, coroutine is implemented in primitives like setjmp/longjump or ucontext in low level. Producer and consumer problem. Cr = func(*args,* kwargs).
TOTAL LINKS TO THIS WEBSITE
10
Victoriahometeam.com
Die Psychologie von Und bis zu Ich
Die Psychologie von Und bis zu Ich. Den Menschen zu vergessen. Die Erziehung der Teenager. Um glücklich zu werden. Wie dem Neid zu entgehen. Wie die Kränkung zu verzeihen. Wie die Stimmung zu heben. Wie zu lernen psychologisch. Den Menschen zu vergessen. Die Erziehung der Teenager. Um glücklich zu werden. Wie dem Neid zu entgehen. Wie die Kränkung zu verzeihen. Wie die Stimmung zu heben. Wie zu lernen psychologisch. Wie die Beziehungen wieder herzustellen. Wie die Beziehungen aufzusparen. Eine beliebige ...
Channeling My Inner Carrie Bradshaw
Channeling My Inner Carrie Bradshaw. Tuesday, February 24, 2015. Tuesday Rants and NYC Celebrity Sightings. Hello beauties, and welcome back to my page. I didn't have any specific post plans for tonight so I figured I'd just write about what's been going on in my life lately. Exciting, I know! Pretty, ain't it? I've been itching to go to NYC so bad lately, I miss my beautiful city. Like I'm literally having withdrawals. as pathetic as that sounds. Lol! I think the last time I was there was two months ago...
Victoria Honeywood | Craft, Travel, Family, Romance, Life & More
Fun Facts about Wedding Cakes. Friday, 24 July, 2015. Wedding cake decorated with pink rosebuds. Wedding cake made of individual cupcakes. But maybe this isn’t such a detour from tradition. In fact white wedding cakes have only been popular since the 19th century when Queen Victoria had a white wedding cake in keeping with her white wedding dress. Until then, silver had been the popular dress colour for royal brides. Click here for a link to an illustration of Queen Victoria’s Wedding cake. Later on in h...
Victoria's Blog
Aug 08, 2016. Depends on order of items. Probabilistic guarantee also depends on order of items. Best for tiny STs. Slow for large STs. Optimal search and space, order-based ops. Easy to implement, order-based ops. No guarantee space for links. Optimal search and insert, order-based ops. Fast search/insert for common types of data. Need hash for each type, no order-based ops, space for links/empty. May 16, 2016. Tech Words You Should Know. The goal is to remember what it is and why use it. May 14, 2016.
The Victoria Hoogies | Just another WordPress.com site
Just another WordPress.com site. Stay updated via RSS. Somewhere Between the Earth and Sky. A Symphony in Dondon. Posted: December 17, 2016 in Haiti. 8220;A leaky roof can fool the sun but not the rain.”. For we North Americans, a storm of this magnitude is, at best, a nuisance. Remember the great ice storm? The summer of tornadoes? Or how about the flooding of biblical proportions that left so many of us under water? Following this relief stage are the reconstruction, development and investment aspects ...
victoriahooper-duckham.com Illustration, greetings cards
Contact Us
If you are the owner of this site, please contact us. As soon as possible.
Victoria Hopkins - Home
Iam Extremely Proud to be a member of the. We believe creativity, community, education and of course, the arts are essential to the future prosperity of this great country. Investing in the Australian people today is the best way to create a brighter tomorrow for us all. The Arts Party is Australias youngest federal party and was formed to give the parliaments of Australia a good hard kick up the Arts. Only by creating a political voice can the Arts have any political influence. What Victoria is upto now?
Victoria Hopkinson Photography, Wedding Photographer, South Africa
SOCIAL ENGAGEMENT