Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Misiek
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
Misiek
12y ago
She probably registered to a forum or the other portal and she used her email with the same gmail password. And then the data (list of emails and passwords) form a forum/portal leaked. Ask her if she use the one password to all account
2.
▲
by
Misiek
12y ago
I think the most important part of modern web developement are frameworks: JS frameworks: jQuery, AngularJS, BackboneJS CSS frameworks: Bootstrap, Foundation and tons ready-to-use solutions on Github.
3.
▲
by
Misiek
12y ago
thanks for sharing
4.
▲
by
Misiek
13y ago
My productivity tips: - to do lists and pomodoro technique - automate everything what can be automated - delegate everything what can be delegated
5.
▲
by
Misiek
13y ago
btw of "rise in popularity of Ruby on Rails": http://www.google.com/trends/explore#q=Ruby%20on%20Rails%2C%...
6.
▲
by
Misiek
13y ago
Laravel
7.
▲
by
Misiek
13y ago
IE<9
8.
▲
by
Misiek
13y ago
Twitter Bootstrap is the best CSS framework but you mean rather a website with a default theme. There are a lot of themes and templates of Twitter Bootstrap that don't look like Bootstrap, for example on wrapbootstrap.com.
9.
▲
by
Misiek
13y ago
http://www.dzone.com
10.
▲
by
Misiek
13y ago
Any code examples? What did he build?
11.
▲
by
Misiek
13y ago
I always build a site I need and I want to use
12.
▲
by
Misiek
13y ago
You can change an action of the form using Javascript (ie. http://stackoverflow.com/questions/2701041/how-to-set-form-a... ). Spam robots don't emulate Javascript. Users with no Javascript will see the message
13.
▲
by
Misiek
13y ago
how to get the list of urls in this example on http://noodlejs.com/ ? the selector: 'h3.r a' allows only to get the list of names
14.
▲
by
Misiek
13y ago
in your case "fap" means doing bullshit like playing games or reading news. If you want to stop doing bullshit you should train your willpower. "No fap" is not only about fapping but about our weaknesses.
15.
▲
by
Misiek
13y ago
Try http://www.reddit.com/r/nofap
16.
▲
by
Misiek
13y ago
Don't give up. Motivation is a skill that can be trained like a muscle. Don't be afraid to make mistakes but never do the same mistake twice. Learn from other's mistakes. Exercise, I recommed martial arts. Read interesting bo
17.
▲
by
Misiek
13y ago
The limits of my language mean the limits of my world. Ludwig Wittgenstein
18.
▲
by
Misiek
13y ago
I tested many HN clients for Android but this is the best one: https://play.google.com/store/apps/details?id=com.glebpopov.... (Hacker News Droid)
19.
▲
by
Misiek
13y ago
now $30/month (max: $120/month, about 1k visits/day)
20.
▲
by
Misiek
14y ago
Is there an open source script witch scrolling page effect like in Strikingly?
21.
▲
by
Misiek
14y ago
Try Fat Free Famework https://github.com/bcosca/fatfree
22.
▲
by
Misiek
14y ago
I'am also disappointed with Ubuntu (version 10.10 was the best but 12.04 the worst). I wanted to try Fedora but I was reading interesting Fedora 18 Spherical Cow review on HN yesterday: http://www.dedoimedo.com/computers/fedora-18-kde.html
23.
▲
by
Misiek
14y ago
PHP (5.3): echo ((float)(string)(0.3 - 0.2) == (float)(string)(0.2 - 0.1)) ? 1 : 0; 1
24.
▲
by
Misiek
14y ago
Site meteor.com is not indexed by Google because there is no text. Content is generated by javascript and it is not interpreted by Google robot. Website owners should use <noscript> tag.
25.
▲
by
Misiek
14y ago
yes, I put the first salt in database and the second salt under www-root. Hacker who hack the database only will not know the fist salt.
26.
▲
by
Misiek
14y ago
I thought that hashing password with two types of salt (one of them is unique for every user) and two places to storage salts is secure enough.
27.
▲
by
Misiek
14y ago
What is the best way to secure passwords?
28.
▲
by
Misiek
14y ago
but only the second salt is stored in a database, the first salt is stored under WWW-Root.
29.
▲
by
Misiek
14y ago
"salts alone can no longer save you" I use two salts to hash a password: sha1(SALT . SALT2 . $password); the second salt is unique for every user and stored in a database. Why is it not secure?