text
stringlengths 68
776k
| meta
dict |
---|---|
First app for audio transcription base on your mobile and speech recognition - comprobot
https://itunes.apple.com/us/app/agile-dictation-audio-file/id979463309?mt=8
======
comprobot
It is a first app to let people convert the wav, mp3 which more than 3 minutes
to text!
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: Email client alternative to Nylas N1? - sreenadh
I am currently using Nylas N1 and I did see some alternatives last month. I decided to try them after I was done trying out N1. Well, now I cannot find the links and I think my browser messed with my bookmarks ;). So, kindly list the alternatives any of you are aware of. I did check all the links on http://alternativeto.net/software/n1/, but no good.
======
grinich
If you have feedback about N1, I'd love to hear it! :) You can post here or
always email me directly. (I'm the founder/CEO.)
~~~
luctus
Hi! I'm looking for alternatives too, mainly for two issues:
1) I can't insert inline images 2) My emails are not being marked as read in
server, so it's a mess when I go to my iPhone...
~~~
MagisDing
Try Canary Mail [http://canarymail.io/](http://canarymail.io/), snappy and
beautiful. And its slack channel is quite robust (not like Nylas, please
forgive me) although there only two people in its development team.
~~~
grinich
How do you think we could improve the Slack room? We currently have 2253
people there, so it's usually quite busy. It's free to join here:
[http://slack-invite.nylas.com/](http://slack-invite.nylas.com/)
(The mark-as-read issue has been fixed and we're working on shipping support
for sending with inline images. Gmail didn't have this for about the first 6
years.)
------
jharohit
I tried polymail(no imap support for months), Airmail (no link tracking or
read tracking,oddly slows my mac,lot of small bugs, UI felt sluggish), apple
mail(haha - next one), outlook (too skeumorphic on mac + too heavy + no swipe
gestures)
Went back to N1 now - so i guess i am not much help. Sorry mate.
------
thakobyan
I use Polymail and love it so far. It's fast, has a great UI and syncs very
instantly. [https://polymail.io/](https://polymail.io/)
|
{
"pile_set_name": "HackerNews"
}
|
RE42927: System and method for obtaining and using location specific information - caf
http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&Sect2=HITOFF&d=PALL&p=1&u=%2Fnetahtml%2FPTO%2Fsrchnum.htm&r=1&f=G&l=50&s1=RE42,927.PN.&OS=PN/RE42,927&RS=PN/RE42,927
======
caf
Reading through the claims, the requirements for a "beacon" suggest that this
_doesn't_ read on geolocation by IP address. I'm not sure about geolocation by
triangulation from towers that don't specifically transmit information
intended to identify a location.
(As always, read the claims, not the abstract).
|
{
"pile_set_name": "HackerNews"
}
|
BritRuby conference cancelled due to gender equality outrage - relix
http://2013.britruby.com/?hn
======
relix
Apparently the non-profit conference had thus far a 100% white male line-up
and got a lot of negative tweets about that recently. Example:
<https://twitter.com/joshsusser/status/269863520135421952>
|
{
"pile_set_name": "HackerNews"
}
|
How did a business get a .edu TLD? - Gabrielfair
https://www.academia.edu/advertise
======
Gabrielfair
I meant to submit this as an "Ask HN" post.
~~~
detaro
[https://en.wikipedia.org/wiki/Academia.edu#Domain_name](https://en.wikipedia.org/wiki/Academia.edu#Domain_name)
|
{
"pile_set_name": "HackerNews"
}
|
C64 Keyboard Prototype - erickhill
http://www.breadbox64.com/blog/c64-keyboard-prototype/
======
vardump
Keyboard is pretty amazing for C64 preservation efforts. Perhaps lessons
learned could be applied to other same era systems.
There's one part in C64 that's becoming more and more rare — the amazing SID
sound chip.
I wonder whether it'd be possible to have production runs of truly new 6581
and/or 8580 SID chips. Does someone still have the old masks?
Other chips you could emulate with an FPGA. But SID is partially analog, so
it's special. Some say no two SIDs sound the same.
Btw, recent C64 music demo playing off 1 MB Ocean style (= ROM) cartridge (not
REU):
[https://www.youtube.com/watch?v=7qxxnJVU4jQ](https://www.youtube.com/watch?v=7qxxnJVU4jQ)
[https://www.youtube.com/watch?v=UYAf_awh5XA](https://www.youtube.com/watch?v=UYAf_awh5XA)
Yes, it's real. Not particularly good example of SID though, but still
impressive for 1982/83 technology.
But this one does show off SID; C64 "Cubase", realtime DSP (timestretch,
low/high pass filter, distortion, etc.) pretty amazing:
[https://www.youtube.com/watch?v=k4GWheE4Gkw](https://www.youtube.com/watch?v=k4GWheE4Gkw)
~~~
monocasa
> Does someone still have the old masks?
You can probably reverse the masks with a microscope with a little elbow
grease. Not trivial by any means, but doable by someone in a garage as a
hobby.
The real question, does a fab that can work with that process still exist?
~~~
jdswain
There’s an ongoing effort to understand the SID here
[http://forum.6502.org/viewtopic.php?f=8&t=4150](http://forum.6502.org/viewtopic.php?f=8&t=4150)
Lots of interesting analog chip level stuff, it’s all new to me as I’ve only
dealt with things at the digital level, but very interesting to see how the
fabrication technology works in an analog way..
------
ChickeNES
Those acrylic backing plates are going to crack at some point. The author
should look into aluminum composite panel (Dibond is one brand name). It's a
sheet of HDPE plastic sandwiched between two thin layers of aluminum, and is
much stiffer and stronger than acrylic of the same thickness.
------
beamatronic
As a kid all I ever wanted from any computer was this:
Set pixel (x,y) to color (r,g,b)
I wish today’s kids had this with as little overhead as possible
~~~
egeozcan
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.fillStyle = `rgb(${r}, ${g}, ${b})`;
ctx.fillRect(x, y, 1, 1);
I say it's pretty close.
~~~
codeflo
It's pretty amazing to me that in 2018, the way we pass colors to a modern
graphics API is to build a string with comma separated list of the individual
components _encoded in decimal_.
And then people wonder why computers feel slower than they did 15 years ago.
~~~
egeozcan
Legacy APIs for DOM are hard to get rid of, which the Canvas API is based on.
There is some progress though:
[https://developers.google.com/web/updates/2018/03/cssom](https://developers.google.com/web/updates/2018/03/cssom)
------
pault
Those keycaps are gorgeous. If someone could manage to get those manufactured
I guarantee they would fetch upwards of $150/set on a site like massdrop.
~~~
xenomachina
I wonder how much it would cost to get custom keycaps made today with double-
shot top and front legends.
~~~
pault
Ask signature plastics!
[http://www.solutionsinplastic.com/](http://www.solutionsinplastic.com/)
~~~
xenomachina
It just occurred to me that using the Commodore logo probably adds to the
cost, as you'd have to license it from the company that owns the trademark.
(The C64 Mini avoids using the logo, presumably for this reason.)
~~~
pault
There's a set called SA Retro[1] that used the C64 logo; no idea if it was
cleared or not.
[1]: [https://www.geekzone.fr/wp-content/uploads/2015/09/Minila-
Ai...](https://www.geekzone.fr/wp-content/uploads/2015/09/Minila-Air-SA-
Retro-1.jpg)
|
{
"pile_set_name": "HackerNews"
}
|
Problems looking for solutions - olalonde
http://webapps.stackexchange.com/unanswered
======
ultrasaurus
Some of these seem like genuine weekend problems:
[http://webapps.stackexchange.com/questions/6841/is-there-
a-w...](http://webapps.stackexchange.com/questions/6841/is-there-a-way-to-see-
tweets-from-only-people-who-follow-on-twitter)
------
tjsnyder
This is actually a really neat find an an excellent source of inspiration.
------
ambirex
Although, the best problems to solve are you're own problems. Still
interesting to see what people are looking to do.
------
defrex
Perhaps event better: <http://webapps.stackexchange.com/?tab=featured>
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: My Android App - Quotes - europa
https://play.google.com/store/apps/details?id=com.quotes.app
======
zethus
You should consider grabbing the 4.0 UI Kit
|
{
"pile_set_name": "HackerNews"
}
|
Quitting Chrome: Because Google+ - badloginagain
This weekend I made a fairly major change to how I interact with the web- I consciously switched default browsers. Fed up with Google's constant ramming of G+ down my throat, I've decided to hit 'em where it hurts: their marketshare. So I've switched to Firefox, and while noticeably slower, I feel it's a browser I can put more trust into.<p>Google should be employing a strategy of invisible control over how people interact, not forcing a centralized interaction layer on something that is inherently decentralized. They should be quietly creating and controlling channels of communication that I cannot live without. Apply the strategy that grew their search engine to all Google initiatives.<p>Or I will find alternatives.
======
xpose2000
This sounds backwards to me. If anything, you should be quitting Google, the
search engine, rather than their browser. Google can live without you being a
Chrome user, but it hurts them if you switch to Bing or duckduckgo.
~~~
lelandbatey
Yes, but switching to Firefox also hurts _me_ a lot less than switching to
Duck Duck Go.
~~~
jolurox
DDG is great. The instant answers feature is awesome, honestly I prefer it.
~~~
a-nikolaev
Agreed. I have been using DDG for ~two years. Maybe once or twice a week, I
actually ask DDG to search in google (with awesome "!g" or "!img" bang-
commands). DDG works consistently great, and the new DDG is even better, with
auto-completion, images and video tabs. And I'm using Firefox as well.
~~~
mathrawka
Save yourself half the keystrokes!
!img == !i
~~~
Rudism
Huh, and all this time I've been using !gi
You, sir, have just increased my productivity by 33.3%.
------
jmillikin
> Google should be employing a strategy of invisible
> control over how people interact, [...] They should be
> quietly creating and controlling channels of
> communication that I cannot live without.
Wait, what? You don't mind a third party controlling how you interact, but you
hate being _told_ about it?
~~~
sliverstorm
It sounds to me more like, "Make it so good it's indispensable to me, rather
than trying to force me to use it"
~~~
jmillikin
Using Google doesn't require an account of any kind, and a Google+ account is
only required for social features such as posting comments or sharing links.
The launch state of Google+ provided an extremely hostile experience due to
policies such as "one social identity per account" and "use a government-
approved non-ethnic name", but these issues were resolved years ago with the
Pages feature.
------
zobzu
I dont understand when people find firefox noticeably slower. I wonder if
thats related to OSX.
Regardless, I agree with the move 100%. Thanksfully, while Firefox may not be
the best, its very good/useable for everything.
If ever it isnt good enough anymore and there is no other replacement - this
is when we'll really be cornered
~~~
subsection1h
> _I dont understand when people find firefox noticeably slower._
In my experience, people who think Chrome is faster than Firefox never have
hundreds of tabs open.
I like Chrome and I use it for development, but I use Firefox for general web
browsing because it handles hundreds of tabs much, much better. Not only is
Firefox's performance better, but Firefox extensions such Tree Style Tab and
Session Manager are vastly superior to the tab management extensions that are
available for Chrome. For example, I'm still waiting for a Chrome extension
that supports the basic task of appending the current window to a previously
saved session.
~~~
frik
Browsers that use several child processes (like IE, Chrome, Safari/WebKit2)
are faster, have less latency, crashes involve only one tab and the child
processes run with limited OS priviledges ("sandbox") than browsers with only
one process (Firefox, Safari/WebKit1).
Mozilla is working on a multi-process Firefox, one can activate it with a
hidden flag (it is still not production ready, and it will break several old
plugins).
With multi-process browsers one can have hundreds of tabs open for weeks (if
you have enough RAM like 8+ GB).
~~~
azakai
> Browsers that use several child processes (like IE, Chrome, Safari/WebKit2)
> are faster, have less latency, crashes involve only one tab and the child
> processes run with limited OS priviledges ("sandbox") than browsers with
> only one process (Firefox, Safari/WebKit1).
It's more complicated than that. For one thing, "have less latency" is often
the opposite: a keypress in a multiprocess browser has to travel from the
user-facing process to the child process, then the effects have to travel
back. In a single-process browser, there is no need to cross that boundary
back and forth. You can see this in action in games for example, where you can
sometimes see more input lag in multiprocess browsers.
Regarding speed, depends how you define it. Definitely multiprocess gives you
responsiveness - one slow tab doesn't slow down the others. But throughput,
not necessarily.
Overall though, multiprocess is a good thing. I'm just saying it isn't a win
across the board, like everything it has downsides.
------
adamconroy
I've done the same.
I use gmail a lot, I have an Android phone and I was using desktop Chrome for
years. However I started to notice things that worried me, for example I would
be using Chrome on my PC but definitely not logged into Gmail / Google+, then
I would see that my recent google searches from the desktop Chrome would
appear in my recent searches list on Android within seconds. I could somewhat
accept that if I was logged in to Google, but I don't accept that if I am
logged out.
On one hand the functionality is pretty impressive, on the other hand my gut
feeling is they have gone too far.
~~~
jmillikin
Chrome logins are separate from Google web logins; go into your Chrome
settings and sign out.
------
mark_l_watson
I switched browsers for a different reason: I installed OS X Yosemite beta and
it seems like the Safari browser uses far less COU resources, noticeable by
longer battery life.
~~~
demallien
My apologies for the off-topic, but I wanted to ask how you are finding
Yosemite - is it stable enough for me to switch over my dev machine?
~~~
liviu
Yes, is pretty stable on my old MacBook white. The only thing that crashed was
Xcode Playgrounds.
You also will see some pixelated rounded corners for some contextual menus...
but hey, this is beta.
[http://i.imgur.com/IMys5f6.png](http://i.imgur.com/IMys5f6.png)
~~~
wyclif
How are you running Yosemite on a white MacBook? Is it a 4,1 2008-ish MacBook
that maxes out at 4GB of RAM? Just curious, because I have one of those but
I'm still running SL on it because I figured Mavericks would be a dog.
~~~
liviu
I have a MacBook White Unibody (13-inch, Late 2009) with 8GB of RAM. This have
a 64-Bit architecture and I can run the latest OSX without any problems.
[http://support.apple.com/kb/sp579](http://support.apple.com/kb/sp579)
~~~
y4mi
> two SO-DIMM slots support up to 4GB
... confused
~~~
liviu
I think the reason Apple specified 4GB is max is because four years ago there
were not any 4GB sticks for testing and Apple does not retest years later for
a discontinued product.
[http://i.imgur.com/CKbdu6c.png](http://i.imgur.com/CKbdu6c.png)
------
quotient
I don't understand why Chromium isn't a more popular alternative to Google
Chrome. It's the open-source basis of Google Chrome. It runs noticeably faster
than Firefox, while being similarly trustworthy. It's a great browser,
available on all conventional operating systems. What's not to like?
~~~
jmillikin
Chromium doesn't have stable builds, and the official snapshot binaries don't
auto-update. This isn't so bad if you're using an OS with a package manager
such as Debian, but it makes Chromium completely impractical for Windows and
MacOS users.
------
mikeratcliffe
Firefox is faster these days. If you find it slower then you probably have
addons that are slowing things down.
Try disabling your addons and enable them one by one to find the culprit.
------
WWLink
Make sure to turn off things like the google autocomplete thing in the address
bar then, because firefox does that too. I was surprised, looking at wireshark
lol.
------
asaddhamani
I switched from Chrome as my default browser after two years of using it just
two months back. Sometimes Firefox isn't able to render certain websites and
rather spits out the html, but aside from that, I haven't had any issues. I
think it works noticeably faster for me. I use it on both OS X and Windows,
and it works great on both. It is also a lot more customizable and lets me run
my own sync servers.
~~~
adrusi
I find the problem you mention very odd. I've used Firefox for over a year and
have never seen anything like that. Is it possible that you have some
configuration messing it up? Otherwise all I can think of is that the sites
are sending html content with the Content-Type header of "text/plain" and
Chrome is deciding to render it as html based on other clues (which would be
non-standard behavior).
------
tritium
Google should be employing a strategy of invisible control
Uh, no thanks. I'm not interested in being controlled by anyone, and I chafe
at the idea of any corporate strategy that attempts to do so.
------
dibbsonline
I simply don't use Chrome because it is a closed source browser from an
advertising company.
------
Errorcod3
I've tried chrome/mozilla, and did not like either.
I use Opera and highly suggest it!
Issue I had with chorme is when I would open up a new tab it would flash to a
white screen quickly before loading the background image of my home/speeddial
page.
------
jolurox
I am using Safari because it's faster for multi tabbed browsing and I can use
WebKit's "FTL" JavaScript JIT compiler.
------
meira
Well, what is the point so? You're dropping Google Chrome because you think
google should control you more?
------
krato
I would switch if I could find a way to use multi-user profiles. Is there a
way to do this with Firefox ?
~~~
e15ctr0n
You can create several profiles and even run them simultaneously. Each profile
can have its own collection of bookamrks, add-ons, etc.
[http://www.makeuseof.com/tag/firefox-profiles-run-
multiple-f...](http://www.makeuseof.com/tag/firefox-profiles-run-multiple-
firefox-profiles/)
------
b00tbu9
I have switched once my laptop started lagging when Chrome is opened. Even
mouse pointer stopped moving.
------
Lidador
Iron browser = Chrome without Google.
------
ASneakyFox
Opera = chrome - google
------
metastart
Try EpicBrowser.com -- built on chromium but designed to protect your privacy
with everything Google ripped out.
~~~
lh7777
I like the idea, but I'll wait until they publish the source.
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: Freebie finding site using interesting algorithm - tectonic
A little while ago I built an automated website that finds free stuff while filtering out scams. It works in an interesting way. Most freebie sites on the web contain a mix of real, useful free stuff and scammy affiliate and pyramid schemes. I realized that affiliate links are always unique (because they need to contain an affiliate code) while real freebies have URLs that co-occur across multiple sites at roughly the same time. I wrote a crawler in Perl and MySQL that looks for repeating, off-domain URLs that temporally cluster on multiple free stuff sites. I was surprised and pleased to find that this trick eliminates affiliate links with almost 100% success and tends to find real freebies. I then let users rate freebies and provide category and description information.<p>Here's the result: http://absurdlycool.com<p>Do you folks have suggestions about how I could make the site more useful? I recently worked on a redesign, but I'm a programmer, not a graphic designer :)
======
ideadude
Never new how this actually worked. Thanks for sharing. I hope others have
some good suggestions.
------
todd3834
linkable: <http://absurdlycool.com>
------
suking
99designs.com fast
~~~
tectonic
Does it work pretty well?
~~~
suking
yes
|
{
"pile_set_name": "HackerNews"
}
|
Falluja’s Strange Visitor: A Western Tourist - soundsop
http://www.nytimes.com/2009/02/07/world/middleeast/07falluja.html?hp
======
jacquesm
this so reminds me of Terry Pratchett...
Amazing story, not too sure what the hacker link is but I found it a quite
interesting read, thanks for sharing!
|
{
"pile_set_name": "HackerNews"
}
|
Samsung Announces TecTiles, Brings Programmable NFC Tags to the Masses - kul
http://www.droid-life.com/2012/06/12/samsung-announces-tectiles-brings-programmable-nfc-tags-to-the-masses/
======
sturmeh
... or you could get them here: <http://www.tagstand.com/> for a third of the
price and use an app that ties in with the existing profile infrastructure
like tasker.
~~~
kul
thanks. kul from Tagstand here. Submitted this to see what HN had to say.
We've been working on NFC Task Launcher
([https://play.google.com/store/apps/details?id=com.jwsoft.nfc...](https://play.google.com/store/apps/details?id=com.jwsoft.nfcactionlauncher))
for a while now, which is similar to this Samsung app.
~~~
ben1040
This tool is great. I have an NFC sticker on my nightstand lamp now so when I
trigger it, my ringer/notification volume goes to zero, alarm volume goes way
up, and I set an alarm to wake up the following morning.
I used to be really sloppy at muting the phone at night and this cures that.
My wife is a light sleeper and I can now make sure I am not waking her up at
stupid o'clock in the morning when I get an email overnight.
I bought a bunch more tags from Tagstand and I am looking forward to finding
more stuff to do with them.
------
51Cards
Simple use... two of these by the door would make my life easier.
Going out: turn off WiFi, turn on GPS, Bluetooth, turn up the ringer volume
and screen brightness, etc.
Coming in: do the reverse.
Of course I can make it even easier with On{X} and trigger the same on
detection of my home WiFi network (other than turning off WiFi of course)
~~~
gojomo
When you lose the home Wifi signal, do the 'going out' actions (including turn
off Wifi). When GPS tells you you're back home, do the 'coming in' actions
(including Wifi back on). Seems even smoother than NFC touchpoints.
~~~
__alexs
That requires running GPS a lot. Better to just look for certain sets of cell
towers. Llama does this on Android already.
~~~
coob
iOS does this with Location reminders. Not editing system settings, but you
can geofence like this.
------
zheng
Its things like this that will hopefully continue the push of automation in
general society. We as hackers have long seen the power in automation, but the
general public sees a computer as something that is powerful, but adds
complexity to their life. Apple does a great job at fighting this image that
technology == complexity, and that's part of why they are successful, IMHO. I
just can't wait until the real wave of automation hits the general market with
force.
------
roel_v
Are these things rfid under another name? If so, what rfid tech do they use? I
have an rfid tag implanted in my hand that I'd love to find a use for in this
context :)
~~~
a-stjohn
As I understand it, NFC is similar to RFID, but RFID provides one-way
communication, while NFC provides two-way communication. Someone please
correct me if I'm wrong.
------
vannevar
How is this different from handing your unlocked phone to a stranger and
telling them to have at it?
------
miahi
The price ($3 each) is huge. Passive RFID tags usually cost less than $0.15.
------
stevejabs
Doesn't ICS out-of-the-box support the majority of what this app is trying to
accomplish?
~~~
omarseyal
Yeah, you could say that. Lots of the features are simply writing uris that
trigger intents. That said, they're selling passive tags for $3 each. The user
who buys that is likely not going to know how that placing a uri on a tag is
easy and free...
|
{
"pile_set_name": "HackerNews"
}
|
PSA: InSight Mars probe is landing in about 8 hours - huhtenberg
https://mars.nasa.gov/insight/
======
huhtenberg
InSight mission homepage -
[https://mars.nasa.gov/insight/](https://mars.nasa.gov/insight/)
Wikipedia page -
[https://en.wikipedia.org/wiki/InSight](https://en.wikipedia.org/wiki/InSight)
Mission Control live stream -
[https://www.youtube.com/watch?v=bGD_YF64Nwk](https://www.youtube.com/watch?v=bGD_YF64Nwk)
(in ~7 hours from now)
|
{
"pile_set_name": "HackerNews"
}
|
Why Do We Need More Wikileaks and Cryptome? - adulau
http://www.foo.be/cgi-bin/wiki.pl/2010-11-28_Why_Do_We_Need_More_Wikileaks_and_Cryptome
======
khatarnaak
DOS Attack on wiki leaks [http://news.blogs.cnn.com/2010/11/28/wikileaks-were-
under-cy...](http://news.blogs.cnn.com/2010/11/28/wikileaks-were-under-cyber-
attack/)
|
{
"pile_set_name": "HackerNews"
}
|
Disney Plus Streaming Service Unveiled - Reedx
https://www.nytimes.com/2019/04/11/business/media/disney-plus-streaming.html
======
Reedx
Bummer, was hoping to see a mention of Studio Ghibli. Would be great to
finally have a streaming option for those. They're the last movies that I
still bother with physical copies for.
|
{
"pile_set_name": "HackerNews"
}
|
Hikikomori - networked
https://en.m.wikipedia.org/wiki/Hikikomori
======
jawerty
Anyone interested in this phenomenon should check out the anime "Welcome to
the NHK."
|
{
"pile_set_name": "HackerNews"
}
|
Talk About Your Startup Idea with Paul Graham - DanielRibeiro
http://www.stanford.edu/dept/bingschool/giving_harvestmoon_2012.html
======
jashmenn
I love how it lists that a lunch with pg has an estimated value of $500. I'm
sure that many in our community would gladly pay 10x+ for an hour of his
advice.
~~~
ckluis
If Paul offered lunches everyday for $500 he could probably have his time
filled everyday.
------
DanBC
I wonder how long it'll take for someone to port PG to AIML?
([http://alicebot.blogspot.co.uk/2012/08/chatbot-battles-
post-...](http://alicebot.blogspot.co.uk/2012/08/chatbot-battles-post-match-
analysis.html))
~~~
bibinou
previously : <http://news.ycombinator.com/item?id=2598026>
<https://github.com/mindcrime/pgbot>
~~~
mion
There's not enough "hummm"
------
magikbum
(Guests must be less than 300 pounds to ride airship.)
\- best line
~~~
thechut
Came here to say this
------
andrewhillman
I think this will go for well over $500.
------
nwenzel
I can guarantee it will go for more than $500. If not to me for what I bid,
then it will go even higher than what I bid... which is a secret. So no one
bid $502, okay.
~~~
hokua
too late =)
------
rdl
The other item: Galapagos Adventure for Two (Item # 425, Donated by: The
Altamirano Family, Hyre Family, Lau/Palihapitiya Family, Sandi Gedeon Ganjavi,
Jennifer Winters, Est. Item Value: $3800) looks pretty fun, too, but probably
less useful to a startup.
------
hokua
What would make more money: Paul Graham lunches everyday for a month at a
lower price or limiting supply to 1 Paul Graham lunch at the coming auction
price?
------
robomartin
My prediction: $50K to $100K
I hope I am right. It's a good cause.
Here's an idea: PG, how about offering a lunch meeting to the HN member who
makes the closest prediction to the winning bid? They would have to post it on
HN and FB or something like that. This serves the purpose of helping advertise
this worthy cause.
~~~
philwelch
And since you're the only one to make a prediction so far, obviously it's in
your best interest as well ;)
|
{
"pile_set_name": "HackerNews"
}
|
Australian startup Magikcraft set world record with 12-year old developers - sitapati
Australian startup Magikcraft, which teaches kids to code in JavaScript using Minecraft, set a world record this week. In partnership with Microsoft and IBM they killed 13,854 Minecraft Zombies using JavaScript lightning in 10 minutes, using the most performant Minecraft system on the planet - 48 physical cores, 256GB RAM.<p>Here's the world record: https://recordsetter.com/world-record/zombies-killed-minecraft-10-minutes-using-javascript-lightning/51109<p>And the engineering behind it: https://blog.magikcraft.io/engineering-a-world-record-at-magikcraft-3b5698f936d5#.vng24n6me
======
death667b
Sweet - That is a heck of a server!
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: Best find-a-cofounder sites? - fjabre
Any consensus on the best sites to find technical cofounders?<p>I've looked around a bit and most of these sites seem very young and/or don't have a lot of a traffic..<p>Any suggestions?
======
nickfromseattle
HN Cofounder Wishlist -
[https://spreadsheets.google.com/ccc?key=0AgCvDTyBjHdOdDFfMEN...](https://spreadsheets.google.com/ccc?key=0AgCvDTyBjHdOdDFfMENqeWVGNVFxTXdnaDZBRkd0cUE&hl=en#gid=9)
reddit.com/r/cityname
------
smiler
Post a comment on this post with a rough idea (and preferred technology) and
contact info. If anyone is interested they'll e-mail you.
------
geekytenny
github.com ....and you get to see what they have been up to!
|
{
"pile_set_name": "HackerNews"
}
|
Tesla's Plan to Buy SolarCity Has Major Flaws - peterkshultz
http://www.nytimes.com/2016/06/23/business/dealbook/teslas-plan-to-buy-solarcity-has-major-flaws
======
greenyoda
Broken URL. Looks like it should have ".html" added at the end:
[http://www.nytimes.com/2016/06/23/business/dealbook/teslas-p...](http://www.nytimes.com/2016/06/23/business/dealbook/teslas-
plan-to-buy-solarcity-has-major-flaws.html)
------
sidcool
If the Wall Street disagrees, the probability of it being a good long term
move is high. As some smart man stated quite wisely, "Wall streeters can't see
past their own shadows, at noon"
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: My dogfooded Bookmarking Site / rss-crawler / ... - NicoJuicy
http://handlr.sapico.me/?SearchTerm=%5BARTIFICIAL-INTELLIGENCE%5D+
======
justboxing
Nice work! Looks like HN / Reddit in terms of functionality and layout.
Really impressed that you've built all the features like RSS crawler,
taxonomy, user and role management etc.
------
NicoJuicy
Side note:
I have been low-level dogfeeding this for a couple of years for personal use (
it was a MVP for a company). It's actually quite usefull.
Things i have included:
\- RSS crawler ( depending on the user that submitted it. Eg. TaglyBot is
mostly the one i used for adding RSS-Feeds)
\- Tag Synonyms/Hierarchy/Administration ( that's why i used the A.I. tag)
\- Comments
\- User Management / Role Management
\- Popular /Upvoted tags
\- You can drag tags to the top, to bookmark them for personal use ( if
loggedin)
\- Url modifiers through prefixes or affixes on the url ( Reason:
circomventing paywalls by using the facebook sharer as a prefix, ... -
Companies mostly use this kind of trick for Social Media)
\- Custom js elements depending on a certain tag ( eg. you can add HTML
through using the HTML tag) - yeah, enjoy screwing me :p
\- Those custom JS elements are generated server using the V8 engine ( for SEO
purpose)
\- generic button / link behaviour ( eg. there's a button to "Post to HN" ). I
posted too much on HN for a while as i found it easier to "Bookmark it to
HandlR", add the tags and then press "Post To HN"
\- There's a private mode that only lists your own votes and submitted items (
not sql optimized though, very slow for now)
\- There's a bookmarklet, so you can drag a URL to the bookmarklet. It will
redirect you to the handler site so you can submit it.
\- If you only add a link, it will fetch the <Title> of the remote site ( easy
for fast submitting)
\- Create alternative url's ( eg.
[http://brugge.sapico.me](http://brugge.sapico.me) for crawling the local
news/ activities related to where i live)
\- ...
It's just a side project, but i just improved the sql index for the many-to-
many relationship for Tags/Items and planned to do a Show HN for fun.
Tech related:
\- Plain old Asp.Net MVC with some jquery and mustache ( for the custom html
elements), a V8 engine as custom javascript view engine and a DDD-layered
application.
I mostly use IQueryable instead of Lists though, for ease of programming.
I ( before i submitted it here) also added a cache for 60 seconds ( hug of
death is expected) and a new post doesn't go to the Newest url now ( since it
would be confusing because of the caching).
PS. HN is amazingly simple though
PS 2. The company went for sharepoint a couple of years ago and very recently
they contacted me again :p
|
{
"pile_set_name": "HackerNews"
}
|
Backdoor SOPA -- CISPA - K_O_G_I
http://act.demandprogress.org/letter/cispa/?akid=1306.1076593.HixRPH&rd=1&t=2
======
kylemaxwell
Totally false. There are no blocking provisions __whatsoever __in CISPA, no
one has any right to the information from ISPs or any other provider or
organization, and it does not supercede other provisions. ("The phrase
"notwithstanding..." is boilerplate language that is not interpreted by the
courts the way a layman might.)
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: I built a referral program for developers, would love feedback - geekjock
Hi everyone,<p>Over the weekend I launched a referral program for my app Pull Reminders (<a href="https://pullreminders.com" rel="nofollow">https://pullreminders.com</a>). Here's a quick summary with two screenshots showing what it looks like: <a href="https://twitter.com/abi/status/1001432164569960451" rel="nofollow">https://twitter.com/abi/status/1001432164569960451</a><p>For some background, Pull Reminders is used by over a thousand developers and has 100+ new developers signing up each week. I've been looking at strategies to reach more potential customers without having to spend money or a ton of time so a referral program seemed like it had potential.<p>There are well-known success stories out there of referral programs designed by consumer products like DropBox, but far fewer for B2B, and almost none that I found which were targeted at developers (DigitalOcean is one).<p>I considered a cash incentive (ie. $25 per converted referral), but developers are well-paid so offering cash seemed like it could actually be a turn off. I considered offering credits, but Pull Reminders is expensed by teams so for an individual on the team this feels like a poor incentive. This eventually led me to the idea of offering free coffee (and tea)–not just regular coffee, but high-end coffee from specialty roasters. It's a generalization but I feel that most developers like coffee, and getting a bag of specialty coffee seems like it could be a fun and novel reward.<p>I have no idea if my approach or design is good so I would love your thoughts and feedback. How can I improve the structure, presentation, or description of my referral program? Is the coffee idea good? Is my copy written well (this was tough – I spent several hours repeatedly tweaking and rewriting)?<p>P.S. Sorry for the long post – I plan on eventually turning my learnings and results into a blog post.
======
tixocloud
Hi there,
Based on your post, I reckon your overarching goal is to acquire more
customers and the tactic you're focused on is a referral program.
But perhaps it might be good to take a step back. Firstly, do you know what
the value of your customers are at the moment and how much will you be willing
to spend per customer?
Referral programs could be a good strategy provided you feel that your
customer also has a potential network to reach out to and you have enough to
incentivize them, which leads back to how much you're willing to spend per
customer.
That being said, have you tested the coffee idea out with your existing
customers? More importantly, have you had a chat with your existing customers
to understand what would get them to refer you to their networks?
The way I'd approach it is to talk to your customers and test out your
strategies (i.e. coffee or otherwise).
Happy to discuss further as I've been involved with designing
loyalty/rewards/switching programs.
------
inputcoffee
It is certainly an interesting problem. I don't know that I have the solution.
I agree with everything you said about the problem around finding a good
reward.
However, coffee drinkers can be picky. It would not motivate me, but then
again I am not sure what would other than the benefit of doing my friend and
the customer a favor.
~~~
geekjock
Thanks for the feedback!
------
jbardnz
Looks really great. As a developer I would be way more motivated by this than
some free credits for my companies account.
How do you handle fulfillment? Seems like it could be a real time suck if it
is manual? Also do you ship internationally?
~~~
geekjock
Thanks for the feedback! Fulfillment - I plan on just manually ordering coffee
to people once per week. If it gets to be too much work that'd be a great
problem to have :)
I do ship internationally, and if for some reason I can't I would send a gift
card instead.
------
saluki
How about an amazon e-gift card based on your plans they get the referral on.
Maybe a minimum of $20, then $50 and $100.
How about a bonus e-gift card every 12 months their signup is a customer.
So if they refer a signup on your $99 plan they get $100 after it is confirmed
and then every 12 months another $100 e-gift card.
I don't drink coffee btw, but I do have an amazon wish list.
~~~
geekjock
I've decided to switch to amazon gift cards!
------
trcollinson
I don’t drink coffee but I know a ton of people who do. I actually really like
this idea and your layout of it. Great job. I’ve also never heard of your
service but I like that too! I’m on gitlab though. Any comment on when you’ll
integrate?
|
{
"pile_set_name": "HackerNews"
}
|
The NSA named one of its top-secret programs Skynet - milesf
https://www.theverge.com/2015/5/9/8577515/nsa-skynet-program-is-real
======
tux
"Google: Rise of the Machines" @
[https://www.youtube.com/watch?v=f1QB9DW_0kM](https://www.youtube.com/watch?v=f1QB9DW_0kM)
|
{
"pile_set_name": "HackerNews"
}
|
NAT Tunneling Without a Third-Party - devbug
http://samy.pl/pwnat/
======
Gys
Earlier (6 years ago!) discussion:
[https://news.ycombinator.com/item?id=1224905](https://news.ycombinator.com/item?id=1224905)
|
{
"pile_set_name": "HackerNews"
}
|
NSA mathematician shares from-the-trenches view of agency's activities. - ohjeez
http://www.zdnet.com/nsa-cryptanalyst-we-too-are-americans-7000020689/?utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer
======
bediger4000
In case "devx's" succint comment isn't clear...
That NSA mathematician writes: _Do I, as an American, have any concerns about
whether the NSA is illegally or surreptitiously targeting or tracking the
communications of other Americans?_
How would you know? Based on everything that your organization has
declassified and released, the NSA keeps its knowledge compartmentalized.
Maybe what you say is true for your compartment, but not for any other. You're
also not supposed to even ask about other mathematician's compartments, right?
Again, how would you know?
Also, Mr Mathematician, you've got a legal obligation, complete with
penalties, to not give out any information. You're legally obligated to lie,
according to Clapper. Why should we believe you?
------
devx
Bullshit. Everything he said.
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN/PG: Leaderboard acting strange? - johns
This morning I was about 100 short of the leaderboard and made two submissions that got me about 60 points. A minute ago I was 95th and the 100th spot was at 3900 but now I'm 98th with the last spot at 4072. Any idea what's up with the fluctuating numbers?
======
pg
I just restarted the server. Users are lazily loaded, so the leaderboard will
look odd for a brief period after a restart.
~~~
ivankirigin
The 'submitted' link on the profile basically doesn't work
<http://news.ycombinator.com/submitted?id=pg>
<http://news.ycombinator.com/submitted?id=ivankirigin>
I suppose it is related to the lazy loading?
~~~
pg
Yes, items are lazily loaded too. Responses to http requests get killed after
30 sec, so if the server has to load too much stuff to satisfy a request, it
will die first.
It's always been this way. After the server has been running for a bit it
stops being a problem.
~~~
ivankirigin
Perhaps you should hide features that are likely going to be unavailable if
the server recently restarted.
No need to send users down a rabbit hole, and certainly no need to waste the
cycles on your machine.
~~~
icey
Or limit it to far fewer results. I click the submissions link pretty
frequently from my own profile as an easy way to check up on conversations on
threads I've started. Now I feel kind of bad for doing it that way.
------
lincolnq
I'd be interested to see what fraction of the leaderboard users' karma comes
from comments vs. stories.
------
bdfh42
And you care bacause?
~~~
johns
Pure curiosity of how it works. That's all. I don't really care either way
where I rank.
~~~
bdfh42
I believe you...
|
{
"pile_set_name": "HackerNews"
}
|
Haptix Lets You Transform Any Space Into a 3D Multitouch Surface - Cpt_Monac
http://mashable.com/2013/08/15/haptix-3d-multitouch-surface/
Edit: The kickstarter available here:http://www.kickstarter.com/projects/haptix/haptix-multitouch-reinvented
======
Cpt_Monac
The kickstarter is available here:
[http://www.kickstarter.com/projects/haptix/haptix-
multitouch...](http://www.kickstarter.com/projects/haptix/haptix-multitouch-
reinvented)
|
{
"pile_set_name": "HackerNews"
}
|
Why I have migrated from Ruby on Rails to Seaside - duck
http://www.codingforhire.com/2010/07/why-i-have-migrated-from-ruby-on-rails-to-seaside/
======
DanielRibeiro
One of the things that troubles me is that even Seaside's creator (Avi Bryant,
who sold his company to twitter recently) mentioned how this way of doing web
apps is old:
[http://python.mirocommunity.org/video/1186/djangocon-2009-dj...](http://python.mirocommunity.org/video/1186/djangocon-2009-django-
is-obsol)
He went overboard and implemented smalltalk in javascript (named clamato):
[http://stackoverflow.com/questions/2116348/does-anybody-
use-...](http://stackoverflow.com/questions/2116348/does-anybody-use-
clamato/3714081#3714081)
~~~
jcromartie
That's a great talk, thanks for sharing. It seems like clean separation
between a JavaScript client app and a server-side data/controller layer is the
way forward.
But I'll still content that web development as a whole is broken, because web
dev is a teetering mile-high tower of abstractions and when something leaks,
it tends to trickle all the way down and stink up the whole stack.
------
swannodette
A great story about the kinds payoffs when you actually take the time to learn
very unfamiliar tools. This drive to learn rich and deep and _unfamiliar_
systems is the source of any real counterforce to the pop culture CS that Alan
Kay talks about.
------
jasonlotito
A post later: Rails to Seaside – Some things I missed from Rails
[http://www.codingforhire.com/2010/11/rails-to-seaside-
some-t...](http://www.codingforhire.com/2010/11/rails-to-seaside-some-things-
i-missed-from-rails/)
------
rbranson
Quite interesting. It does seems most of the advantages of Seaside are from
using the Smalltalk environment. One thing is definitely clear: Ruby needs
much stronger debugging support.
~~~
barmstrong
I use NetBeans to code Ruby and the debugging is great. You can set
breakpoints, step through, set watch variables etc.
I don't have a ton of experience debugging with other languages (prob Java is
the only other one), but what is Ruby missing?
~~~
avibryant
Here's the experience of debugging in Seaside:
1\. You reload a buggy app in the browser.
2\. Oh noes, you hit an error: the browser shows you the stack trace.
3\. At the top of the stack trace, there's a "debug" link: if you click that,
the HTTP request causes your dev environment to pop up a debugger. No response
comes back to the browser yet.
4\. In the debugger, it's as if you had a breakpoint right before the error
occurred: you can walk back through the stack and inspect the state of each
frame, etc.
5\. If you see the problem, you can edit the code - right in the debugger UI -
and hit save. The stack will unwind to whatever frame you are editing the code
in, and restart from the top of that method or block.
6\. As execution continues, the HTTP response finally goes out, and you see
the (newly fixed) web page come into the browser.
As someone noted in another comment: although I was the main developer and
evangelist of Seaside for a while, I no longer use it or contribute to it
(though many others have taken up the torch) but I can't tell you how much I
miss this workflow.
(Edited for formatting)
~~~
cpenner461
From a quick glance this sounds similar to the debugging provided by
paste/pylons? I've only played briefly with pylons so I may be way off
though...
------
mark_l_watson
Although I use Lisp+Ruby+Java for just about everything I do, I do keep an eye
on Squeak and Pharo (hoping for JIT performance someday getting fast like the
commercial VisualWorks product).
I periodically run through a Seaside tutorial - really neat stuff, and very
easy to deploy on Linux servers (I blogged about how to do this several years
ago).
One thing that attracts me to Seaside is that (unfortunately) most of the web
apps I write are low volume sites so I would not have to worry too much about
scaling. I make this same argument for using Rails rather than Java.
~~~
aaronblohowiak
"I make this same argument for using Rails rather than Java." -- JRuby is
pretty cool, no need to choose! It isn't as fast as raw java, but you can
easily swap out the hot paths with java to get additional performance.
~~~
stcredzero
Or, you could pony up for VisualWorks server licences and get even better
performance. (And swap out the hot paths with DLLs implemented in C.)
------
chc
Conceptually, I like Seaside. But I simply can't get past the hideous
abstraction-leaking URL scheme it insists on. They aren't resource locators;
they're session IDs, with all the info stored in the session state. Users
should be able to copy and paste URLs to things. They expect it, and that's
not an unreasonable expectation.
~~~
avibryant
Absolutely true for some apps (and for those apps, in Seaside as in any other
framework you can do the extra work to get bookmarkable URLs). For other apps,
it's nice not to have to worry about this. For example, when did you last
email someone a URL from your Gmail session?
~~~
silentbicycle
That's an excellent example. I've been a bit skeptical about continuation-
based web services, but that makes a lot of sense.
------
nek4life
Interesting but I was constantly distracted by the X bullet points next to the
list items that you liked. Perhaps you could add a class to put checkmark
icons instead when writing an article like this.
------
jcromartie
I'm pitching Seaside as a contender for the platform to build a new app on
tomorrow. I'm completely and utterly sold on it. The experience is really just
unparalleled in the world of software and web development, and I think the
Smalltalk tools it is built on is a huge part of that.
------
kuahyeow
I'm intrigued by Monticello. Is that a source control tool ? Or is it far more
than that. The author seems to alude to Monticello as part of the smalltalk
package.
~~~
cwp
Yes, it's a source control tool. Smalltalk doesn't store source code in text
files, so you can't really use tools like git or svn to version Smalltalk.
Monticello is a DVCS written specifically for versioning Smalltalk code.
------
stcredzero
Is there a current hotbed of Squeak/Pharo/Seaside development? I'm wondering
where I should move in the US?
~~~
mattrepl
There's been an active Smalltalk community in Vancouver, BC. If you want to
stay in the U.S., then Seattle or Portland may work.
------
ghotli
Seaside seems interesting but how is the smalltalk library support? Does it
have a robust way to call libraries in other languages?
~~~
jcromartie
It has FFI, so you can call other libs as long as they are C-compatible.
|
{
"pile_set_name": "HackerNews"
}
|
Worst practices in ad design on iOS - xonder
http://www.pocketnext.com/stories/the-hard-sell/?utm_campaign=jason&utm_medium=twitter&utm_source=twitter
======
elicymet
I agree with near everything in the article, but think even interstitial ads
prove disruptive in a way that I can't get behind. I don't begrudge a game
provider for the use of ads, but think that unobtrusive banner space to be the
most acceptable. Oddly I feel like it goes a long way when ad providers use
language like "thank our sponsors" and have some self-awareness; it's easy to
tell when they've been suckered in by an ad provider to use all their most
annoying API's. Integration of ads that reward you for either clicking or
looking at them are also an interesting idea.
|
{
"pile_set_name": "HackerNews"
}
|
Next generation perovskite solar cells with new world-record performance - upen
http://exactlyscience.com/archives/11845.html
======
DrScump
Blogspam of
[http://news.unist.ac.kr/next-generation-perovskite-solar-
cel...](http://news.unist.ac.kr/next-generation-perovskite-solar-cells-with-
new-world-record-performance/)
with author credit (Joo Hyeon Heo) stripped out. Original has graphics also.
|
{
"pile_set_name": "HackerNews"
}
|
Create a minimal Wiki in Python+Django in 15 minutes (screencast) - danielha
http://www.silverstripesoftware.com/blog/archives/27
======
danielha
This supplements lucks' submission on creating a Wiki with Python+TurboGears
(http://news.ycombinator.com/comments?id=1981)
|
{
"pile_set_name": "HackerNews"
}
|
DadHacker » Blog Archive » Dead Newt - marcus
http://www.dadhacker.com/blog/?p=1120
======
plaes
Ha.. another trick to try out...
|
{
"pile_set_name": "HackerNews"
}
|
Taking PHP Seriously - throwaway-hn123
https://slack.engineering/taking-php-seriously-cf7a60065329#.28p8bbfkj
======
samuellb
Duplicate of
[https://news.ycombinator.com/item?id=12702845](https://news.ycombinator.com/item?id=12702845)
|
{
"pile_set_name": "HackerNews"
}
|
How we improved performance on Google Code - bootload
http://google-code-updates.blogspot.com/2008/03/how-we-improved-performance-on-google.html
======
konsl
These are some pretty basic improvements; this is a more complete list:
<http://developer.yahoo.com/performance/rules.html>
You can also use the YSlow plugin to rate your pages based on the 13
suggestions, etc
|
{
"pile_set_name": "HackerNews"
}
|
A new model of school in Sweden - Misha_B
http://www.economist.com/node/11535645
======
gahahaha
The experiences that were made from privatizing Swedish schools were:
* generally worse results and increased inequality
* 5 companies dominate the market, and makes huge profits
* Sweden has fallen from 3rd to 19th on the PISA test in reading.
* huge quality differences between schools
* schools have become a "sorting machine" where motivated parents and pupils choose certain schools and avoid other schools.
* The experience from Sweden, and research from OECD shows that more competition in school does not produce better results.
~~~
Egregore
Can you provide any links?
~~~
yesbabyyes
On PISA tests:
[http://en.wikipedia.org/wiki/Programme_for_International_Stu...](http://en.wikipedia.org/wiki/Programme_for_International_Student_Assessment#Results)
[http://www.localschoolsnetwork.org.uk/2011/01/why-gove-no-
lo...](http://www.localschoolsnetwork.org.uk/2011/01/why-gove-no-longer-cites-
sweden-as-a-model-for-education-reform/)
Article from Swedish Radio:
[http://sverigesradio.se/sida/artikel.aspx?programid=2054&...](http://sverigesradio.se/sida/artikel.aspx?programid=2054&artikel=4891874)
Report on OECD report:
[http://www.antidotenews.org.uk/?p=628&dm_i=LEV,ACD6,33QO...](http://www.antidotenews.org.uk/?p=628&dm_i=LEV,ACD6,33QOY1,TOTD,1)
Mostly it's in Swedish media, though. And what's been most criticized is the
ability to extract profit from state funds, given that the biggest independent
schools are owned by off-shore VC companies. The situation is similar with
Swedish healthcare.
------
Misha_B
Looks like it's from 2008. I'll be happy to hear from anyone who has a closer
experience with the Kunskapsskolan.
~~~
dwerthen
I actually went to Kunskapsskolan as the equivalent of a High School student.
Graduated in 2005. It work out very well for me, the freedom to go about the
curriculum at my own pace suited me perfectly. The experience of going there
was very much like what you would find at a university. The school demanded a
very high level of motivation and discipline. And this makes it problematic,
since quite a lot of students at that age were ill prepared to face that.
I might be hesitant to say that this reform has worked out well for Sweden as
a whole, as I think for-profit entities in charge of public education is a
step in the wrong direction.
~~~
ivarkotnik
Definitely the wrong direction, because it can go wrong on so many ways.
Myself I am a victim of for-profit education (well, my spouse is), effectively
locked in by contract at a company for 10+ years more. It sounds so good in
the beginning, but once you finish your studies and you stand in front of that
loong walk...
~~~
bokonist
How is your spouse locked by contract for 10 years due to for-profit
education?
------
matbec
It's interesting that no mention was made of the Sweden's extremely poor
policies and record with respect to homeschooling. There has been a lot of
press the past few years over the Johansson family (child seized for being
homeschooled) to the Himmelstrand family (severe fines for homeschooling).
Here is a link to an HSLDA collection of other links that specifically address
homeschooling in Sweden (<http://www.hslda.org/hs/international/Sweden/>).
------
Muzza
The school system in Sweden is many things (despicable, horrendous, etc etc),
but free market it is not. These private schools don't operate on a free
market - the government supplies the "customers" (students) under penalty of
prison* for the students' parents, for crying out loud.
* Or possibly even worse: a student who doesn't go to school is liable to end up in the clutches of the meddling welfare board.
~~~
olifante
I very much doubt that the Swedish school system can be seriously described as
despicable or horrendous, even if it has fallen from its former glory. Would
you care to elaborate?
~~~
Muzza
All mandatory school systems are despicable and horrendous. The first major
issue is the coercion involved: they control a child's life for 9 years (or
even 12 years in some countries). It's absurd. This alone should be reason
enough to dissolve the entire public school system (and possibly put various
Ministers of Eduction to trial).
The second major issue is that they are a tool the state uses to indoctrinate
children (naive by nature) with whatever the correct values of the day are.
Prussia (where public schooling originated) needed obedient soldiers, modern-
day Sweden needs a large underclass of socialists willing to support various
hare-brained political schemes. The schools reflect this. What happens, for
instance, if you call homosexuality "not normal"[1] in a Swedish school? It
gets you an F in biology and a label as a "homophobe" in the state-run
media[2]. One wonders what happened to students who questioned communism in
the Soviet Union.
See "Deschooling society" by Ivan Illich, "Underground history of the American
school system" by John Taylor Gatto.
[1] Which is surely true, statistically speaking.
[2] [http://www.svt.se/nyheter/regionalt/abc/homofobi-gav-
underka...](http://www.svt.se/nyheter/regionalt/abc/homofobi-gav-underkant-i-
biologi)
|
{
"pile_set_name": "HackerNews"
}
|
Why was "goto fail;" added without any other change to that part of the code? - 0x006A
Looking at the diff between the two versions of sslKeyExchange.c released by Apple http://opensource.apple.com/source/Security/Security-55471/libsecurity_ssl/lib/sslKeyExchange.c and http://opensource.apple.com/source/Security/Security-55179.13/libsecurity_ssl/lib/sslKeyExchange.c
I was trying to come up with a reasonable explanations of how this could have happened, but failed.<p>Here the relevant part of the diff:<p><pre><code> @@ -627,6 +628,7 @@
goto fail;
if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0)
goto fail;
+ goto fail;
if ((err = SSLHashSHA1.final(&hashCtx, &hashOut)) != 0)
goto fail;
</code></pre>
How could this ever happen? It does not look like a copy & paste error as suggested in other places,
it does not look like refactoring. Was it added intentionally to test something and commited by accident?
Is there any possible non malicious explanation someone could come up with?
======
matthewmacleod
Stop this nonsense. There are plainly dozens of reasons that this could have
happened accidentally. Literally every single developer has made similar
stupid mistake, and literally every organisation has released stupidly broken
code.
Yes, there should have been code review, static analysis, and testing in place
to prevent that. That'll probably start happening, and you can bet that there
will be serious discussions internally about what happened.
If this was the action of a malicious government agency, then it was horribly
hamfisted execution. It might offer plausible deniability in some sense, but
it's hard to imagine a situation where such an action would be worthwhile,
given the resources at the disposal of any such actor.
~~~
pessimizer
>it's hard to imagine a situation where such an action would be worthwhile,
given the resources at the disposal of any such actor.
This needs more defense. I find it hard to imagine a situation where such a
minimal and deniable action with such a massive effect _wouldn 't_ be
worthwhile.
~~~
tptacek
No, it doesn't need a defense. There is no evidence to back up the idea that
the bug was malicious. People that have worked on large C codebases have seen
crazier things than this. _Routinely_.
I understand that Rails developers believe that all the TLS stacks must have
dense rspec test coverage and zero-warnings static analysis passes in their
builds, but that isn't the reality for any TLS stack. These aren't Rails apps
(and, hate to break it to some of you, but your Rails test coverage isn't
doing as much for your security as you'd like to think it is).
This is a nutball conspiracy theory, another example of the tech "community"
eating its own rather than focusing on anything that would help mitigate
state-sponsored surveillance. And it's happening solely in the service of an
"exciting" narrative. The people promoting this bullshit conspiracy theory
are, by and large, doing it because they _want_ it to be true.
~~~
miopa
1\. It is certain that NSA has some very smart people playing with the sources
of the Apple crypto-modules.
2\. If you're a NSA boss, and some of your experts told you that you can break
SSL in Apple products with adding one line that could be almost certainly
attributed to inconspicuous human error, would you try to make a deal with
Apple?
3\. If you're an Apple boss, and NSA offers you cache (or other benefits, like
competitor intelligence) for adding plausibly deniable bug in your code, would
you turn it down?
There is no direct evidence for this case, sure. There is however ample
evidence in the Snowden docs that this scenario happens too often for this to
be called bullshit conspiracy theory.
~~~
patio11
Remember how Diaspora was supposed to be the private peer-to-peer encrypted
Facebook but peers private keys could be read or overwritten by anyone on the
Internet? Doesn't your argument suggest "Well we can't rule out the NSA having
a man on the inside trying to undermine their encryption"? Heck, why not go
all the way: the NSA funded Diaspora to bring Facebook to the negotiating
table?
Down this path lies madness. Software has bugs.
~~~
miopa
Yes, we can't rule that. But we could clearly see that the Diaspora codebase
screamed incompetence. Apple, on the other hand, has some very high quality
products and decades of experience.
Yes, it is quite possible that this is a simple bug. The other option is also
quite possible :)
~~~
tptacek
It is equally possible that Apple is a giant conspiracy dedicated to
concealing the grey aliens who actually control human civilization and are
harvesting our brainwaves, which actually function as the raw compute for a
giant intergalactic payments call center application, via Flappy Bird. Think
about it.
~~~
luke-stanley
That's not equally possible, due to Occam's razor:
[http://en.wikipedia.org/wiki/Occam's_razor](http://en.wikipedia.org/wiki/Occam's_razor)
Plus, the security services have a proven ability and intent. Be serious now.
------
cjbprime
It's not true that there was no other change in the code -- there was a change
eight lines earlier. It could be a mismerge of the latest upstream code. There
was refactoring nearby, and people can make stupid mistakes while refactoring.
I disagree that there's no "reasonable explanation", and so do most other
people who've looked at it. That doesn't mean it wasn't malicious, but it
means that it has reasonably plausible deniability. (Of course, if you _were_
being malicious, plausible deniability might be important to you.)
~~~
lyngvi
++ on mismerge. The change likely won't impact the output binary - compiler
should issue a warning, which devs might ignore; then the optimizer would
remove it as unreachable.
Perhaps the developer deliberately allowed that mismerge to give himself an
aura of incompetence/sloppiness, enhancing his plausible deniability when it
is discovered that one of his other changes led to an insidious vulnerability.
But more likely it was just an accident - if he were malicious, the effect of
bringing attention to his code would be highly undesirable.
~~~
shawabawa3
> The change likely won't impact the output binary - compiler should issue a
> warning, which devs might ignore; then the optimizer would remove it as
> unreachable.
It's not unreachable - it always executes if the if condition is false.
~~~
lyngvi
D'oh. That's what I get for not paying attention and looking at the
indentation instead of for braces. Still, my bet's on mismerge first - though
it'd be worth reviewing that committer's other changes.
------
gatehouse
If you are wondering whether there is a massive conspiracy to make software
weaker and to hijack the work of everyone writing networked software and
construct a massive surveillance apparatus and use it against enemies of
Freedom™ and randomly chosen accidental targets: the answer is _yes_. It has
been demonstrated beyond doubt.
If you're wondering whether this particular code is a consequence of all that:
probably not, but if it were it would prove anything that isn't already known.
------
mistercow
A lot of code editors (Xcode doesn't by default, but you can easily configure
it to) have a keyboard shortcut for duplicating the current line. I have
plenty of times accidentally made changes at the wrong place in a file because
I was mistaken about where the cursor was.
The lesson is to always make sure to look at your diffs before you commit your
changes.
~~~
Cthulhu_
And to have someone else look at your diffs and sign off on them before it's
merged into master.
Google / Chrome does this, and so should everyone else, even more so if
they're dealing with security.
~~~
mistercow
That's a good measure too, although I think with a mistake like this, the
person writing the code might be more likely to spot the mistake than someone
else.
It also makes me wonder if the diff display shouldn't have a specific notation
for duplicated lines, since they are a special case that can easily be
mistaken for a trivial _change_ to a line with the way diffs are typically
shown.
------
axylone
Looks like they also introduced a reference leak on allocation failure:
@@ -198,10 +198,8 @@
sslDebugLog("SSLEncodeRSAKeyParams: modulus len=%ld, exponent len=%ld\n",
modulusLength, exponentLength);
OSStatus err;
- if ((err = SSLAllocBuffer(keyParams,
- modulusLength + exponentLength + 4)) != 0) {
- CFReleaseSafe(exponent);
- CFReleaseSafe(modulus);
+ if ((err = SSLAllocBuffer(keyParams,
+ modulusLength + exponentLength + 4, ctx)) != 0) {
return err;
}
uint8_t *charPtr = keyParams->data;
Note the removed CFReleaseSafe(exponent) and modulus. All other return paths
in SSLEncodeRSAKeyParams() call CFRelease(exponent) and modulus.
This is why you use goto fail and not early returns.
------
jfontan
Maybe another check was done between those two goto fail but later was deleted
because didn't make sense. The extra goto fail was left behind.
------
sslfailio
Yes people make mistakes.... that is why code in a file called
sslKeyExchange.c ffs can be expected to be reviewed by another person at apple
BEFORE the commit enters a release candidate. A double goto fail; is something
that sticks out to anyone looking at that commit line by line. Seems like
apple handles application security like any 6 dude valley startup.
My commit suggestion: \- goto fail; \+ fail;
------
homakov
More importantly, why Apple doesn't run test suites, basic checks? Test driven
development must be everywhere
~~~
laureny
TDD might be useful for unit tests (even that I'm not convinced of) but not
for integration tests.
The bug happens very deep inside the handshake protocol and it's extremely
hard to test it automatically.
~~~
dllthomas
Right, this is a much stronger case for static analysis and warning-free
builds. This change caused dead code. If that code was supposed to be dead,
comment it out.
~~~
ryandrake
If the code is supposed to be dead, DELETE it. Do not comment it out.
If the code doesn't belong there, get rid of it. If, for whatever reason, you
want to show the reader that code used to be there, delete it and leave an
explanatory comment. If you're commenting it out because you're not confident
in taking it out or you plan to re-enable it in the future, well, that's what
you have source control for.
~~~
dllthomas
I don't agree. Or I do to a point, but it's a relatively weak point. I agree
code should be yanked if there's no reason to be keeping it around. I don't
think there's never reason to be keeping it around. Sending people to figure
out which version of the repository had the relevant piece of code (which is
now correspondingly less likely to have been updated at all when surrounding
code changed) doesn't make sense if you genuinely expect it will be relevant
again soon.
------
sentenza
Think of change, copy, paste, do something else that you suddenly thought of,
forget because lunch, commit without looking. (TODO: Write unit test.)
Or a conspiracy. At this poing, I just don't know any more.
------
DanHulton
Braces, y'all!
This is why you always, always, ALWAYS put braces around your if()s.
(I'm not religious about what line the open brace goes on, but I will reject
any code review that skips the braces entirely.)
~~~
wmgries
Also, you almost never need to use goto.
~~~
chrismcb
This isn't goto's fault. A return, or a "finished = true;" or a ton of other
code could have had the same result. Using a goto means it is easier to find
it than some other similar mistakes.
~~~
bakhy
All three of those patterns are something which would lead me to consider is
there a more functional-style option available to rewrite the method in
question. I'll take a gigantic nested if over a split-end method (multiple
exit points) any day of the week ;) But of course, such things cannot be
avoided completely, nor will avoiding them magically eliminate all bugs in the
universe..
~~~
DanHulton
Hm, and I'm of the opposite opinion. I like methods that fail early. Gigantic
if-chains are hella-hard to parse.
I should go consult Code Complete again, actually...
------
nitrogen
This kind of mistake is why I always use curly braces with if() statements
when I write C, and double-check the results through Vim's auto-indentation.
------
brudgers
A few years ago, my son would watch "Finding Bigfoot.". Someone said they saw
a bigfoot running off into the woods the narrator would say, "The bigfoot must
have been frightened, so it's exactly what I would expect a bigfoot to do."
Another person would say, they saw a little bigfoot standing on the river bank
and the narrator would say, "That's exactly the sort of place we would expect
to see a baby bigfoot." [1]
If someone said they saw a bigfoot shopping in Walmart, we could expect to
hear, "That's exactly the sort of a place a bigfoot would shop."
The conspiracy theorists and the honest mistake theorists are both finding
bigfoot. On the one hand, it's exactly the sort of exploit a state security
organ would like to create and on the other its exactly the sort of error a
programmer can make in C. And neither side believes in the other's Bigfoot.
[1] We talked about the actual words that were used by bigfoot hunters to
advance the story
------
donatj
I had an accidental line duplication in git the otherday trying to do a by-
line commit with a visual tool.
------
gcb0
I'm 100% convinced it's malicious... But otherwise, it could be explained by
the coder adding another check
If(err==my_dev_string)
goto fail;
Then before committing, sending the diff to a colleague who emails back "you
forgot a debug there, besides that ship it"
He removes only one line of two and ships.
And of course i always try to attribute those things to incompetent other than
malice, but since in this case there was probably money and bribes involved so
i tend to the later.
~~~
wreegab
> but since in this case there was probably money and bribes involved
The cognitive process above is really sad: "I speculate this is what happened
as a natural outcome of my other speculation"
~~~
gcb0
my two speculations are really opposite (and most believable one to defend the
coders innocence, if that was the case). i presented both and pointed out the
one i have a gut feeling towards.
------
cgore
I appreciate the coding standard at a previous employer
([http://www.astronautics.com/](http://www.astronautics.com/)) a little bit
more now, that INSISTED that braces always happen, even for one line
conditionals like these. It was kind of irritating at the time though.
------
beachstartup
i do this all the time in vim. all it takes is one extra keystroke 'p' to do
this.
if i were to take a guess, the programmer first typed out all the if
conditional expressions, then went in and pasted 'goto fail' out of a buffer
after each one, and accidentally did it twice there.
~~~
jeremyjh
That didn't happen - look at the diff in the OP.
~~~
beachstartup
that's bullshit. you don't know that it didn't happen - there's no telling
what he did with the code in the time between commits. he could moved things
around 20 times, finally ending up in the same place, with the exception of
the accidentally pasted a line.
plese use some imagination before jumping to conclusions. a diff tracks
changes at points in time, not an editing session.
------
rdtsc
Common just say, we all know you what you are thinking. Bruce Schneier said
it. You should know that we know what you are thinking -- yes there is a very
high chance it was put there deliberately.
------
jokoon
that's like telling programmers that Apple doesn't use a repo system, so there
could not be any trace of this.
And why don't we hear anything the guy who might have done this mistake IF IT
WAS AN ACTUAL MISTAKE ?
I don't like conspiracy theories, but I'd be apple, I'd fire the guy for
incompetence. I mean of all the code that has to be secure, you have to check
this one.
------
jheriko
this looks exactly like a copy paste error - there are also plenty of shortcut
keys for duplicating lines or transposing them...
------
danielweber
Sometimes people make mistakes.
~~~
chris_wot
Don't know why you got voted down. You make a very decent point!
|
{
"pile_set_name": "HackerNews"
}
|
YouTube CEO on Facebook video ambitions: 'They should get back to baby pictures' - smacktoward
https://www.cnbc.com/2018/02/13/youtube-ceo-on-facebooks-video-they-should-get-back-to-baby-pictures.html
======
steve-benjamins
YouTube has been an incredible place for building an audience for me. I
started publishing videos in November of last year and growth has been
dramatic (for me at least— my content is pretty niche, I review website
builders): [http://s3.amazonaws.com/sitebuilderreport-
assets/images/file...](http://s3.amazonaws.com/sitebuilderreport-
assets/images/files/000/000/016/original/stats.png?1518544653)
Facebook on the other hand turned my Facebook "page" into a payola scheme
where I had to pay to access my audience. Lame.
~~~
Siecje
Assuming no new growth, in 10 months you will be able to make money from
YouTube.
Do you think the 4000 watch hours in the past 12 months is too high or just
right?
~~~
steve-benjamins
I'm probably not a good person to ask. I make money through affiliate links in
my video descriptions— so I have no plans to use Youtube's official
monetization programs.
~~~
newbuser
If your goal is affiliate clicks, why do views & mins of engagement matter?
Seems like the measure would be which platform generated more clicks that
convert.
------
ilamont
She may be right.
Facebook has a lot of problems on its plate right now, but one of the worst
trends has been the poorly thought out march to video. It came from Zuckerberg
(1 and 2) and was repeated by senior FB executives, and then became a mantra
for publishers. Many made large investments in video programming for Facebook,
only to find the money isn't there and Facebook later decided to demote
publisher content (3 and 4).
This is not just large media companies that got burned, I know some smaller
producers who believed the "five years the feed will be all video" baloney and
shifted their efforts accordingly. Some were doing really important work, too,
around causes or local news. What a waste.
Meanwhile, it seems that overall video consumption in Facebook is declining,
and it's the one percent that get the most engagement, regardless of who the
publisher is (5).
I personally would not mind if Facebook turned back the clock 10 years, when
most conversations seemed to be personal and text-based, and the truckloads of
memes, ads, gaming achievements, real and fake news, and videos of cats
playing the piano had yet to be shoved down Facebook's maw and into our feeds.
Old-school text discussions seem to work for HN, why can't it work for
Facebook?
1\. [https://www.hollywoodreporter.com/news/mark-zuckerberg-
faceb...](https://www.hollywoodreporter.com/news/mark-zuckerberg-facebook-
news-feed-784376)
2\. [https://www.hollywoodreporter.com/news/facebook-shares-up-
re...](https://www.hollywoodreporter.com/news/facebook-shares-up-revenue-
growth-970957)
3\. [https://www.recode.net/2017/1/17/14269406/facebook-live-
vide...](https://www.recode.net/2017/1/17/14269406/facebook-live-video-deals-
paid)
4\. [https://digiday.com/media/digiday-research-publishers-
making...](https://digiday.com/media/digiday-research-publishers-making-money-
facebook-video/)
5\. [https://www.wochit.com/blog/social-video-performance-
index-2...](https://www.wochit.com/blog/social-video-performance-index-2017/)
~~~
eropple
_> Old-school text discussions seem to work for HN, why can't it work for
Facebook?_
People don't really read in the same way as you might have previously
expected. ("Reading a short blurb or a tweet" is not the same thing.) Can't or
don't want to, I don't know, but they don't. You see the edges of it here, too
--tl;drs on HN posts, sometimes, that are less than a screenful of text. And
people think you're "spending a lot of effort" when you bang out a post about
as long as yours is--and, sometimes, try to frame it as a bad thing.
I tend to think Thomas Pettitt has a point[1].
[1] -
[https://archives.cjr.org/the_audit/the_future_is_medieval.ph...](https://archives.cjr.org/the_audit/the_future_is_medieval.php)
------
minimaxir
That particular comment has generated a lot of appropriate snark in light of
YouTube's recent controversies involving disturbing children videos and Logan
Paul:
[https://twitter.com/cwarzel/status/963268727646035968](https://twitter.com/cwarzel/status/963268727646035968)
------
rrggrr
Facebook isn't going away. However it seems to be coming apart because its
hard to argue that FB improves, rather than burdens, people's lives. Its
simply easier, less distracting and often happier connecting outside FB's
walled garden. For example:
Messenger --> rampant competition from about a dozen apps.
Community --> reported audience declines. From participation fatigue, privacy concerns, and competing sites.
Publishing --> push-back from content providers and publishers who don't wish to be assimilated into the 'borg'.
Payments --> no real competitive offering.
FederatedID/SSO --> rampant competition from Google, LinkedIN, Github, etc.
I really believe Facebook is grossly overvalued as an internet property, much
in the same way MySpace and AOL were in the 'old days'. I also suspect that
Twitter remains undervalued in terms of influence and - importantly - 2nd/3rd
order reach (eg. republishing).
There's something to be said for building products that make people's lives
easier and truly happier, and I'm not sure that FB does either anymore.
~~~
dfabulich
> _I really believe Facebook is grossly overvalued as an internet property_
You could have made this exact argument in 2012 when FB was worth $20/share.
Was this argument wrong in 2012 but correct in 2018?
~~~
rrggrr
Yes. Look at FB earnings per share and tell me where that growth is going to
come from. I note FB is down today. The market is slow to catch on in both
directions, but when it does...
~~~
dfabulich
Where did the growth come from in 2012?
------
Splines
IMO Facebook video is a non-starter because of branding. Facebook is not a
destination for video.
Facebook is to video as youtube is to social networking.
~~~
stale2002
This is true. There was recently a huge controversy in the Dota 2 community,
because a major tournament exclusively moved to Facebook livestreaming (away
from twitch).
One of the most common complaints was something like "I'd never use Facebook,
because I hate the company!"
Also, frankly, the tech product for livestreaming isn't anywhere near feature
competitive.
------
mad44
Oh my God. She just gave Mark Zuckerberg a rallying chant; he will write this
on all Facebook walls and rally developers to improve Facebook video.
~~~
jrs95
IMO that’s probably good for Google because it’s likely going to be a wasted
effort. Even if they built great stuff, I can’t see this being more successful
than something like Google+ or Facebook’s attempts at making an Android
launcher. There’s just no motivation for users to get on board with this. In
terms of video, I think they may be able to do something similar to what
Snapchat has done, but that’s about it.
------
cflewis
Disclaimer: Am Googler
My 2c is that for mass consumption, streaming is where the puck is going, not
short-form videos. Kids are watching Minecraft streaming, they're not watching
punks like Logan Paul until they are in their teens, and my guess is as those
younger kids get older, tastes will change and Paul et al will be done. And
even when you think about teens, streamers like Dr Disrespect seem to capture
far more zeitgeist than YouTubers. Is Casey Neistat really a thing anymore?
IMHO Facebook really should be doubling-down on local sharing and improving
that experience, Google Photos is far and away the best photo product for me.
Replicating YouTube won't work, the quality of the platform and the network
effects are too strong. Whether Facebook can do something disruptive like
Twitch I don't know. Maybe IRL streaming of C-list celebrities like Snoop or
Kylie Jenner?
~~~
MarkMc
> IMHO Facebook really should be doubling-down on local sharing and improving
> that experience, Google Photos is far and away the best photo product for
> me.
Do you mean that Google Photos is a better way for you to share your photos
than Facebook?
~~~
cflewis
It's better for my immediate family, worse for my social network as a whole.
------
hugh4life
I actually think there is a huge opportunity for there to be competition with
youtube... but not directly under the facebook brand. It'll have to be
something like Instagram.
~~~
mslate
Why?
~~~
ibdf
Because a lot of people don't want all the other stuff that comes with having
a facebook.
~~~
Splines
Youtube gets this right and puts the content first, on all endpoints. I see a
youtube video and click it, I get a video.
If I see a facebook link, there are many problems:
\- I don't know if it's a video
\- I don't know if I'll see a login page or if I'll get to the content
\- I don't know if the content is viewable by me because of privacy settings
And then this works the other way - why should I share a video on facebook
when I can't tell if my recipient will be able to see the video? I don't know
if they'll get a login prompt. I don't know if they have the permissions to
see the video.
All this friction doesn't exist with youtube, or at least is extremely
minimal.
~~~
racl101
Agreed. I'm always weary of clicking on a Facebook video because I don't want
a history of that going on my wall or some other kind of trail. I don't want
all the baggage that comes with Facebook.
And a small 10s commercial on a YouTube video is a small price to put up with
in comparison to the rest of the shit that comes with being in the Facebook
ecosystem.
Only reason I still have an account is to be in touch with some high school
friends and that's something I barely do these days.
------
ggg9990
Interestingly, we don’t post any baby photos on Facebook because it’s too
toxic of an environment. We use WhatsApp, which is still owned by Facebook but
much harder for them to monetize.
------
mmackh
Instagram is Facebook's attempt to dethrone YT as the dominant player in the
video sector. Once they remove time limits and allow some form of basic player
controls, we're probably going to see some sort of shift. Instagram's UX/UI
is, in my opinion, smoother than that of the YT app.
~~~
jrs95
If the content and discoverabilty isn’t there, it’s not going to matter. No
matter what Microsoft does with Bing, they’re not going to win for the same
reason.
------
osrec
There is certainly space to compete with YouTube. I think YouTube ads are
getting a bit annoying, especially when you can't skip them. If a valid
challenger were to arise, I feel monetisation strategy is where this battle
will be lost or won. The least annoying/intrusive will win every time.
------
thrillgore
Oh man, don't be this smug. You be this smug, you regret it later.
------
oh_sigh
"I mean" said 7 times. Maybe that is the benefit of "umm" \- when you have
that verbal tic, it usually isn't included in transcriptions.
------
solarkraft
Facebook isn't a good contender, not on its main website, but YouTube is
falling quickly and this talk just motivates competitors more.
------
cgarduno1
Youtube isn't perfect but the facebook video player is terrible.
------
dmitrygr
Underestimating competition is never a good idea, especially publicly like
this. Horse carriage drivers also laughed about automobiles... initially
~~~
IntronExon
The early automobiles were a joke, so they called it like they saw it. You can
hardly blame people for not seeing where it would lead, often beyond their
professional lives. Take for contrast the reaction of French factory workers
when automated textile production started to come online, or cabbies when
automated fare metering hit.
------
jsnk
I cannot believe I am saying this, but I am rooting for Facebook to build a
competition against Youtube.
~~~
pythonaut_16
Youtube seems to be one of the more egregious parts of the Google ecosystem.
Like sure Gmail has its problems, but ultimately it is an excellent web based
email system that's hard to beat because it's a great product.
Youtube's main strength seems to be primarily its first mover advantage, and
the fact that building a video hosting site is a rather costly venture.
Neither of those are a very defensive moat against competitors like Amazon and
Facebook
~~~
holydude
I do not think gmail is an excellent product. For me it's backed by a giant
that guarantees its availability and functionality almost anywhere in the
world (looking at you China). I would use something else in a blink of an eye.
|
{
"pile_set_name": "HackerNews"
}
|
Professional Software Engineer Exam coming in April 2013 - stephen
http://ncees.org/About_NCEES/News/News_Pages/New_PE_Software_exam.php
======
spamizbad
Looks like "How to do Waterfall" (62.5% of the test) with additional coverage
of Security (15%), QA (7.5%), and Engineering process (7.5%), and
Configuration Maintenance (7.5%). There are 80 multiple-choice questions
spread across 2 sessions (4 hours each). Open book.
An overview of the exam:
[http://ncees.org/Documents/Public/Exam%20specifications/PE%2...](http://ncees.org/Documents/Public/Exam%20specifications/PE%20Software%20Apr%202013.pdf)
Not something I'd feel inclined to get unless this somehow became an industry
requirement- which is unlikely - Agile and progressive Software Dev shops are
probably throwing up a little bit in their mouths at this thing. Replace Agile
with "Extreme Programming" and you've got something that looks like it came
straight out of the 90s.
~~~
ntkachov
Really? Just because its structured like waterfall doesn't mean its "how to do
waterfall". I read the req spec and there isn't a thing on here that isn't
valuable information for every engineer no matter what process they use.
Read what it actually covers and the topics they test and tell me there's
something on there that is completely useless.
~~~
spamizbad
Couldn't disagree more. If it looks like a duck, and it quacks like a duck...
I've worked in waterfall shops. Sections I through V are very similar to what
we aspired to do. Look, it's not like this knowledge is worthless. It's just
that what is outlined in these sections is a very thorough but expensive ($$$
and labor) and time-consuming process that that when put into practice often
insulates itself from the business problem at hand. Just because it looks good
_on paper_ does not mean it will look good when you start applying it to the
real world with real people.
I'll say this: If you want to participate in an organization that is
culturally waterfall and practices waterfall this certification will prove
quite valuable. Anywhere else though, and you might give the impression you're
not a good "culture fit" for the organization.
~~~
demian
But "activities" are not "phases". You are always trying to get the
requirements right, the difference is that some people get them while coding,
and others before even start designing.
------
rsl7
I hate it.
The content of that exam is like a list of everything that's wrong with
industry. Those are problems to be fixed, not things to set in concrete as the
way it shall be henceforth.
~~~
AYBABTME
Yes, like requirements, prototyping, user interfaces, minimizing complexity,
profiling and performance, unit-to-usability testing, metrics, refactoring,
performance monitoring...
All that ugly stuff that's wrong with the industry.
~~~
rsl7
Those are problems in the sense that software is a young industry, unlike
other engineering disciplines (or "actual" engineering). We're likely to
abstract away today's issues, whereas matter and physics are more direct,
immediate limitations in engineering disciplines.
We don't have a "software physics".
------
eranation
Yes, because we have too many engineers. It's so hard to choose a good
developer from the hundreds of applicants for each job so we need a 10 year
old obsolete test to filter the good ones out. Talk about waste of money, this
is something I hope is not paid by tax dollars...
------
noarchy
Developers are fortunate that our field has not been swamped by credential
inflation. In other words, we don't even need a degree to do what we do. It is
enough to have a portfolio of solid work and some good references, and high-
paying work can come your way.
The last thing I want to see is for some kind of guild to arise, which could
ultimately lock down the industry (via government requiring licensing, for
instance).
~~~
X-X
While I agree, I think that a large portion of developers want some way to set
themselves apart from the masses - to be recognized as Uber 10X code ninjas.
Those people will never rest till they create their own credentials, whether
it be number of contributions to opensource projects on Github or Coderwall
achievements or a standardized test.
------
eranation
Thinking that taking a multiple choice test will prevent you from causing a
bug that will kill someone is as smart as learning to be a lifeguard from
youtube tutorials.
Organizations that create weapons, spaceships, medical equipment and anything
that can and will kill you if it has any bugs, needs to enforce quality not by
certifying the engineers, but by certifying the organization to follow very
rigid quality criteria. Some companies just have it naturally (perhaps Apple
is a nice example) some companies need a structure (see things like
<http://www.sei.cmu.edu/cmmi/>)
So if this is not for saving lives, then I don't see any purpose in taking or
creating this test.
if you can code, you'll get a job, if your code is bad and has a lot of bugs,
our software cycle is so fast you'll be forced to either improve or switch a
profession. or work on non critical software.
------
tdicola
A software engineering certification exam with no coding seems a little odd.
~~~
demian
That's because in "high brow software engineering", coding is for "workers"
(as in "construction workers").
~~~
barik
Well, the exam for Electrical Engineers doesn't have them build a circuit
either. I assume you're forgetting that you also have to apply to the State
Board, documenting your entire Engineering career, which will be the most
substantial part of the licensing process. I guarantee you that you'll have
plenty of opportunity at this time to demonstrate your programming
experiences.
When individuals ask me for a PE recommendation, I am often reminded in
particular of one of the questions from the PPI2PASS FAQ [1]:
Q: I have been in supervision since graduation. I have never performed a
single calculation.
A: Oops.
[1] [https://ppi2pass.com/faqs/qualifying-to-take-the-
licensing-e...](https://ppi2pass.com/faqs/qualifying-to-take-the-licensing-
exams)
------
mcgain
despite my disdain for accreditations and certifications, I approve of the
content of the exam. It looks like it covers a lot of ground, in a variety of
subjects.
------
tomkinstinch
What does this mean for people currently working as programmers? Will it be
necessary to study up and get licensed to remain competitive?
~~~
GuiA
It could be necessary to be licensed for government jobs or jobs in large
companies building real time critical systems (ie power grid control software,
avionics, etc). I doubt it'll ever catch on for programming jobs in
mobile/web/etc
~~~
barik
I think it will become necessary for the areas you outline, particularly in
industrial control. Although best practices and standards have been
established for electrical systems and mechanical systems, my observations in
factory control show that the programming components continue to be the most
fragile and buggy. And currently the legislation here lags as well since
software systems are typically __not__ certified, except in certain military
cases.
This isn't something for Web 2.0 programmers, who can carry on as they have
been doing. Instead, it's for folks like myself who have designed the clean-
room door locking logic for the CDC when contamination is detected (see
"Walking Dead" for a grossly exaggerated example of such a system).
~~~
tbranch227
You sound like someone I know. I agree with the above. This cert is definitely
applicable for engineering tasks at my place of business and something I will
probably pursue. It's very beneficial when proposing on harder tasks. Web dev,
which I do as well, generally doesn't reach this level of rigor.
------
ilaksh
I am guessing I could answer enough (how many is enough?) of these 80 multiple
choice questions to pass the exam right now.
But it would be nice to have an idea of what other people think is the most
important information in each topic they mention in that PDF (as far as
passing the exam).
So maybe we should create a wiki where we enter in all of the information
people should understand in order to pass the exam?
I created one on Wikia in case anyone is interested.
<http://softwarepe.wikia.com>
Also, question, would this PE exam be the last step in obtaining a Software
Engineering license, or would it be the only step. If its the last step,
exactly what are the other steps? What group would provide a software
engineering license? Would there be any point in me passing this exam, since I
don't even have a college degree?
~~~
barik
It is the last step. The other steps vary by state, but in general, it
requires that you have at least four years of documented and progressive
experience under the direction of another licensed Engineer. You also need to
have taken the EIT, which is a general Engineering exam that covers all
disciplines, not just computers (brush up on your thermodynamics and concrete
mixing!).
If you do not have an ABET degree, then it is still possible to obtain a PE,
but the requirements generally go from four years to sixteen years of
documented experience.
I may be wrong, I don't think this will be a route for Computer Science. It is
more for those individuals who have been programming under other Engineering
hats ("controls", "electrical", "mechanical") but now have a way to take an
exam that satisfies their actual Engineering work. For instance, I might have
fit more under the hat of Software Engineer (since I did a lot of embedded
programming), but had to take the Electrical Engineering exam instead due to
lack of selection.
~~~
prodigal_erik
Don't engineering licenses usually require a bunch of stuff like fluid
mechanics and metal fatigue which are completely irrelevant for reliable
software? I think we'd be better served with more statistics and denotational
semantics....
~~~
barik
The EIT does, because the first portion is a general Engineering exam. It is
generally at the sophomore level of a four-year University. The PE exam,
however, is related to your discipline, though sometimes tangential questions
may appear (some analog circuits on a digital exam).
------
jboggan
Many years ago when I thought I was going to go into patent law (egads) I
ended up taking the Fundamentals of Engineering exam and passing it as an
Engineer-In-Training. Does this mean I can do four years of software
engineering and then certify as a PE?
~~~
barik
Generally, the PE exam itself is considered one of the least difficult
portions of the process, though it's still stressful for certain disciplines.
The PE exam topics are also generally known to lag reality, regardless of
discipline, and often by a decade. It's also open book and some people bring
entire carts of books, though I find that not to be very effective since you
basically only have six minutes per question.
The major part of the application process is that you will need to work under
the direct supervision of a PE, and have increasing levels of documented
responsibility, which is often harder to satisfy. Depending on the state,
three of the five (minimum) of your recommendations must come from licensed
PEs, who need to be able to certify more about you than simply your character.
Usually when threads like this appear, too much emphasis is placed on the exam
rather than the requirements that allow you to sit for the exam in the first
place. The PE license process is not like a Microsoft or Cisco certification.
It took me a good six months to get all the paperwork ready to apply for the
exam. I minimally studied for the exam itself. Consequently, four years ends
up being more like five or six, in my case, due to less than stellar record
keeping.
------
brownBananas
So this just makes it official, right? Or does this affect people currently
employed as Software Engineers?
------
rprasad
People on HN seem to be misunderstanding the purpose of this exam. This exam
is not for web programmers, or game programmers, or any "startup"-type
programmers. If what you do can be done iteratively without much problem, this
exam is not for you.
This exam is for people who work on very difficult, very error-sensitive, very
high-end stuff that needs to work from the very start: jet planes, medical
devices, spacevessel systems, etc. You don't get second chances with these
types of systems, so this exam is focused on making sure passers know the gold
standard for how coding is currently done in these areas.
~~~
LnxPrgr3
And for an (admittedly dated) example of what can go horribly, horribly wrong
in some fields: <http://en.wikipedia.org/wiki/Therac-25>
It's ok if your Web app occasionally spits a 500 error or your game crashes
once in a while. It's not ok if your radiation therapy machine occasionally
flips out and kills people with a massive overdose.
|
{
"pile_set_name": "HackerNews"
}
|
The Elusive Universal Web Bytecode - joubert
http://mozakai.blogspot.com/2013/05/the-elusive-universal-web-bytecode.html?m=1
======
CyberDildonics
I heard about a project called Oak that was supposed to do this, never heard
what happened to it...
~~~
DonHopkins
It got renamed, then somebody made a backroom deal to borrow the new name for
another totally different language in order to trick people into confusing the
two languages, then the other language became much more popular and widespread
than the one that used to be called Oak, totally taking over the browser, and
making good headway at taking over the server too.
Incidentally, Arthur van Hoff just pointed out:
>Time flies. This week it is 20 years since we announced Java...
"Why Sun Thinks Hot Java Will Give You a Lift" \- March 23 1995
[http://web.archive.org/web/20060819094743/http://java.sun.co...](http://web.archive.org/web/20060819094743/http://java.sun.com/features/1998/05/images/merc_large.gif)
~~~
arethuza
I blagged a copy of Java from Arthur a while before that when I found out he
was working at Sun - I'd used HyperNeWS for quite a while and was in awe of
his programming skills.
Edit: Are you this DonHopkins?
[http://art.net/~hopkins/Don/hyperlook/index.html](http://art.net/~hopkins/Don/hyperlook/index.html)
~~~
DonHopkins
That's me. While I was working at Sun in '90-91 on NeWS, we tried very hard to
convince management to hire him to work on HyperNeWS for TNT, but Sun wouldn't
give us a requisition (because they intended to kill NeWS, not save it). So I
quit Sun and moved out to Glasgow to work with him at the Turing Institute on
HyperLook, and ported SimCity to HyperLook.
HyperNeWS aka HyperLook was like HyperCard implemented with PostScript
programming and graphics, plus networking. In that alternate universe,
PostScript would have been the universal bytecode for the web.
[https://www.scribd.com/doc/77192884/HyperLook-Product-
Info](https://www.scribd.com/doc/77192884/HyperLook-Product-Info)
[https://www.scribd.com/doc/77164708/HyperLook-SimCity-
Manual](https://www.scribd.com/doc/77164708/HyperLook-SimCity-Manual)
Arthur's programming and entrepreneurial skills are indeed awesome, and I'm
glad I quit my day job at Sun and left the country for the opportunity to work
with him! He's now an advisor to my current company:
[http://pantomimecorp.com/the-team](http://pantomimecorp.com/the-team)
~~~
arethuza
I actually presented a paper at the 2nd International Conference on the Web in
Chicago in '94 about "Extending W3 Clients" which including a suggestion for
adding a standard bytecode interpreter to web browsers.
I stopped working on that when I found out about Oak/Java in early '95.
~~~
DonHopkins
You might get a kick out of Sun's proposal for "NFS 3.0" aka "NeFS". The basic
idea was to put a PostScript interpreter in the kernel for extensibly and
efficiently executing distributed and even local file system operations. It
not only cuts down on network transactions for the same reason NeWS and AJAX
does, but even locally you can avoid billions of context switches by executing
"find" and tasks like that in the kernel, for example.
The Network Extensible File System Protocol Specification 2/12/90
[http://www.donhopkins.com/home/nfs3_0.pdf](http://www.donhopkins.com/home/nfs3_0.pdf)
(pages in reverse order)
Introduction
The Network Extensible File System protocol (NeFS) provides transparent remote
access to shared file systems over networks. The NeFS protocol is designed to
be machine, operating system, network architecture, and transport protocol
independent. This document is the draft specification for the protocol. It
will remain in draft form during a period of public review. Italicized
comments in the document are intended to present the rationale behind elements
of the design and to raise questions where there are doubts. Comments and
suggestions on this draft specification are most welcome.
1.1 The Network File System
The Network File System (NFS™) has become a de facto standard distributed file
system. Since it was first made generally available in 1985 it has been
licensed by more than 120 companies. If the NFS protocol has been so
successful why does there need to be NeFS ? Because the NFS protocol has
deficiencies and limitations that become more apparent and troublesome as it
grows older.
1\. Size limitations. The NFS version 2 protocol limits filehandles to 32
bytes, file sizes to the magnitude of a signed 32 bit integer, timestamp
accuracy to 1 second. These and other limits need to be extended to cope with
current and future demands.
2\. Non-idempotent procedures. A significant number of the NFS procedures are
not idempotent. In certain circumstances these procedures can fail
unexpectedly if retried by the client. It is not always clear how the client
should recover from such a failure.
3\. Unix bias. The NFS protocol was designed and first implemented in a Unix
environment. This bias is reflected in the protocol: there is no support for
record-oriented files, file versions or non-Unix file attributes. This bias
must be removed if NFS is to be truly machine and operating system
independent.
4\. No access procedure. Numerous security problems and program anomalies are
attributable to the fact that clients have no facility to ask a server whether
they have permission to carry out certain operations.
5\. No facility to support atomic filesystem operations. For instance the
POSIX O_EXCL flag makes a requirement for exclusive file creation. This cannot
be guaranteed to work via the NFS protocol without the support of an auxiliary
locking service. Similarly there is no way for a client to guarantee that data
written to a file is appended to the current end of the file.
6\. Performance. The NFS version 2 protocol provides a fixed set of operations
between client and server. While a degree of client caching can significantly
reduce the amount of client-server interaction, a level of interaction is
required just to maintain cache consistency and there yet remain many examples
of high client-server interaction that cannot be reduced by caching. The
problem becomes more acute when a client’s set of filesystem operations does
not map cleanly into the set of NFS procedures.
1.2 The Network Extensible File System
NeFS addresses the problems just described. Although a draft specification for
a revised version of the NFS protocol has addressed many of the deficiencies
of NFS version 2, it has not made non-Unix implementations easier, not does it
provide opportunities for performance improvements. Indeed, the extra
complexity introduced by modifications to the NFS protocol makes all
implementations more difficult. A revised NFS protocol does not appear to be
an attractive alternative to the existing protocol.
Although it has features in common with NFS, NeFS is a radical departure from
NFS. The NFS protocol is built according to a Remote Procedure Call model
(RPC) where filesystem operations are mapped across the network as remote
procedure calls. The NeFS protocol abandons this model in favor of an
interpretive model in which the filesystem operations become operators in an
interpreted language. Clients send their requests to the server as programs to
be interpreted. Execution of the request by the server’s interpreter results
in the filesystem operations being invoked and results returned to the client.
Using the interpretive model, filesystem operations can be defined more
simply. Clients can build arbitrarily complex requests from these simple
operations.
~~~
arethuza
That sounds interesting - I'll have a read.
------
falcolas
> some people don't like some of those things
What does that even mean?
So why did the author throw out LLVM byte code again? It's BSD, it has
bytecode compilers for most platforms browsers exist on (100% vs. 50% speed),
and doesn't rely on a subset of another language. It also doesn't have the
requirement to fall back to vanilla Javascript. As an added bonus, Javascript
could easily compile down to LLVM bytecode.
Seems like the author already preferred their answer and threw out some BS to
"justify" their choice.
JS probably will remain the "byte code of the web", but this article adds
nothing to that trajectory.
~~~
mrec
LLVM's IR makes no stability guarantees - it can change from one release to
the next, with no backward compatibility. That's not ideal for something
you're slinging out to the web.
I believe this is the same reason Khronos defined their own IR (SPIR) instead
of using LLVM's. Needs to be stable.
~~~
CyberDildonics
That is one reason, the other is being easy and fast to process with tools.
------
Rusky
The article makes the argument that existing systems are easier to improve
incrementally, while designing new systems is more work and not guaranteed to
succeed.
The problem is JavaScript-as-bytecode is not especially easy to improve.
Anything you want to add/change that would make it a better bytecode has to be
balanced with the language's use by humans.
The solution to one-VM-to-rule-them-all is not to cram everything into a
higher-level system with lots of assumptions (JavaScript) or to ignore
portability (NaCl, LLVM), but to use a bytecode that's low-level enough to
implement the various assumptions needed by higher layers.
That way both C++ and JavaScript can run at full speed as well as have their
implementations changed (even across websites!) without pushing every change
through the browsers- just like native apps, with the browser providing _only_
cross-platform and security, nothing more.
~~~
TazeTSchnitzel
> The problem is JavaScript-as-bytecode is not especially easy to improve.
> Anything you want to add/change that would make it a better bytecode has to
> be balanced with the language's use by humans.
There are very few cases where human use causes problems. goto is the only one
I can think of. Yet we've gotten loads of great improvements in ES6 to make it
a good compiler target, like float32 and better integer multiplication.
------
rikkus
I've pondered this a couple of times. One Ask HN I posted:
[https://news.ycombinator.com/item?id=6773980](https://news.ycombinator.com/item?id=6773980)
A reply to a comment I made on another post says that the CLR and JVM suffer
from GC pauses, which would not be acceptable for web apps.
~~~
fla
GC pauses already occur in most JS engine. They are especially tolerable in a
web app.
------
marcosdumay
I'd settle for a bytecode that supported numbers (instead of only strings),
blocking I/O (in addition to non-blocking), and easy integration with system
(or, in this case browser) utilities.
Javascript happens to have none.
~~~
TazeTSchnitzel
Uh, JS has numbers, blocking IO, and easy integration.
What are you on about?
~~~
marcosdumay
JS implement numbers as strings (has bitten me once).
Last time I looked at, there was no blocking IO at all (there is continuation,
but it does not solve the problem because there isn't any locking mechanism -
yep, I'd like atomic locking at my bytecode too). That's even the main
"selling point" Node.js people throw around as if it was a good thing.
By easy integration I mean the hability of using capabilities available at the
system, but not exported into the language runtime. It can be solved by
something that would let me query the sandbox enviroment for the existence of
a "library" that exports foreign functions, and use it. Also, something that
by the other side lets me write and distribute one such "library" so people
can install them on their browsers let JS use its functionality.
~~~
jdmichal
> JS implement numbers as strings (has bitten me once).
What? JS implements all numbers as 64-bit floating point, which happens to be
able to perfectly represent the 32-bit integer space. It can actually
perfectly represent a 52-bit integer space. See Number.MAX_SAFE_INTEGER [0]
for details.
Now, JS _does_ allow for type coercion between values when using the `==`
operator. Luckily, the `===` operator also exists which eliminates this
effect.
[0] [https://developer.mozilla.org/en-
US/docs/Web/JavaScript/Refe...](https://developer.mozilla.org/en-
US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)
> Last time I looked at, there was no blocking IO at all.
What does blocking even mean in a single-threaded event-pump context? Does it
mean other events can be processed while the IO executes? Because that's
exactly what an asynchronous AJAX request does. Or does it mean it blocks the
only thread available? Because that's what a synchronous AJAX call does.
Now, if your argument is that JS doesn't have an async / await construct in
order to make asynchronous AJAX look like synchronous AJAX in the code, then
that's in ES7.
|
{
"pile_set_name": "HackerNews"
}
|
My First Facebook App - I Want One - djworth
http://www.facebook.com/apps/application.php?id=2389878632
This app provides you and your friends the ability to vote on different Amazon.com products. You can add products via an Amazon Search or an Amazon Wish List.<p>Please feel free to check out the app and provide feedback.<p>Thanks!
======
djworth
I entered the text below into the text field on the submission form but I
guess that only works for posts where the link is blank.
This app provides you and your friends the ability to vote on different
Amazon.com products. You can add products via an Amazon Search or an Amazon
Wish List.
Please feel free to check out the app and provide feedback.
Thanks!
|
{
"pile_set_name": "HackerNews"
}
|
Masscan: Scan the entire Internet in under 5 minutes - pmoriarty
https://github.com/robertdavidgraham/masscan
======
yzzxy
There's a great talk from Defcon 22 on using Massscan for security research:
[https://www.youtube.com/watch?v=UOWexFaRylM](https://www.youtube.com/watch?v=UOWexFaRylM)
------
ianremsen
Note: your ISP and third-parties probably won't like this very much.
------
NelsonMinar
This is a hell of a piece of engineering. Really fun to read the README, a
custom TCP/IP stack is genius.
~~~
Zaheer
Indeed. I was quite impressed by his solution for randomly iterating through
the IP space. I've had use cases before for randomly iterating through a space
while ensuring to hit every space and they've never been quite as efficient in
space/time complexity as his.
[[https://github.com/robertdavidgraham/masscan#randomization](https://github.com/robertdavidgraham/masscan#randomization)]
~~~
chii
can you elaborate on what/how one would randomly iterate a space? i imagine
it's like trying to draw a space filling curve on the place (for spaces with 2
components, such as a coordinate)
~~~
Zaheer
My terminology was off, I more-so meant range rather than space.
------
sirwolfgang
Title should be updated to include that this system scans only via IPv4. Doing
such a thing with IPv6 would be a little more surprising. (7.9228163e+28 times
more difficult)
~~~
dsl
There is a false assumption that IPv6 will make mass scanning like this
impossible. In reality you just need to be more clever about it. (Remember way
back when people used "needle in a haystack" security for dial-up systems,
because nobody would ever have the resources to call every phone number in an
area code?)
Link-local multicast (the replacement for ARP) allows tools like alive6 to
very easily enumerate all live v6 addresses on a network. So once a spear
phishing attack is sucessful, you can still scan the entire internal network.
Google hacks like "site:ipv6.*" and passive DNS monitoring allow you to easily
separate used vs allocated/announced subnets on remote networks. IPv6 breaks
in strange ways when you firewall ICMPv6, so ping scanning a subnet has become
much easier.
There was also a great talk (i'll try to dig it up) that talked about
predictable patterns in DHCPv6 implementations, so you can cut down v6 to a
near v4 search space.
The best part of all is that very few security products on the market really
support IPv6 correctly, so I suspect we will see more advanced attacks being
possible because of IPv6 in the coming years than things being stopped.
~~~
pixl97
>There is a false assumption that IPv6 will make mass scanning like this
impossible.
Well, this is an IPv4 brute force search, so technically a IPv6 brute force
search is still impossible.
You are correct though, no one is going scan something that is 99% empty by
brute force.
------
twolfson
"It's the program that scanned the Internet in less than twelve parsecs."
~~~
colinbartlett
From the README:
"Note that it'll only melt your own network. It randomizes the target IP
addresses so that it shouldn't overwhelm any distant network."
------
jwcrux
Here's [1] an example of using Masscan to scan the IPv4 space for shellshock.
[1] [http://blog.erratasec.com/2014/09/bash-shellshock-scan-of-
in...](http://blog.erratasec.com/2014/09/bash-shellshock-scan-of-
internet.html)
------
gear54rus
I might have missed it while reading the README, but can someone ELI5 why do
we need to randomize our scans?
Can't we just go scan one-after-another IP address? Is this because such scan
can easily be detected by ISP?
~~~
anti-thought
Think of the internet like a tree, where the root is you and all other IPs are
the leaves at the end. IPs close together tend to share more path of the tree
as you attempt to reach them from the root. If you are sending an overwhelming
amount of packets in one direction for too long, you have a higher chance of
harming nodes (i.e. routers) along that path. Randomizing your end goal on the
tree, by definition, equally spreads the packet spray accross the tree.
This is how they can claim: "... it'll only melt your own network. It
randomizes the target IP addresses so that it shouldn't overwhelm any distant
network."
Note "shouldn't", this was probably added due, in part, through use-case. If I
were not scanning the whole Internet, and instead just scan a small section.
Masscan has less of a space to randomize through, which means the tree is
smaller and the shared paths are more frequent.
------
pvnick
How likely is this to be used for anti-piracy efforts? I don't hear much about
en masse copyright enforcement these days, but it seems like the ability to
quickly scan large IP ranges would allow one to periodically (every couple
minutes or so) obtain a list of every single seeded file in the US, at least
for the people not using a VPN.
~~~
Scaevolus
That's not how torrents work. You can't connect to a port on a seeder and get
a list of torrents it's seeding. Even for trackers, you have to request a
specific URL to get a (partial) list of available seeders.
~~~
sanxiyn
On the other hand, it is easy to crawl DHT. "Crawling BitTorrent DHTs for Fun
and Profit" (2010) says "We find that we can establish a search engine with
over one million torrents in under two hours using a single desktop PC".
------
pvaldes
Sorry if I seem naive but, is this even legal? ...
~~~
gcommer
I am not a lawyer, but as long as your local laws do not prohibit you from
pinging a given IPv4 address, then I can't imagine any issues. Being
technically legal doens't mean you won't step on some toes though. Everyone
who runs full internet scans has reported getting lots of exclusion requests,
(baseless) legal threats, and even retaliatory DDoS attacks coming back at
their source IPs.
Massscan ships with an exclude list which you would do well to utilize:
[https://github.com/robertdavidgraham/masscan/blob/master/dat...](https://github.com/robertdavidgraham/masscan/blob/master/data/exclude.conf)
If you try to run an internet wide massscan without this list, it will stop
you and give you a warning about how to use the list. You then either manually
override the warning, or use the list.
~~~
ahelwer
Some interesting emails are transcribed in the comments of that exclusion
list. I liked the one from General Dynamics.
------
curiously
what are ip port scanners commonly used for?
------
sigmonsays
great.. now everyone can easily find out if my ssh port is open...
~~~
hobs
Everyone already does, and is trying to login right now. Check your logs.
------
cmdrfred
Intresting...
|
{
"pile_set_name": "HackerNews"
}
|
US pushing local cops to stay mum on surveillance - ser_ocelot
http://hosted.ap.org/dynamic/stories/U/US_CENSORING_SURVEILLANCE?SITE=AP&SECTION=HOME&TEMPLATE=DEFAULT&CTIME=2014-06-12-14-47-09
======
bediger4000
Does anybody else get the feeling that there's still quite a bit left of the
warrantless, dragnet surveillance rabbit hole?
I keep wondering when the next really big thing will drop - like evidence of
industrial espionage by the NSA on behalf of some specific company, or a list
of targeted organizations that includes things like the Red Cross, or IEEE.
|
{
"pile_set_name": "HackerNews"
}
|
Meltdown patch reduces mkfile(8) throughput to less than 1/3 on OS X - mpweiher
http://blog.metaobject.com/2018/01/meltdown-patch-reduces-mkfile8.html
======
ghostcluster
I have a suspicion that APFS is partly to blame. When I saw benchmarks of APFS
vs. HFS+ [0, 1], it appeared that Apple had managed to transition to a
filesystem that is markedly slower at reads and writes than the 20 year old
one it was replacing.
[0] [https://malcont.net/wp-
content/uploads/2017/07/apfs_hfsplus_...](https://malcont.net/wp-
content/uploads/2017/07/apfs_hfsplus_speed_comparison_small4.png)
[1] [https://malcont.net/wp-
content/uploads/2017/07/apfs_hfsplus_...](https://malcont.net/wp-
content/uploads/2017/07/apfs_hfsplus_latency_with_scale_from_zero-1.png)
~~~
mpweiher
As I wrote in the article, I already accounted for this. The raw combined
performance degradation was 4x. APFS itself seems to be around 20%. Now that
is somewhat rough, as APFS degradation may itself by non-linear. However,
others have measured the pure APFS costs and they seem to be roughly what I
saw:
[https://www.macobserver.com/analysis/apfs-performance-
lags-h...](https://www.macobserver.com/analysis/apfs-performance-lags-hfs/)
~~~
tinus_hn
Could you please disable that annoying behavior where scrolling slightly left
or right swaps to a different article? It’s hard so imagine anyone actually
uses that and it is extremely annoying.
~~~
FreeFull
That's a problem with the Blogger platform, it might not be possible to
disable that behaviour without switching to something else entirely.
~~~
vanderZwan
Have you ever heard of the expression "How do you know someone disables
javascript on the internet through an add-on? They'll tell you"?
No? Well, anyway, one draconic way to fix this is installing something like
uMatrix or NoScript. This particular website works fine without JS.
~~~
dawnerd
Likewise you can just turn on reader mode or whatever the mobile browsers call
it. Should pull just the text out.
~~~
vanderZwan
I wonder if we couldn't just make an "open in reader mode" add-on
------
gok
This is an utterly pathological test case. mkfile makes a lot of syscalls
which do very little work. Heck you could have made the batch size 1 byte;
that would really show a slowdown!
------
davej
Can someone who is more familiar with Meltdown speculate on this? Is this a
quick fix and is it likely to be optimised over time and become less slow? Or
is this the raw trade-off and current hardware will always suffer slow-downs
to this degree. Can an OS be rearchitected in ways that would mitigate the
performance loss?
~~~
jsheard
> Can an OS be rearchitected in ways that would mitigate the performance loss?
The performance loss comes from extra overhead on syscalls, so it could be
sidestepped by allowing programs to do more work per syscall.
At its simplest that could mean adding more syscalls that perform the same
operation over an arbitrarily long list of inputs (like linux's sendmmsg) but
I would like to see kernels take inspiration from modern graphics APIs that
allow arbitrarily long lists of _arbitrary operations_ to be batched and
executed with a single syscall. GPUs had this stuff figured out years ago.
~~~
sanxiyn
Note that Red Hat patented batching syscalls...
[https://www.google.com/patents/US9038075](https://www.google.com/patents/US9038075)
~~~
bch
1) this is exciting, if not also brilliant
2) SQL transactions as prior art? If they’re successful w their patent, I sure
hope there’s a way for BSDs to try it on.
~~~
pkaye
RedHat has a patent promise that they will not enforce their patents against
any free software that make use of their patents.
[https://www.redhat.com/en/about/patent-
promise](https://www.redhat.com/en/about/patent-promise)
------
Bitcoin_McPonzi
Just as a reference point, I didn't see any measurable slowdown on mkfile
(New-Item) throughput on Windows 10 after applying the patch. I suspect this
may be more of a filesystem issue.
I also tried this:
$f = new-object System.IO.FileStream c:\temp\test.dat Create, ReadWrite
$f.SetLength(8GB)
$f.Close()
with no speed difference on a patched and unpached system
~~~
luckydude
So I'm not a Windows expert but I've done file system work. If windows is
reasonably smart it will support files with unallocated blocks. Setting the
length to 8GB is not the same as writing 8GB in any reasonable file system.
I'd retry with a script that actually writes the data.
~~~
cmurf
NTFS and APFS support sparse files, HFS+ does not.
------
raimue
The headline is completely bogus. The author switched both the filesystem from
HFS+ to APFS and the Meltdown patch was applied. This effect cannot be
attributed to just one of them without further testing.
~~~
netgusto
I applied the patched on both my systems (iMac 2013 core i7 on Sierra under
HFS+ that was upgraded to High Sierra for the occasion, and a MacBookPro 2017
already on High Sierra under APFS), and I can confirm that _both_ my systems
are seriously and objectively slowed down, 4 days after the patch now.
From what I could observe, applications taking the most serious hit are
electron based (like VSCode, that went from smooth as silk to mildly sluggish)
and Safari.
Docker on mac has also taken a hit, although I couldn't quantify it
objectively.
~~~
jaaames
Ok so I'm not completely insane, everything felt like molasses this week and
that's why.
------
jondubois
I wonder if the inefficiency of the meltdown patches will incentivize cloud
providers to lower the price of large instances that have a high CPU core
count (relative to small instances with low core count).
At the moment, the price of instances goes up linearly relative to CPU core
count - Maybe in part because the performance overhead of virtualizing a
single 32-core machine into 16 2-core machines had been minimal. But now that
the performance overhead of virtualisation is higher (due to isolating the CPU
cores being more expensive), maybe it's more efficient to lease entire CPUs
(with all of their cores) without the patch (and associated overheads).
~~~
tedunangst
If performance is better, why would they charge less instead of more? Why
apply the discount to the more desirable product?
~~~
bobwaycott
My initial guess would be to align pricing with expected performance, which
has now degraded, right? I don’t expect it to happen, but I can see customers
like myself being unhappy with paying—just for example—for an 8-core VPS whose
performance now matches what previously was 4-core performance. So, I don’t
think anyone would expect them to charge less for a higher core count than
lower core count, but adjusting prices downward to match performance wouldn’t
be upsetting.
~~~
jondubois
Yes exactly. To clarify my point; this vulnerability only affects you if
you're sharing a physical machine/CPU with other users (isolated by a
virtualization layer)... So if you choose not to share your physical
machines/CPUs with other users then you are not exposed to that vulnerability
and ideally you also shouldn't need to get these patches and their associated
performance overheads.
Virtualization already has some known minor performance overheads but now
these patches will add even more overheads.
Can cloud providers keep pretending that 4x 2-core virtual instances are as
performant as a single physical 8-core instance?
------
ageofwant
I find it really unhelpful that these 'threads' are being hyped with little
reference to any sort of thread model, reasonable attack vector or
probability. I do not want the kernel on my Arch laptop patched and slowed
down to mitigate against issues that does not reasonably exist in the context
of a laptop user.
By all means patch my browser that runs random js. I'm not in the habit of
downloading and running untrusted binaries - those that do have far greater
problems than Meltdown or spectre already.
Of course I want it patched on AWS, and my bank's backend machines, but you
are now forcing me to continually pay, hour after hour, for insurance against
a thread that I'm happy to not worry about.
Do not steal my cycles to pay for 'security' I do not require.
~~~
megous
Not sure why you're downvoted. It's a perfectly reasonable trade off.
I'll be searching for ways to disable most of these mitigations too after the
dust settles. I rarely run untrusted code, and for that I can probably find a
way to run it securely depending on the perceived threat. A lot of what I do
on my main computer is syscall heavy, and I don't like 25-50% performance hit.
~~~
tzs
You could switch to TempleOS. :-)
Meltdown is a much smaller (but not zero [1]) security risk on TempleOS than
it is on Windows or Unix and Unix-like systems.
[1] At first one might think there is no risk, because TempleOS runs
everything at ring 0 in a single address space so anything that might be
exposed via Meltdown is already wide open. That would be true in the case of
running untrusted binaries. Where Meltdown would still affect TempleOS is in
in the case of trusted binaries being exploited via techniques such as return
oriented programming. Meltdown could make more "gadgets" available in the
binary, increasing the chances that someone could make it read something it
otherwise would not have read.
------
macrael
Is this fix the KAISER fix that is mentioned in the Meltdown paper? That
sounded like it removed the kernel from processes address space, where did it
go?
------
nodesocket
Such a blantely non-real world and sythetic benchmark.
------
saahtb
One of the reasons Node developers hate Windows is because of how stupidly
slow it is to open lots of files... This will teach them
|
{
"pile_set_name": "HackerNews"
}
|
Pioneer spacecrafts' anomalous acceleration solved - cpeterso
http://www.planetary.org/blogs/bruce-betts/3459.html
======
ColinWright
Submitted a few days ago with a small amount of discussion and context:
<http://news.ycombinator.com/item?id=3865881>
The story has been discussed many times:
[http://www.hnsearch.com/search#request/all&q=title%3Apio...](http://www.hnsearch.com/search#request/all&q=title%3Apioneer+anomaly&sortby=create_ts+desc&start=0)
|
{
"pile_set_name": "HackerNews"
}
|
James Cameron: BP Oil Spill Is Just Like 'Avatar' - rblion
http://www.huffingtonpost.com/2010/08/26/james-cameron-bp-oil-spil_n_695556.html
======
aaronbrethorst
Incredibly expensive, something everyone talks about, obnoxious, and it just
won't go away?
Oh, wait no. Apparently BP, Halliburton, et al. are just like the US Military
harvesting Unobtanium. OK, got it.
|
{
"pile_set_name": "HackerNews"
}
|
Sunset District house receives 18 offers, goes for half-million over asking - kyleblarson
http://www.sfgate.com/realestate/article/S-F-real-estate-over-bidding-Outer-Sunset-25th-Av-11102327.php
======
ajoy
Even more insane : [http://sf.curbed.com/2017/4/26/15439048/silicon-valley-
teard...](http://sf.curbed.com/2017/4/26/15439048/silicon-valley-teardown-
sold-home-house)
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: Boolean – a service for sending single question surveys - ranjithajay
Hi HN,<p>I am the founder of Boolean <a href="https://www.booleanapp.com" rel="nofollow">https://www.booleanapp.com</a><p>Boolean is a service for sending single question yes/no surveys. I built Boolean with a hope to bring companies and its customers closer. You can read more about the motivation here - <a href="https://www.booleanapp.com/about.html" rel="nofollow">https://www.booleanapp.com/about.html</a><p>Please let me know what you think.
======
3fuh2r7326
Umm, why is this titled "Launch HN"?
Launch HN is meant for YC funded startups, I'm guessing you are not funded by
YC but want to showcase your startup. You should use a "Show HN" for your
post.
~~~
ranjithajay
Thanks for the tip. Updated.
|
{
"pile_set_name": "HackerNews"
}
|
What are some of the great insights that you got from your heatmaps? - cheekusm
For example, I found that replacing animated user images with real user images in testimonial section has increased the attention span of the testimonial section by 3X. Looking for similar insights?
======
XCSme
Using heatmaps from the [https://usertrack.net](https://usertrack.net) tool on
its own landing page I usually notice:
* What buttons in the header are actually needed/clicked/hovered [https://i.snipboard.io/UShRbI.jpg](https://i.snipboard.io/UShRbI.jpg)
* What non-clickable elements users try to click on (eg. product images, they expect to get a lightbox, but nothing happens)
* If a specific UI element is visible enough and users know it's interactable [https://i.snipboard.io/nJ7AlX.jpg](https://i.snipboard.io/nJ7AlX.jpg)
I personally find the session playbacks a lot more insightful, because
heatmaps don't really tell the whole story, but a session playback can show
you in what order do your users read the page, what are they trying to do,
what are their last actions before they leave your site, etc.
------
tarun_anand
How did you arrive at this insight using a heatmap?
I am curious to know. This is a problem that is there is general for any
analytics feature
~~~
cheekusm
We created a heatmap and did the comparative study of the same page in two
different time periods. One before the changes and one after the changes. The
attention heatmap clearly showed a bright red color in the testimonial section
which was bluish earlier.
~~~
tarun_anand
OK so it was kind of like AB Testing but using heatmaps
~~~
cheekusm
Yep, but data drives because we knew that the testimonial section has low
engagement.
|
{
"pile_set_name": "HackerNews"
}
|
The five “Next Big Things” in open source - SD Times: Software Development News - hendler
http://www.sdtimes.com/content/article.aspx?ArticleID=35058&print=true
======
zhiel
I'm so appalled by the design of this site that I'm not going to read this,
although the topic is interesting...
|
{
"pile_set_name": "HackerNews"
}
|
Europe heatwave: record high of 45C (113F) expected in France - ForHackernews
https://www.theguardian.com/world/2019/jun/25/highs-of-45c-expected-in-france-as-heatwave-scorches-europe
======
pier25
This is the video that opened my eyes on climate change 7 years ago:
[https://www.youtube.com/watch?v=pznsPkJy2x8](https://www.youtube.com/watch?v=pznsPkJy2x8)
It's amazing to think that humanity is still mostly clueless about what is
going to happen.
------
dv_dt
Ironic given the EU has just missed passing a zero carbon 2050 pledge.
[https://www.theguardian.com/environment/2019/jun/20/eu-
leade...](https://www.theguardian.com/environment/2019/jun/20/eu-leaders-to-
spar-over-zero-carbon-pledge-for-2050)
~~~
chewz
Well in Central Europe climate is getting pleasantly mediterranian. People
spend hollidays in the country instead of going to Spain. Agriculture is
booming.
I do not miss cold rainy summers of my youth.
~~~
ForHackernews
Will you miss not having your country swamped with hundreds of thousands of
climate refugees? Because they're coming.
------
billconan
this terrifies me
|
{
"pile_set_name": "HackerNews"
}
|
Discussing Tradeoffs of TLS 1.3 (via Colm MacCárthaigh on Twitter) - evv
https://threadreaderapp.com/thread/978430840198742016.html
======
evv
Prior discussion here:
[https://news.ycombinator.com/item?id=16666057](https://news.ycombinator.com/item?id=16666057)
What a contentious issue! I'm curious to see who will end up swallowing the
cost of this, because it sounds like 0-rtt poses a direct tradeoff between the
expense of application developers and leaf nodes like CloudFlare.
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: Ameelio – Free and Open Source Prison Communication Platform (Part II) - jessehorne
A couple of months ago I made a post here announcing the launch of Letters, the first application developed by Ameelio (<a href="https://ameelio.org" rel="nofollow">https://ameelio.org</a>), a non-profit organization committed to making communication free between incarcerated people and their loved ones. Letters allows users to sign up, type a letter to their loved-one in prison/jail and we handle printing, packaging, stamping and shipping through USPS. It's still totally free and unlimited. We've also have went open source. (<a href="https://github.com/ameelio" rel="nofollow">https://github.com/ameelio</a>)<p>When I made the post on HN (<a href="https://news.ycombinator.com/item?id=23042558" rel="nofollow">https://news.ycombinator.com/item?id=23042558</a>), announcing the launch, we received SO much support. Many of you contacted us and wanted to contribute. With your help, we were able to scale our operations, we gained several amazing teammates and we developed an amazing product that's serving over 5,500 users who've sent around 23,000 letters to their family and friends that are incarcerated. The impact we've made already has been incredible.<p>Letters has been a huge success and we've been planning some things to make it even better. We've revamped the UI with more enhancements coming soon. The next stage for Letters is to focus on scalability and extend functionality to make letters sent from our platform more personal, helpful and even entertaining. We'll be adding games that users can send to their loved ones such as Sudoku, Crossword puzzles and even potentially pop-out board games (TBD). Also, we'll be adding different formats for mail, such as Postcards.<p>In the coming months, we'll be planning and developing Connect, which will be the first-ever free platform for sending messages and having video calls with incarcerated people. We already have a pilot site!<p>We've also just launched a Kickstarter campaign to help us keep up the momentum. You can find it here...<p><a href="https://www.kickstarter.com/projects/ameelio/ameelio-app" rel="nofollow">https://www.kickstarter.com/projects/ameelio/ameelio-app</a><p>I hope this community has enjoyed the update on Ameelio and I look forward to hearing your response.<p>Thank you, HN!
======
gabesaruhashi
Hey y'all again! I am one of the co-founders. Just wanted to highlight that
our growth statistics cannot capture our impact. Countless users have reached
out to thank us and describe Ameelio’s impact on their lives:
I can't tell you how much difference your organization has made for me and my
loved one… my LO gets one 15min call per day... how can you keep a father-
child relationship strong with that? it rips families apart... you have been
able to help... it means a lot... thanks again.
— Steven
Thank u for everything it really helps cause money is so tight and I can’t
afford stamps. I'm choosing stamps to talk to my husband or my heart meds that
are expensive. I don't have insurance. — Savannah
I live in Australia and my husband is incarcerated in PA, so obviously
communication is a massive part of our relationship, especially in written
format. One factor that most USA residents doesn't have to face, is a monetary
factor of sending snail mail, for me to send a card or letter from here to
him, it's costs me $3.20 AUD, over $2 USD, so Ameelio is such a cost saving
thing for us. I love how informed we are of the status of the letter and that
I can send a pic every single time. It's helped me hold things together for us
as a couple. When the facility was on total lockdown, mail was still getting
thru, but letters I'd sent from early April have only just arrived, yet
letters I sent via Ameelio all arrived within a week (at worst). It gave hubby
peace of mind knowing I was okay out here and that I was thinking of him in
there. WIthout those letters, who knows what his mental health would have been
like. Thank you Ameelio, we both appreciate this wonderful service.
------
lhs__
awesome idea. makes no sense that incarcerated people & their families are
paying such steep prices while the rest of us are using hangouts, zoom,
facebook, whatsapp, etc for free
~~~
jessehorne
I agree totally. It's wrong.
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: Recommendo – Get personalized recommendations from the people you trust - BenJammin81
https://itunes.apple.com/de/app/recommendo/id932405753?mt=8
======
BenJammin81
Free mobile recommendation app turning your friends into your remote eyes and
ears on the hunt for great brands, products and events.
|
{
"pile_set_name": "HackerNews"
}
|
Promiscuous Cookies and Their Impending Death via the SameSite Policy - kkm
https://www.troyhunt.com/promiscuous-cookies-and-their-impending-death-via-the-samesite-policy/
======
AndrewDucker
Firefox is planning likewise:
[https://bugzilla.mozilla.org/show_bug.cgi?id=1604212](https://bugzilla.mozilla.org/show_bug.cgi?id=1604212)
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: How to scrape Google's similar searches? (challenge) - gbachik
Alrighty guys! I've been at this for about 4 hours straight with no dice!<p>I'm hoping some genius here can help me out.
Open a new tab and type in a band name like: "All Time Low"<p>You'll notice a box on the righthand side with more info about the band.<p>If you click the down arrow you'll see a "People also search for" section.<p>My goal is to get those names.<p>I've tried everything I could possibly think of to do it.
The only thing I got working was phantomJS and the time it took to scrape just one page was over 5 seconds.
Thats way too long...<p>Anyone got a better solution than me?
======
nostrademons
So, I know the folks who do DOS protection for Google, and...well, good luck.
Scrapers get blocked, and the folks in charge of that are very, very good at
what they do. Your best bet is probably to put up with the slow query rate and
mimic ordinary user traffic. You really, really do not want to end up on
Google's bad side.
~~~
Jake232
Google isn't _that_ difficult to scrape. I've worked on numerous projects
doing it and it just takes a little thinking outside the box and a few
proxies.
|
{
"pile_set_name": "HackerNews"
}
|
High Energy Electron Confinement in a Magnetic Cusp Configuration - kristianp
http://arxiv.org/abs/1406.0133
======
kristianp
Discussion on talk-polywell.org here: [http://talk-
polywell.org/bb/viewtopic.php?f=10&t=5425](http://talk-
polywell.org/bb/viewtopic.php?f=10&t=5425)
|
{
"pile_set_name": "HackerNews"
}
|
I Put In 5 Miles at the Office: Walking Workstations - robg
http://www.nytimes.com/2008/09/18/health/nutrition/18fitness.html?ref=fashion
======
michael_dorfman
Has anyone here actually tried this? It sounds interesting, but I'd sure like
to suss it out further before making the investment...
|
{
"pile_set_name": "HackerNews"
}
|
Urban heat island - onetimemanytime
https://en.wikipedia.org/wiki/Urban_heat_island
======
gavia1
London is regularly 3-4° warmer than the towns and village that border the M25
ring road. You can genuinely feel the difference when you take a train into
the city and vice versa.
~~~
quickthrower2
Is that allowing for the time difference between when you get on and get off
the train affecting the temperature?
~~~
gavia1
Absolutely. If you so wish you can take the train at noon and get off at 12:30
where any temperature difference due to the sun should be minimal.
~~~
majewsky
Not terribly relevant to your point, but: Noon is actually a time in the day
where it is still getting warmer. Temperature usually peaks around 16:00 or
17:00 in the summer.
Example:
[http://wetterstationen.meteomedia.de/?station=104870&wahl=vo...](http://wetterstationen.meteomedia.de/?station=104870&wahl=vorhersage)
(the forecast diagram for my local weather station)
~~~
onetimemanytime
any idea why? The ground starts releasing accumulated energy or what?
~~~
gavia1
It probably reaches saturation at that time of day where it can no longer
absorb anymore heat.
------
Uhhrrr
From the article: 'If the urban heat island theory is correct then instruments
should have recorded a bigger temperature rise for calm nights than for windy
ones, because wind blows excess heat away from cities and away from the
measuring instruments. There was no difference between the calm and windy
nights, and one study said that "we show that, globally, temperatures over
land have risen as much on windy nights as on calm nights, indicating that the
observed overall warming is not a consequence of urban development."'
This is really surprising to me. Not least because, on a sunny day, SF can go
from pleasant to brutal as soon as a breeze kicks up.
------
Albertchrist
Not only in US. This is applicable to all the major cities in the world.
------
ccheath
isn't this also (at least partly) why cities are less likely to be affected by
tornadoes?
~~~
eesmith
Quoting the link:
> Research has been done in a few areas suggesting that metropolitan areas are
> less susceptible to weak tornadoes due to the turbulent mixing caused by the
> warmth of the urban heat island.
------
haunter
So every big city pretty much
------
quickthrower2
Sydney is one of those.
~~~
H8crilA
Aren't all cities one of those? Bigger=bigger impact.
~~~
quickthrower2
I think it has quite an effect in the summer because the city is cooled by
being near the ocean but the western suburbs get super hot, so a 10 degree
difference might not be unusual at times, for two places about 30km away.
|
{
"pile_set_name": "HackerNews"
}
|
Hi HackerNews - IceyEC
http://maps.chrismacnaughton.com/Hi%20HackerNews!
======
IceyEC
Probably should make sure that bad geo location doesn't make the whole thing
break :)
------
IceyEC
It's amazing what you can accomplish while waiting for a Windows 7 install!
|
{
"pile_set_name": "HackerNews"
}
|
iTunes Store Japan labels all purchases as Title “” by Artist “null” - kalleboo
https://twitter.com/search?q=itunes%20null&src=typd
======
kalleboo
Anyone who let through a massive Unicode bug into production, you can feel
_slightly_ better now that the world's biggest music retailer broke sales in
their second biggest market...
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: Is there a website, which analyzes UX of Products? - noobplusplus
I came through this awesome site useronboard.com which does a teardown of how different services onboarded different users.<p>Is there a similar site, which does a teardown of features of webapps or SaaS Apps?
======
ASquare
There's one that does it for iOS apps:
[http://uxarchive.com/](http://uxarchive.com/)
------
sogen
iOS dev weekly recently had two sites linked. Sorry can't remember the URLs
right now, I'll try to search for them
|
{
"pile_set_name": "HackerNews"
}
|
Confirmed: Amazon RDS Mysql is not vulnerable to the Password Exploit - mark_ellul
https://forums.aws.amazon.com/thread.jspa?messageID=353148
======
mark_ellul
Sorry my last post had a funky char after the URL
|
{
"pile_set_name": "HackerNews"
}
|
The biggest leak of TTIP documents yet: more than 100 confidential papers - rendx
https://www.reddit.com/r/europe/comments/3d0ftu/this_is_the_biggest_leak_of_ttip_documents_yet/
======
AndrewGaspar
Proposal to make it easier for US professionals to work in the EU and vice-
versa:
[https://www.documentcloud.org/documents/2162296-14-10-07-eu-...](https://www.documentcloud.org/documents/2162296-14-10-07-eu-
kom-themenpapier-mobilitat-geschwarzt.html)
------
ExpiredLink
Don't know what "confidential papers" means but TTIP documents are published
regularly (e.g.
[http://trade.ec.europa.eu/doclib/press/index.cfm?id=1230](http://trade.ec.europa.eu/doclib/press/index.cfm?id=1230)
) but seemingly not many people are interested in them.
~~~
swombat
From this page:
> The European Commission is negotiating TTIP as openly as possible.
> A final agreement would have 24 chapters, grouped together in 3 parts:
> \- Market access
> \- Regulatory cooperation
> \- Rules
> And as part of our latest transparency initiative, we're publishing:
> \- new 2-page factsheets, in plain language
> \- negotiating texts we've given US negotiators:
> \- - EU textual proposals on parts 2 and 3 of the TTIP – these set out how
> we'd want a final deal to read, line by line
> \- - EU position papers – what we want to achieve in a chapter.
> We will publish further texts as they become available.
> We will make the whole text of the agreement public once negotiations have
> been concluded – well in advance of its signature and ratification.
Sure seems like they're trying to open this up... wonder what the leak is
about then?
~~~
M2Ys4U
Saying that they're trying to open this up is like saying a fat person is on a
diet because they've switched from regular cola to diet cola.
It doesn't make a dent unless they also exercise more and eat less.
------
tomohawk
It is so ridiculous that we allow these people to play masters of the
universe, with little or no accountability or transparency.
We shouldn't settle for scraps.
~~~
andybak
My off-the-cuff reaction is the same as yours but look what happens to
institutions where all negotiation is public: posturing, media tyranny,
corridor diplomacy and a huge gap between public position and any real
opinion.
Transparency has a cost also.
------
stsp
Direct links to documents:
[http://pastebin.com/fA7z2BPi](http://pastebin.com/fA7z2BPi)
(pastebin since HN wouldn't let me post the full link list as a comment)
~~~
13throwaway
Download them all with wget:
wget -O -
"[http://pastebin.com/raw.php?i=fA7z2BPi"](http://pastebin.com/raw.php?i=fA7z2BPi")
| wge -i -
------
dhimes
TTIP: Transatlantic Trade and Investment Partnership- a secret deal between US
and EU
~~~
sandstrom
It's correct that much of the details are secret, but I'd stay it's still more
correct to label it as a free-trade agreement than a 'secret deal'.
I think it's insane that negotiations aren't public, and I also disagree with
some of the contents being discussed. But I think it's more objectively
described as a free-trade agreement (in which there are also a lot of good
parts).
~~~
dhimes
That's a fair point, but since we are all pissed off at our governments for
taking liberties with our well-intentioned permission to conduct espionage on
behalf of our well-being, your are extending more benefit-of-the-doubt than a
lot of us are. That's probably to your credit. But I am wary that the 'secret'
stuff has a lot of implications that are only on the edge of what we would
think of as trade agreement- intel sharing and such.
It _could_ , I suppose, be a positive: everybody come clean about the
past(keep that stuff a secret) and then have fair and reasonable limitations
going forward. There was a day when I thought like that... :)
------
Dwolb
Does anyone know credentials of the people negotiating these deals? Are they
well-paid?
If these deals' negotiations have to be secret and since so much is at stake,
I'd hope my government would have the best negotiators, psychologists,
economists, spies, or other personnel that money can buy.
~~~
swombat
Based on ExpiredLink's comment elsewhere in this thread, it doesn't seem like
the deal is secret at all? Here's the EU page on it:
[http://trade.ec.europa.eu/doclib/press/index.cfm?id=1230](http://trade.ec.europa.eu/doclib/press/index.cfm?id=1230)
~~~
sandstrom
I some parts are still held secret; this is only the EU-side, I think the US
are still keeping their citizens in the dark; and EU only started publishing
some details after heavy criticism, it should have been transparent from the
beginning.
~~~
kuschku
And the EU side decided that all ISDS trials have to be done at a court that
is staffed with judges from both contract partners and rules in public.
------
gotofritz
Needs a mirror
|
{
"pile_set_name": "HackerNews"
}
|
Firefox reached 29% share in Europe - rockstar9
http://mozillalinks.org/wp/2008/04/firefox-reached-29-share-in-europe/
======
dualogy
Sometimes you have no choice. Under Linux, for once: I'm loving it, but I
loathe FireFox which is still the only decent browser I've come across there
(but then, I'm only a recent convert = noob in Unixland). Under Windows, my
favourite was Safari, with IE 7 second. But Safari under Wine isn't pretty.
------
kxt
Also, accoring to <http://www.en.rankings.hu/> Firefox 2.x is the most used
web browser version in Hungary. (Although IE6 + IE7 combined are still way
beyond 50%.)
|
{
"pile_set_name": "HackerNews"
}
|
Comparative Advantage in economics confirmed by evidence - chewxy
http://web.mit.edu/newsoffice/2012/confirming-ricardo-0620.html
======
chewxy
Paper can be found here: <http://ideas.repec.org/p/nbr/nberwo/17969.html>
|
{
"pile_set_name": "HackerNews"
}
|
The "Unix issue" is 35 years old - phkamp
http://www3.alcatel-lucent.com/bstj/vol57-1978/bstj-vol57-issue06.html
35 years ago they wrote: "UNIX is not the end of the road in operating systems innovations, [...]" but it very much was the final word: Today the only OS's left are those which converged on "the UNIX model" and your mobile and your TV both run UNIX.
======
phkamp
... and to be fair: Rob Pike absolutely nailed this 13 years ago:
[http://herpolhode.com/rob/utah2000.pdf](http://herpolhode.com/rob/utah2000.pdf)
|
{
"pile_set_name": "HackerNews"
}
|
Apple's Swift Programming Language May Be Adopted by Google for Android - Jerry2
http://www.macrumors.com/2016/04/07/google-possibly-adopting-swift-for-android/
======
thevibesman
Discussion on the original source of the story:
[https://news.ycombinator.com/item?id=11451093](https://news.ycombinator.com/item?id=11451093)
------
Grazester
I don't see that happening
|
{
"pile_set_name": "HackerNews"
}
|
Rocket Launch Real-Time Telemetry Server - JoshTriplett
http://live.psas.pdx.edu/profiles/Default
======
JoshTriplett
Also see [https://twitter.com/pdxaerospace](https://twitter.com/pdxaerospace)
for live commentary on the launch.
|
{
"pile_set_name": "HackerNews"
}
|
Malcolm Gladwell on spaghetti sauce - mun411
http://www.ted.com/talks/lang/eng/malcolm_gladwell_on_spaghetti_sauce.html
======
covercash
[2004]
|
{
"pile_set_name": "HackerNews"
}
|
BitBucket now has voting on issues. - planckscnst
https://bitbucket.org/site/master/issue/3674/add-ability-to-vote-for-issues-bb-3647
======
planckscnst
Issues for BitBucket itself, sorted by votes.
[https://bitbucket.org/site/master/issues?status=new&status=o...](https://bitbucket.org/site/master/issues?status=new&status=open&sort=-votes)
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: A Google chrome extension to add a little bro in your browsing. - swiil
https://chrome.google.com/webstore/detail/bro-ifyme/hfpgpmnapkjlmdogaeiimdoplddnokeb?hl=en-US&utm_source=chrome-ntp-launcher&authuser=1
======
DonateKarma
Bro, did you give yourself a 5 star review? Not cool.
------
swiil
I whipped this up in a couple of hours as a fun project.
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: Presentation on giving presentations? - ZoFreX
I'm pretty sure I saw this on HN but my search-fu is weak today. It was a presentation (on slideshare I think) on how to give presentations. It emphasised bold use of images and colour, and minimal use of text. If anyone has any idea which one I'm talking about, I'd appreciate a link very much :)
======
ZoFreX
Nevermind, I did eventually stumble upon it! It's "Steal this presentation" by
jessedee. Slides: [http://www.slideshare.net/jessedee/steal-this-
presentation-5...](http://www.slideshare.net/jessedee/steal-this-
presentation-5038209) HN discussion:
<http://news.ycombinator.com/item?id=1939272>
~~~
btilly
Another useful presentation on giving presentations is
<http://perl.plover.com/yak/presentation/>.
It is somewhat idiosyncratic, but it is good advice.
~~~
ZoFreX
Interesting, thanks!
|
{
"pile_set_name": "HackerNews"
}
|
Defund the NSA - This Isn't Over - sethbannon
http://defundthensa.com/#
======
pvnick
This is great! A followup contact, either praise or criticism, is like
Pavlovian conditioning for our representatives. I'm happy to say I was able to
give positive reinforcement to my congressman. Forgive me if I'm mixing up my
theories, I haven't taken a psychology class in several years.
Also, great job to Sina and the taskforce!
~~~
iwasanewt
What you're talking about is operant conditioning (
[https://en.wikipedia.org/wiki/Operant_conditioning](https://en.wikipedia.org/wiki/Operant_conditioning)
)
------
tieTYT
Here's what I want: A link that I can click on that will add a google calendar
event to notify me with the list of representatives to vote AGAINST when
voting season comes. I'm pissed now, but like all americans, I'll probably
forget about this come election.
~~~
cinquemb
That is a good idea. Yesterday in irc, we could only think of trying to get
people to confront their local reps in their offices. I'll pass this along.
Edit: If anyone knows any place to programmatically get (r)election dates for
districts, please tell us here:
[https://github.com/tfrce/DefundTheNSA/issues/14](https://github.com/tfrce/DefundTheNSA/issues/14)
~~~
na85
>irc
Which channel/network?
~~~
cinquemb
##rritf/freenode, but I don't know if anyone is there now.
------
thinkbohemian
Idea: pre-prepared websites that call to attention representatives that are
against privacy (voted for SOPA, the NSA, TSA, etc.) make them available to
deploy on heroku, github, s3, whatever. Then developers in support of privacy
can litter the internet with them come election time.
If all these guys care about is getting re-elected, lets make it clear not
supporting their constituents will seriously damage their chances.
Also love the followup idea.
~~~
diminoten
What makes you think they're not supporting their constituents?
~~~
drcube
Because they support spying on them. That's kind of the opposite of supporting
them.
~~~
diminoten
You should pay more attention to polls - it's not quite the landslide you're
implying it is. Many people are okay with being spied on.
~~~
drcube
This is why we have morals. So we don't have to conduct opinion polls to see
what's right and wrong.
Plenty of atrocious things were wildly popular. They get absolutely zero extra
legitimacy for being so.
~~~
diminoten
Do you believe your moral compass to be perfect, or is it flawed?
In the event that you think it's flawed, how do you recommend making sure your
flawed moral compass isn't going to cause something immoral to happen?
~~~
drcube
>how do you recommend making sure your flawed moral compass isn't going to
cause something immoral to happen?
Careful reflection. Self examination. Dialog and debate with others I consider
intelligent and ethical. Certainly not a popularity contest.
~~~
diminoten
Each one of the ways you check your moral compass are easily corruptible by
your moral compass.
A vote, or a so-called "popularity contest", is, out of all the things you
just listed, the least corruptible by your own biases.
------
ctdonath
A near-even split on the first try over a high-stakes issue is a pretty darned
good showing. Lay into those supportive of the state violating every semblance
of privacy, and then try again.
~~~
diminoten
I said this before, but the closeness of the vote has _nothing_ to do with how
close the vote actually was. Once the whips figure out if a bill is going to
pass or not, they then let people vote however will get them more money.
~~~
bargl
I'm curious how whips work. Do you have anything I could read up on it to
learn more? It makes sense from a certain perspective, but does that mean that
they decided to look into how many people were going to vote no for sure
(which was 217). Then the remaining legislators would get more money if they
voted yes (205) or maybe they voted yes because it was what their constituents
wanted. That's all speculation but it's seriously interesting and very
disturbing.
~~~
diminoten
Once you know a vote isn't going to happen, the voting gets rearranged to look
good. Since the outcome is the same, it doesn't really matter how the outcome
happens, so long as the 'yes' or the 'no' is still a 'yes' or 'no'.
And it's probably one of the least improper things that happens in US
government.
I'd also like to take a moment to explain why this vote doesn't have a chance,
ever, and it's the exact same reason all spending cuts to defense don't
generally go through - all it takes is one bad thing to happen, and suddenly
every single person who voted to reduce defense spending/the NSA budget is at
risk in their district.
It's the easiest attack ad in the world to construct: "My opponent was one of
the people who took away the NSA's power to defend this country, and as a
result we were attacked again!" That's a guaranteed and immediate hit that's
very easy to understand. What's _much_ more complicated is the 'yes' argument.
It's nuanced, confusing, many constituents don't even want it, and in general
a big risk.
The _biggest_ win for members of congress is if no change actually happens,
and yet they still get to have a voting record that shows they're against what
the NSA is doing (exactly how it turned out). Those "yes" votes were probably
pretty damn expensive for the congresspeople who got them, but they'd be HUGE
liabilities if the vote actually passed.
In other words, 'yes' votes were worth more if the 'yes' lost.
~~~
Amadou
While that is all true, it is still worth noting that worst case they still
cared enough to be disingenuous about their voting records.
If they believed that they could just get away with sweeping it under the rug,
they would not even have tried to manipulate the optics of the vote. That's
still a victory in the face of all the propaganda downplaying the importance
of the issue.
~~~
diminoten
They _are_ getting away with sweeping it under the rug. You're being pandered
to by worthless voting records, if anything I'd be more upset were I in your
position.
------
evanm
The NSA spying program is horrible, yes. And I think it should be halted
immediately. But we need the NSA—they do important things for this country
despite the bad clout they've received because of this one domestic program.
That program is minuscule in size compared to the sum of the important
operations that are conducted in the agency.
I want to make myself clear. I think the domestic intercepts are 100% wrong
and unconstitutional. That needs to stop. But that agency is home to smart
people who do other necessary work to protect us.
~~~
matchu
For reference, here's the text of the amendment: [http://amendments-
rules.house.gov/amendments/AMASH_018_xml27...](http://amendments-
rules.house.gov/amendments/AMASH_018_xml2718131717181718.pdf)
It short, it defunds the NSA's ability to conduct surveillance on people who
are not being investigated.
------
jasonkolb
I think this could get legs.
Are there any other like this issues where the government is blatantly
thumbing its nose at its own people? I'm running a survey right now and one of
the elements is support for the NSA surveillance, and almost nobody supports
it. Like, 85% just say it's flat-out wrong.
~~~
rayiner
Survey of who? Do you have a tech-biased or liberal-biased or youth-biased
audience?
[http://www.washingtonpost.com/politics/most-americans-
suppor...](http://www.washingtonpost.com/politics/most-americans-support-nsa-
tracking-phone-records-prioritize-investigations-over-
privacy/2013/06/10/51e721d6-d204-11e2-9f1a-1a7cdee20287_story.html) ("Overall,
56 percent of Americans consider the NSA’s accessing of telephone call records
of millions of Americans through secret court orders 'acceptable,' while 41
percent call the practice 'unacceptable.'")
~~~
jasonkolb
I'm just trying to get random people to respond. I would refer to gknoy's
comment about how easy surveys are to manipulate, and question whether the
survey you mention was created with a purpose.
I've been working with some research companies lately and one thing which
surprised me was the fact that surveys are often constructed with the sequence
of questions carefully set up to test various messages. Unless you can see the
survey itself, I would question the results.
For example, the question prior to 'How do you feel about the NSA’s accessing
of telephone call records of millions of Americans through secret court
orders' might have been 'Is it important that the NSA’s accessing of telephone
call records of millions of Americans has stopped terrorist attacks?' This
type of question can mightily swing the outcome, so if you don't have access
to the survey you need to ask yourself if the organization putting out the
survey has an agenda...
~~~
rayiner
What do you mean "random people?" What sorts of sites are you posting the
survey to? If people like my mom aren't part of your survey demographic, your
methodology is flawed.
The Washington Post-Pew survey is detailed (through a link) in the article,
specifically this question:
"Q: As you may know, it has been reported that the National Security Agency
has been getting secret court orders to track telephone call records of
MILLIONS of Americans in an effort to investigate terrorism. Would you
consider this access to telephone call records an acceptable or unacceptable
way for the federal government to investigate terrorism?"
58% responded 'acceptable' and 41% responded 'unacceptable'.
~~~
Amadou
FWIW, I think the WAPO-PEW phrasing is slightly biased in favor of the NSA. I
think the following would be more accurate and thus more closer to neutral
(italics indicate changes):
"Q: As you may know, it has been reported that the National Security Agency
has been getting secret court orders to _collect_ telephone call records of
_nearly all American cell phones_ in an effort to investigate terrorism. Would
you consider this _collection of_ telephone call records an acceptable or
unacceptable way for the federal government to investigate terrorism?"
What isn't clear to me is if the phrasing has changed from the survey a month
ago to the most recent survey. If the phrasing (of the entire survey because
cross-question context is important) is not identical then the results just
aren't comparable no matter what biases may or may not be built into the
questions.
------
mtgx
Might as well add this one to the criticism sent to your representative:
[http://www.washingtonpost.com/politics/congress/senate-
bill-...](http://www.washingtonpost.com/politics/congress/senate-bill-
authorizes-sanctions-on-russia-or-any-other-country-offering-snowden-
asylum/2013/07/25/feaaf55e-f53c-11e2-81fa-8e83b3864c36_story.html)
------
Fuzzwah
Great site. I was able to research and find that Congresswoman Kyrsten Sinema,
serving Arizona's 9th District was cosponsor of the Amash bill but voted
against the amendment, stating that it "has an unintended consequence".
Her press release is full of wonderful contradictions and weasel words:
[http://sinema.house.gov/index.cfm/press-
releases?ID=b23deeab...](http://sinema.house.gov/index.cfm/press-
releases?ID=b23deeab-d42e-4a22-808c-787ef7190761)
From:
“I have very real concerns about the federal government’s action and lack of
transparency regarding the collection and retention of law-abiding Americans’
private information. "
Straight to:
"I believe that we must work toward less intrusive methods to ensure our
security. The broad language we considered today could have limited the
ability of our national security and law enforcement community to prevent the
bombing plot against the New York subway system or to quickly respond to
events like the Boston bombing."
Wrapping it all up with:
"There are other ways than the invasive collection of metadata to ensure the
security of Americans while protecting our precious 4th Amendment rights.”
Ok... so there are other ways, gotcha.... but you don't vote for an amendment
which would have forced the NSA into using / finding other ways. Cool.
Edit: I give her props for responding to my tweet though:
[https://twitter.com/fuzzywah/status/360441317609840642](https://twitter.com/fuzzywah/status/360441317609840642)
------
AndrewKemendo
Does anyone find it ironic that the same folks who are anti-libertarian (not
necessarily the HN crowd) and anti-tea party are strident supporters of a tea-
party favorite congressman's amendment. The idea that such a group would rally
around someone who they would not have voted for, seems strange.
I am not sure if I should be proud that a citizenry can see past politics and
rally based on substance, or if they are totally out of touch with how
politics works.
------
mey
Source info
http://clerk.house.gov/floorsummary/floor.aspx?day=20130724
It was Roll call #412, the Amash ammendment for Bill H.r. 2397
http://clerk.house.gov/evs/2013/roll412.xml
http://www.govtrack.us/congress/bills/113/hr2397
http://www.govtrack.us/congress/votes/113-2013/h412
------
evykoala
I called both of mine (FL), one voted one way and the other the other. Do I
thank the one, and what would I say to the other?
~~~
jdp23
Good job calling! And yes, call both again - with thanks (it shows you really
care and are paying attention), and with disappointment, asking why they voted
the way they did, letting them know this may influence your vote in the
primary and general election, and recommendations about what they should read
to get a different perspective when the next vote comes up.
~~~
mzs
What's the list of stuff they could read? Thanks
------
giardini
Astonishingly page doesn't work in Opera.
And why all the effort in a "defund NSA" site to find out as much as possible
about visitors (e-mail, zip code) and link them to Facebook, Twitter and
Google, the second-tier sinners in this scandal?
Just provide good information at a pre-defined URL - I'll get around to it if
I want to.
~~~
beaugunderson
We will definitely test in Opera going forward--thank you for reporting that
it doesn't work.
We are trying to figure out how to best spread a message while still being
privacy-conscious. One possible idea is to put the sharing functionality on a
second page, thus allowing people who want to share to do so but not loading
scripts for people just visiting for the first time. Another is to load
sharing scripts on the same page asynchronously only if people click a 'Tweet
my legislator!' button--that's how the current site would work if there were
not the three social buttons at the bottom of the page.
We'll also be dropping Google Analytics for Piwik (which is self-hosted) soon.
------
JumpCrisscross
Representatives up for election in 2013 [EDIT: 2014] should be flagged. Ones
in competitive states should be at the top, with donation links for those who
voted Aye. If they voted Nay and their competitor is anti-NSA, their
competitor gets a donation link by the incumbent's name.
~~~
dragonwriter
> Representatives up for election in 2013 should be flagged.
That's going to be a pretty short list, as regular elections for all seats of
the House of Representatives (and one-third of the seats of the Senate) occur
in every even-numbered year.
The only House elections in 2013 would be special elections, which would
normally be to fill a _vacant_ seat, and thus would not have an incumbent
running.
------
joelg236
Not sure who would know how to fix this, but the tweet button only puts
half[1] of the message in. (URL maybe too long)
[1] - [http://imgur.com/z7JDuXV](http://imgur.com/z7JDuXV)
~~~
FridayWithJohn
weird, it worked fine for me. Try to just manually add it. The positive Tweet
was "Thank you for supporting #privacy! You're earning my vote, keep up the
good work! #defundNSA [http://defundthensa.com/"](http://defundthensa.com/")
while the negative Tweet was: "It's shameful that you voted for
unconstitutional record collection instead of #privacy! #defundNSA
[http://defundthensa.com/"](http://defundthensa.com/")
------
izx
another good link, providing full information about everyone that voted on
this, with clickable links to more detailed information about each
representative.
Makes it easier to get people to pester the appropriate representative.
[http://projects.washingtonpost.com/congress/113/house/1/vote...](http://projects.washingtonpost.com/congress/113/house/1/votes/412/)
------
mattmanser
Broken on Chrome/Win 7.
EDIT: Whoops, it's Adblock Plus on Chrome. For some reason it gets rid of most
of the site.
------
wtvanhest
What is going on with the photo of Judy Chu and the guy below her? I'm
referencing the duct tape.
------
tvtime15
WWRPD?
------
potatoman2
I'm a trifle pessimistic over the chances of this ever succeeding.
~~~
pvnick
Did you not see the vote spread yesterday? Twelve vote difference. That's
incredible, and this is only the beginning.
Also remember, there are still leaks to come, we've only seen a glimpse of the
full scope of the revelations.
~~~
haakon
My understanding is that even if it had passed with flying colours, Obama
would have vetoed it. So all of this process is just for show.
~~~
ctdonath
If it had passed with flying colors, pressure on the Obama to _not_ veto it
would be tremendous.
~~~
sillysaurus
He's already been reelected, so he doesn't care what the general public thinks
of him.
~~~
ctdonath
True that he doesn't care per se, but as I doubt he's going to quietly retire
to a Hawaiian villa in 3.5 years, he does have to gauge who thinks what of
this presumably unexpected issue & backlash.
------
btbuildem
FYI, you're missing the congresspeople who abstained.
~~~
beaugunderson
Very good point--abstentions and absences should also be listed.
~~~
chinpokomon
Had those who abstained voted yes, it would have been a tie. It would have
still failed to pass because the WH would have the final say, but I'm
encouraged that it was as close as it was.
------
josephby
Too many secrets.
|
{
"pile_set_name": "HackerNews"
}
|
In Law Schools, Grades Go Up, Just Like That - dnorris10
http://www.nytimes.com/2010/06/22/business/22law.html?&pagewanted=all
======
gaius
_If somebody’s paying $150,000 for a law school degree_
Colleges don't sell degrees, they sell educations - you have to earn the
degree. Or you used to, anyway. Why not skip all the lectures, coursework and
exams and save time?
|
{
"pile_set_name": "HackerNews"
}
|
The Impending Demise of the University - nostrademons
http://www.edge.org/3rd_culture/tapscott09/tapscott09_index.html
======
tokenadult
I thought this looked familiar:
<http://news.ycombinator.com/item?id=642478>
|
{
"pile_set_name": "HackerNews"
}
|
Young entrepreneurs turn a Tweet from Richard Branson into $1 Million - ahlemk
http://smallbusiness.yahoo.com/advisor/young-entrepreneurs-turn-a-tweet-from-richard-branson-into--1-million.html?fb_action_ids=10100137262022753%2C10100137211768463%2C4381961266023%2C10100137295874913%2C10100137272476803&fb_action_types=news.reads&fb_ref=type%3Aread%2Cuser%3Ayo7P_jX-MtPx1x1aimvV0XIDiNE%2Ctype%3Aread%2Cuser%3AdNxYkXFY8RDbENFkZ8cz-oFwOPs%2Ctype%3Aread%2Cuser%3A8WxvqIFAUhtDWjtWTnfik46e8fU&fb_source=other_multiline&action_object_map=%7B%2210100137262022753%22%3A10151032496944835%2C%2210100137211768463%22%3A10151032496944835%2C%224381961266023%22%3A10150969731529342%2C%2210100137295874913%22%3A10151086246274935%2C%2210100137272476803%22%3A10151906558735416%2C%2210100137271788183%22%3A10151022720879675%7D&code=AQDR1t5ao7gGR4OkAlE4PNTI7gXZAqwr_NpJBcAW67r7qpzIzX-Shkw5R2-sdr3LveO52R9KqKdUUO09s-oICChAi1_bq0aBOa1kI1qUK6LQATQMrCKiiSgXtEkYIyta6mzZqTxUpRL1uXg5KxPVqxP_Ui8FtGq_6h0Vwbx6jCw1NiMXmR4Mlub8IZaenWWpm5A#_=_
======
natrius
From their security page:
_We are very secure and make sure to cover many angles to insure your data
can never be compromised. Many often ask what exactly we do to make the data
so secure. Unfortunately, one of the things that makes the site so secure is
that we do not disclose the exact encryption practices._
I just threw up in my mouth a little.
It's also a bit weird that it's apparently two unrelated products in one.
Pinterest and LastPass: two great tastes that taste great together?
~~~
justauser
This is quite an eye-opener too...
"How secure is MySocialCloud.com? From day one, it has been our goal to
provide the best security on the web. While we don't expose how we keep
MySocialCloud secure (if we told you, it would be unsecured!), we do ensure
that not even our employees are able to see any of your sensitive data."
One of their videos shows a bookmarket so I'm going to presume they're using
that for somekind of encryption clientside with AES???
~~~
tylermenezes
"if we told you, it would be unsecured!" doesn't sound like AES... It sounds
like they're using _entirely_ security through obscurity.
------
AlexMuir
Only managed the first paragraph before the bubble-o-meter went off the
fucking scale.
\- Crap buzzword filled domain name. Check.
\- All encompassing vague idea. Check.
\- Young computer whizzkids. Check.
\- 1 millllion dollars. Check.
~~~
law
Don't forget the obligatory leave-of-absence from NYU.
~~~
wickedchicken
Drop out of college to make a combo Delicious/LastPass!
~~~
adrinavarro
Why the hell would anyone want such thing? The fact that people might use both
things doesn't mean they can go together.
Hell, there is a lot of things you can glue together, but these aren't ones.
~~~
borplk
I'm sick of this social frenzy in web already. Every goddamn website wants me
to share, discover, connect, cloud, blah blah blah...share friends boom
revolutionary idea...why don't we share photos? wow! here...take all my
billions...what if we mix your cloud crap with your passwords? sweet jesus
take all my money. Don't get me wrong, it's good to see people innovate, but
it feels like most (at least those who are being seen) have forgotten about
the true problem solving and innovation and are just mixing services and APIs
together and selling it as yet another revolutionary idea.
------
richardv
This is ridiculous. I actually started reading with a really positive mind,
but Richard Branson is never going to see any of that $1M.
\- Scott... got the idea when his computer crashed and he lost a spreadsheet
containing all his usernames and passwords.
Using this as a story to explain his startup is awful. So, you are running a
tool to manage passwords, where you previously stored everything in a
spreadsheet? This guy obviously knows a lot about security. Where can I sign
up?
~~~
toyg
That's harsh. I have to say, his pitch resonates with the common man more than
you think. How many people keep their passwords in spreadsheets or other
haphazard ways? Zillions. How many stop and think "mh, what's gonna happen if
I lose this spreadsheet"? Not many -- otherwise they wouldn't store passwords
in spreadsheets to begin with. Scott just reminded them that they'll be
screwed at some point, and he's here to help. I expect part of the reasoning
behind Branson's investment is that the man himself (or some of his minions)
must have had the occasional lost-password-crisis here or there.
Clearly, with a bland but fairly descriptive name like MySocialCloud, they are
not targeting paranoid geeks (the ones who worry about details like "who's
running this service?", and would rather use services going by dorky names
with random missing vowels), they are targeting the common man who stores
passwords in spreadsheets. They are scratching an itch they themselves had,
which is often how you validate your own business plan. I don't see why they
should be ridiculed for it.
(This said, the whole post is just planted marketing of the lowest quality.
Hardly HN-worthy, if you ask me.)
~~~
lelele
> Scott just reminded them that they'll be screwed at some point, and he's
> here to help.
Problem is: he doesn't know how to help, yet people are going to trust him
because they don't know better. I'd bet they are going to store their users'
password on an Excel spreadsheet, but they will take care to backup it often
;-)
There is LastPass already, and they are doing a great job. Competition is
good, but why should we support clueless competitors?
That said, I'd bet MySocialCloud.com will succeed. Worse is better, isn't it?
And now they have lots of money.
------
coderdude
There's a lot of over-the-top hating from the peanut gallery in this thread.
I'll balance it out:
What a ride this must have been so far. They're doing a great job getting
their name out there, that's for sure. An investment from Richard Branson and
a co-founder of Photobucket, plus this article in Yahoo Small Business that is
now trending the HN front page. I hope they're able to take this massive
opportunity they've been given and turn it into a successful business.
------
elmuchoprez
Regardless of whether this is a good idea or not, to say they "turned a tweet
into $1 million" is a bit of a reach.
They saw a tweet advertising an event which Branson would be at, borrowed
several thousands of dollars from their parents to attend the event, and used
that opportunity to get an email address that was capable of reaching Richard
Branson, which they used over a period of time to develop some sort of
relationship with him and another (Murdoch), and through a series of pitches
both in person and remote, they secured initial funding.
~~~
mkramlich
... in a time when investors are desperately seeking anything to throw their
money at that will get good returns. And it's hard to find software engineers.
And, especially to less sophisticated investors, they just know "social" and
"cloud" are the hot hot thing so they want to park some bets in something with
those words involved. Thus... MySocialCloud.com
------
jakeonthemove
I just checked out the service and I don't understand what's with the hate?
It's a Pinterest/Delicious/LastPass mashup, and while I would not trust them
with my passwords (they really should rephrase that explanation, or give a
real overview of their security measures), there are plenty of people who will
(my parents still store their passwords in simple text files :-)).
If they add RSS-reader functionality, I can actually see myself using the site
as a home page!
I believe it's got potential - they'll have to work hard on the marketing and
keeping even or ahead of the competition, though...
------
gilrain
...and so we told Richard, "Hey, just sign up for LastPass!" He was so
grateful, he gave us a million dollars.
------
calydon
This reads like there is something missing from the story. They already had an
office and a 9 person team, but they needed to borrow $4k from their parents
to meet Branson?
------
SagelyGuru
What a ridiculous country. It is OK to lend them $1M but illegal to offer them
a cocktail?
------
mkramlich
Wow. This has both bubble and disaster written all over it. May things go much
better than that for them, though, of course. But it reads more like a parody
or a list of warning signs than an article about a real new business.
------
jbranchaud
Here's a better venture idea based on the experience, "Scott... got the idea
when his computer crashed and he lost a spreadsheet containing all his
usernames and passwords."
How about designing computers that crash when users try to store usernames and
passwords on them. Users will eventually learn to stop doing that.
~~~
natrius
There's nothing wrong with storing usernames and passwords. There is something
wrong with storing them in a spreadsheet.
------
yaix
> he got the idea when his computer crashed and he lost a spreadsheet
> containing all his usernames and passwords.
Sounds like a good idea to entrust him with all your passwords then.
------
tkahn6
The more I see things like this, the more I believe I have no idea how the
world works.
~~~
codgercoder
It just reinforces my feeling that it's easier for simple, bad ideas to get
funding than complicated, good ones. Modulo the reporting, of course.
~~~
waterlesscloud
Your last sentence is probably the most insightful on the thread. We really
have no idea what actually happened.
------
kasahmed
Great story
------
waldemarb
This startup app stores your encrypted passwords on DropBox:
<http://passboxapp.com/>
|
{
"pile_set_name": "HackerNews"
}
|
Designing Fast and Programmable Routers [pdf] - lainon
http://web.mit.edu/anirudh/www/anirudh_dissertation.pdf
======
cottonseed
Free association: Good talk by Sonja Keserovic (Facebook) from Strange Loop on
their programmable network switch infrastructure:
[https://www.youtube.com/watch?v=WDfWd-
Utcgo](https://www.youtube.com/watch?v=WDfWd-Utcgo)
edit: I thought this was exciting stuff. Where else can you find teams
straddling the hardware/software boundary?
------
agnivade
This is great stuff. Are there any currently available programmable routers in
the market ?
|
{
"pile_set_name": "HackerNews"
}
|
Chris Lattner to Lead SiFive Platform Engineering Team - gok
https://www.businesswire.com/news/home/20200127005141/en/Google-Tesla-Engineer-Chris-Lattner-Lead-SiFive
======
dang
Comments moved to
[https://news.ycombinator.com/item?id=22159963](https://news.ycombinator.com/item?id=22159963),
which is currently on the front page and was posted a bit earlier.
------
nochance
Related: [https://www.sifive.com/blog/with-sifive-we-can-change-the-
wo...](https://www.sifive.com/blog/with-sifive-we-can-change-the-world)
|
{
"pile_set_name": "HackerNews"
}
|
On finally learning to program at the age of 40 - nfrankel
https://github.com/Dhghomon/programming_at_40/
======
susam
The Logo screenshot used in this article was created by me for my own blog
post here: [https://susam.in/blog/good-quality-dosbox-video-
capture/](https://susam.in/blog/good-quality-dosbox-video-capture/)
I contributed this image to Wikipedia at
[https://en.wikipedia.org/wiki/File:IBM_LCSI_Logo_Circles.png](https://en.wikipedia.org/wiki/File:IBM_LCSI_Logo_Circles.png),
so that it could be added to the Wikipedia article on Logo at
[https://en.wikipedia.org/wiki/Logo_(programming_language)](https://en.wikipedia.org/wiki/Logo_\(programming_language\)).
It is fun to see this image being reused in this article!
By the way, the article mentions that Logo did not provide a very good
experience to the author. However, in my life, Logo has had a significant
impact on me. I have written a detailed comment about it here:
[https://news.ycombinator.com/item?id=21374341](https://news.ycombinator.com/item?id=21374341).
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: Is Stripe going to ban Onlyfans for processing adult content payments? - solaarphunk
Seems like onlyfans is primarily in the adult content business, however, they appear to use stripe to process payments. Most card processors have clauses against supporting this type of activity, but it appears that Stripe is probably making a ton of money, given the growth of Onlyfans.
======
RickS
This was asked recently:
[https://news.ycombinator.com/item?id=24291790](https://news.ycombinator.com/item?id=24291790)
Relevant answer:
[https://news.ycombinator.com/item?id=24294801](https://news.ycombinator.com/item?id=24294801)
TLDR: onlyfans uses multiple payment processors, and presumably shuffles
customers to different ones based on risk. The adult payments likely don't go
through stripe.
~~~
leerob
OnlyFans might have just gotten bit by this. A popular celebrity joined
OnlyFans [1], created a bunch of turnover (chargebacks), and some policies
changed.
[1]: [https://www.nbcnews.com/pop-culture/celebrity/sex-workers-
bl...](https://www.nbcnews.com/pop-culture/celebrity/sex-workers-blame-bella-
thorne-changes-onlyfans-harm-their-income-n1238810)
|
{
"pile_set_name": "HackerNews"
}
|
Launch HN: Tress (YC W17) – Online community for black women's hairstyles - priscahazel
Tress (<a href="https://www.tressapp.co" rel="nofollow">https://www.tressapp.co</a>) is an online community for black women to discover and share hairstyle inspiration, information and tips.
Women upload photos of their hairstyles and share information about their style. Users can discuss how to replicate the look, which products were used and where to get similar hairstyles.<p>We are 3 software engineers who have built health social networks, mobile apps for farmers in Africa, and worked on marketing consumer
brands like Nike. We started Tress because this is a challenge that personally affects us and because it's a big market that is still relatively untapped by technology.<p>Hair is a big deal for black women. We are constantly changing our hairstyles and spend 9 times more on our hair than any other
demographic. We don't just get a regular cut or color our hair. We get drastic! We go from braids to weaves to cornrows and then to our own
hair and then back again. Size, length, style, color, volume of hair, weaves and extensions all differ each time we change our hairstyle.
And we do that often because of the nature of our hair. To give you an idea, these photos are all of the same woman - <a href="https://www.dropbox.com/s/52ew0d8hsxwx0k4/JodianHairstyles.png?dl=0" rel="nofollow">https://www.dropbox.com/s/52ew0d8hsxwx0k4/JodianHairstyles.p...</a> - It's an image from our YC demo day slides.<p>The process of figuring all this out to actually getting a style done is long and broken. Many women spend a ton of time searching for their next hairstyle, then more time figuring out how to replicate the style via tutorial articles/videos or search for a stylist and so on. Tress aims to be the dedicated platform to fix all of this and connect a community of women who often socialize around their unique hair needs.<p>One thing that excites us as software engineers is exploring how to use computer vision to tell if a user has 4a, 4b or 4c natural hair curl pattern or if a hairstyle is a Senegalese twists or Havana mambo twists. We are equally excited to be gathering hair products data and usage patterns around our hairstyles in such an informal sector that technology has barely gotten started in yet. We dream of things like an API that has all the data about the hair products black women have used in the past 5 years.<p>We're looking forward to answering your questions about Tress and discussing startups, software, and of course hair!
======
michaelbuckbee
This seems like a tremendously clever idea. To me the most relevant phrase
from the text posted above is: "...and worked on marketing consumer brands
like Nike"
Because I think that's what this really is: the launch of a new premium
consumer brand. Tress is capturing consumers at _exactly_ the right time, they
all have purchase intent and it seems targeted really really well.
They can make serious money recommending local stylists, products, etc. and
then turn around and also sell their own branded products.
This is really far outside of what I'm familiar with, but I look at past
things I scoffed at and that are now worth billions [1] and think this might
have a real shot at getting huge.
It all comes down to execution and work, but a really interesting idea even
now.
1 -
[http://investor.lululemon.com/releasedetail.cfm?releaseid=96...](http://investor.lululemon.com/releasedetail.cfm?releaseid=962616)
~~~
priscahazel
Thanks for the feedback. You have captured the essence of Tress and what we
are working towards.
------
rockmeamedee
Cool!
Sounds like you have many interesting problems, on top of the usual fun
challenges of running a social network+cross platform app. Computer vision,
recommenders for hairstyles, products, stylists, and probably many more. Then
you have usage information about all of those you could use in a bunch of
ways.
And you can monetise with simple, relevant, products ads, or get a commission
off booking a stylist, or collaborate with a booking platform like TresseNoire
(although that's NYC only for now I guess). So that's a lot more options than
many YC backed startups.
A few questions. Feel free to ignore them if there are too many.
It says you're hiring engineers and designers on your website. Care to go to
into more specifics about what kind of positions you're hiring for?
Semi-OT in the "only care about users" YC world, but just curious, what's your
stack?
It says on your website that you're based in Ghana. Do you plan on going back
there after YC, or staying in SV to make it easier to find tech workers+VC
money, or have a foot in both places?
~~~
mseolatunde
Hi, I'm the Engineering Lead at Tress and we're a lean team of 3. Right now,
we're looking to hire 1 Front End Engineer as we want to launch our web
version for SEO (we realised that Google App Indexing is not enough and we're
missing a lot of SEO opportunities on the web), 1 iOS engineer and 1 UI/UX
designer.
Our top level stack is Ruby on Rails, Postgresql, Redis, AWS, Heroku, Java,
Objective C & Swift.
We initially tested our product in Ghana. But our user base has grown since
and our users are from all over the world with a significant majority from
Africa and the US. We are and will be based in Silicon Valley going forward.
It's a global app and our goal is to have our foot placed globally
------
cperciva
_Hair is a big deal for black women. We are constantly changing our hairstyles
and spend 9 times more on our hair than any other demographic. We don 't just
get a regular cut or color our hair. We get drastic! We go from braids to
weaves to cornrows and then to our own hair and then back again. Size, length,
style, color, volume of hair, weaves and extensions all differ each time we
change our hairstyle. And we do that often because of the nature of our hair._
As a white guy whose approach to hair basically amounts to "I want to be able
to ignore it as much as possible", I'd love to understand this better. What is
it about black (womens'?) hair which lends itself to a wide range of hair
styles?
~~~
whatok
Recommend this:
[https://en.wikipedia.org/wiki/Good_Hair](https://en.wikipedia.org/wiki/Good_Hair)
~~~
phoboslab
Interesting clip from Good Hair:
[https://www.youtube.com/watch?v=vCEX34-1o6M](https://www.youtube.com/watch?v=vCEX34-1o6M)
------
notlisted
Great idea. You mention how much time is spent on looking at/for styles (incl.
members of my family) but I'm not sure everyone here is aware of the average
spend on hair and hair-related products: Mintel estimates the 2016 spend on
black haircare products is about $2.5BB.
Not included in this number (and typically underreported because many services
are rendered in non-official salons) hairstyling services. When family members
go to the 'salon' it often involves many hours and hundred(s) of dollars for a
single visit. Haircare expenditures are a significant budget item - no matter
how wealthy.
I'll pass the app on to my family. Let's see what they say.
~~~
priscahazel
Thanks, apart from the amount of time we spend on our hair, we spend a lot of
money as well just to get our desired hairstyle. Hair is definitely huge part
of the monthly family /individual budget. We'll love to hear their feedback on
Tress. Our email is [email protected]
------
exolymph
I'm a little skeptical in terms of whether this will be a scaleable business,
but I love that you're targeting a demographic that SV doesn't usually pay
attention to.
You should totally work with black beauty YouTubers like Jackie Aina and
Alissa Ashley!
~~~
priscahazel
Thanks for the feedback. We didn't go into detail about our business model.
For us, we see the social community as the first step to driving social
commerce. We intend to leverage on the community to drive product sales for
brands/products that target black women's hair. It's definitely scalable.
Jackie Aina and Alissa Ashley are great suggestions, definitely intend to work
with them.
------
40acres
Excellent job, this has the potential to be huge. I told my girlfriend about
you guys last week and she seemed impressed. The first self made female
millionaire in the US was in the hair buisness [1], I think it's a market that
is underserved by traditional companies because it requires such a specialized
touch. Good luck.
[1]
[https://en.m.wikipedia.org/wiki/Madam_C._J._Walker](https://en.m.wikipedia.org/wiki/Madam_C._J._Walker)
------
gcav
This is brilliant - your target market is passionate and spends serious money
on a pain point you are solving. And while I'm sure you are well connected in
Accra, I can't help but mention Ashesi University. Super talented engineers
coming out of that school
~~~
priscahazel
Thanks for the feedback. Yes we do know of Ashesi University and yes they do
have talented engineers coming out of there.
------
purple-dragon
Congrats and good luck!
One minor issue I noticed with your website: most users will expect that
clicking on the page indicator in your carousel (where you feature
testimonials) will trigger the appropriate content change. Nothing happens
when I click on these indicators and there's no obvious way for me to flip
through the testimonials other than to wait with my mouse hovering over an
adjacent section (since it seems the carousel is paused when the mouse hovers
in that section).
~~~
mseolatunde
Good catch! Thanks for the feedback. Will be fixed shortly.
------
claytonjy
The computerized detection of hair type and style sounds really interesting.
How far down this path are you now, are you planning on a deep-neural-net
(e.g. CNN's) or something simpler?
Would certainly make for a unique image-classification problem, with its own
interesting challenges; a collection of images of black women with different
hairstyles will be a lot more visually similar than a collection of
dogs/cars/mountains.
~~~
mseolatunde
Yup, it's interesting! We're in the early stage of this, currently
experimenting with [Keras]([https://keras.io/](https://keras.io/)) and
focusing on the inception pre-trained network. Our goal is to retrain the top
layer of the network using the tags/hair types/categories we're collecting on
the app as labels.
------
pryelluw
Why are you launching here and not on a facebook group dedicated to such
market? There are also instagram micro influencers (less than 10k followers)
you could also leverage...
Not being a hater but launching here seems silly from the POV of marketing.
This seems like something that would get traction rather quickly if pushed in
the right context.
Trust me. Put ads on facebook with your target demographics and search IG for
women of color with a good amount of followers. That stuff works like magic.
Edit:
If you email me I can introduce you to one such group that has a lot of active
users and is led by a black lady. You can pivot from there.
\---
Just realized my comment makes me sound like a huge dick. Not my intention. Im
excited about the product and wish you the best of luck. I do feel strongly
about marketing it (even if not my own project) and that made te words come
out too strong.
~~~
dang
YC startups are launching as "Launch HN" these days, which is a new mechanism
that we intend eventually to replace some of the job ads that appear on the
front page. It's all a work in progress. But we would have invited Tress to
post even apart from that, because it's so off-the-beaten-track for HN, and
that's what keeps things interesting.
You're right that HN isn't the best place to launch consumer products for
customer acquisition, but there are other reasons to launch on HN, such as
discussing ideas, product feedback, and getting on users' radar for future
hiring. No reason not to do all the launches!
p.s. As a local professional in the 'omg that's bad' department I can assure
you that it's always the good users who worry about sounding like a dick :)
Your comment shows how an excess of enthusiasm can sometimes come out the
wrong way temporarily, but explaining it as nicely as you did makes it all ok.
~~~
pryelluw
Thank you, dang. Last thing I want to do is rain on someones parade. Startups
are hard enough already.
------
wehadfun
The "Address" you listed on your website is very interesting how does it work?
Their address by the way:
Banana Street, Off American House, East Legon, Accra, Ghana
~~~
frydrik
I used to live in Ghana. Addresses are landmark-based as nobody knows street
names. In this case the landmark is "American house". So it is a proper
address in Ghanaian terms.
~~~
yannyu
India is another place where this is fairly common. Addresses in the US are
ridiculously simple and easy compared to many other countries.
------
ericzawo
This is an awesome idea — forwarded to a few friends.
~~~
priscahazel
Thanks, we'll love to hear their feedback. Our email is [email protected]
------
koolba
Interesting topic and I can see how this is a daily issue for some, but I
don't get the startup angle. What's the eventual monetization angle? Referrals
for hair stylists? Paid membership to get new lists of or customized styles?
Which of the pictures of the girl (linked to the dropbox share) is closest to
her natural hair? The styles are so varied it's impossible to tell! On the
aesthetic front (obviously IMHO) it's a toss up between Oct 2016 and Dec 2016
for best (though all look very nice!).
~~~
priscahazel
We will monetize through product sales, stylists booking/referrals like you
mentioned and native ads targeted at specific hair types within the black
hair-care community.
With regards to your second question, the closest to her natural hair is the
1st pic (Nov 2016). Hers will be much shorter and will have to be straightened
to look like this. It's surprising that none of the styles show her own hair.
~~~
wehadfun
I would avoid trying to charge for bookings. You will be the victim of
Disintermediation because the stylist will tell give the client their number
and say to not use trees to book.
I would suggest charging stylist to attached their searchable location and
phone numbers to picture of hair styles. In other words charge them for
advertising.
~~~
priscahazel
Thanks for the feedback and suggestion. Will look into that option as well.
------
wehadfun
A way for hairstylist to market their work and a way for black women to find
hairstylist is a problem. Especially when "sistas" relocate to a new area.
~~~
uncletaco
Funny story: Rachel Dolezal is apparently one of the few women in Spokane, WA
who knows how to style black hair, and she's been able to keep herself afloat
by doing black girls' hair.
------
andkon
This is so cool. Also what convinced you to go Android-first? Any discoveries
that were especially surprising there?
~~~
priscahazel
We initially tested Tress in Ghana and Nigeria and android devices are more
predominant because they are more affordable and not as restrictive.
------
RangerScience
This feels relevant, although only somewhat:
[https://www.google.com/?q=Amasunzu+hairstyle](https://www.google.com/?q=Amasunzu+hairstyle)
"Amasunzu is an elaborate hairstyle traditionally worn by Rwandan worn by men
and unmarried women."
------
sbardle
Couldn't someone just do a hashtag search on Instagram?
Why not just go big and do a social network for hairstyling in general?
I think the social commerce angle could be great for revenue, esp now
Instagram are starting to launch it.
~~~
priscahazel
Could you download and check out the app? There are a lot of nuances and
specificity that can not be achieved via a hashtag on Instagram. On why not a
social network for hair styling in general; same reason - nuances and
specificity of our hair textures.
~~~
sbardle
Just taken a look. I see what you mean, lots of nuances. Nice product!
------
kkt262
For other companies looking to get into YC, what do you think were the main
factors that helped you get into the accelerator?
------
gscott
I had a black girlfriend once and she he told me to watch the movie Good Hair.
It was eye opening and I recommend the movie for everyone to watch.
------
erik14th
Is there a plan to expand to a larger/more heterogeneous demographic?
~~~
ksenzee
There's way less of a market in other demographics. For example, white women:
we have less interesting hair. There simply aren't as many things we can do
with it, because the structure of the individual hairs is less complex. Plus
we have every women's magazine in the US and Europe assuming our hair is the
"default." I'd say they know exactly what they're doing aiming at their own
demographic.
------
anothercomment
It sounds trivial, but it could actually be an important stepping stone
towards ending poverty and world hunger. Less time wasted on hair == more time
for earning money. Well played.
|
{
"pile_set_name": "HackerNews"
}
|
Steve Wozniak's First Dance on "Dancing with the Stars" - zeedotme
http://www.youtube.com/watch?v=aoiGJMZjs0o&eurl=http://thenextweb.com/#
======
coglethorpe
OK, I'll admit to watching The Woz dance. I think he moved pretty well for a
big guy, but the judges didn't agree with me.
It was great to hear him go on about how he's used to digital things and how
dance is analog, all while his dance partner's eyes glazed over. He's lost 30
pounds while practicing for the competition, so even if he loses the
competition right away, he's got that going for him.
It's also great to see Woz, who apparently doesn't need the money, doing it
just for fun. He stands out from some of the other "celebrities" who really
are just desperate for a paycheck. It was obvious he was having a blast and
his dance partner said he was the nicest man she's ever met.
|
{
"pile_set_name": "HackerNews"
}
|
2BRØ2B by Kurt Vonnegut [pdf] - evo_9
http://mrbockholt.weebly.com/uploads/2/2/4/8/22487060/vonnegut_2br02b.pdf
======
carter_harwood
A create short story. Read it back in high school
|
{
"pile_set_name": "HackerNews"
}
|
Säkkijärven polkka - luu
https://en.wikipedia.org/wiki/S%C3%A4kkij%C3%A4rven_polkka#Military_use
======
Ndymium
The English Wikipedia page, to me, seems to suggest that the record was played
to explode the mines in a controlled fashion. In fact, according to Finnish
Wikipedia, it was used to scramble the Soviet radio signals to prevent the
mines from exploding, and there was a sort of radio war going on for a while.
This is the specific record that apparently was used:
[https://www.youtube.com/watch?v=gZx1zl_sVTI](https://www.youtube.com/watch?v=gZx1zl_sVTI)
~~~
ashtonkem
The English page does say “jamming”, but I too originally read it as if they
were trying to detonate them prematurely.
------
tgsovlerkhgsel
When I read "mine", I thought of anti-personnel landmines and was confused why
you'd want to radio-trigger those.
These were demolition charges designed to destroy objects like bridges.
According to [https://www.quora.com/Is-it-true-that-the-Finnish-army-
used-...](https://www.quora.com/Is-it-true-that-the-Finnish-army-used-the-
song-S%C3%A4kkij%C3%A4rven-Polkka-to-prevent-the-detonation-of-Soviet-radio-
controlled-mines-during-the-recapture-of-Viipuri-in-the-Continuation-
War/answer/Alexander-Denisov-9), there were a total of 25 such mines hidden,
with each containing hundreds to thousands of kilograms of explosives.
[https://www.standingwellback.com/russian-ww2-radio-
controlle...](https://www.standingwellback.com/russian-ww2-radio-controlled-
explosive-device/) is also worth a read.
------
Legogris
Another Finnish polka more known through Internet culture[0] is Ievan polka:
[https://www.youtube.com/watch?v=7yh9i0PAjck](https://www.youtube.com/watch?v=7yh9i0PAjck)
I remember having the original Flash clip on loop on for entire days back
when.
[0]: Leekspin:
[https://www.youtube.com/watch?v=B-N1yJyrQRY](https://www.youtube.com/watch?v=B-N1yJyrQRY)
~~~
krebs_liebhaber
The Finns contributed more to early Internet culture than we give them credit
for. They invented IRC, and about half of the weirder memes on 4chan.
~~~
saq
And Linux
~~~
vsipuli
And Git (kind of, although that happened after Linus moved away from Finland)
~~~
Eyght
MySQL in the same vein.
~~~
welfare
MySQL is actually of Swedish origin.
~~~
cfinnberg
Well, at least Michael Widenius, the most visible head of MySQL and one of two
cofounders, is finnish. He also created the MySQL's fork MariaDB. Both names
came from Michael's daughters My and Maria.
------
Pandabob
As a finn, I did not expect to see this on the front page of HN. Ever.
But did not know about the military use of the song. Very interesting.
~~~
stevekemp
As somebody who moved to Finland, and hasn't learned too much Finnish, I was
just pleased I recognized the language and the words themselves!
Interesting read though, regardless.
------
9nGQluzmnq3M
Sakkijarven polkka is (well, was) also famous as one of standard Nokia
ringtones:
[https://youtu.be/UYSdiQl8BQY?t=54](https://youtu.be/UYSdiQl8BQY?t=54)
------
alkonaut
Interesting. This is basically an early version of the phone bomb where you
get a burner phone and just call the number of the sim card to blow it up.
Being able to pull that off in the 40's was impressive.
Hard to say what use it has though? Normally a "mine" is something that is
triggered by an event such as a person or vehicle passing. Setting one off
remotely or on a timer isn't useful.
If the mines were used to rig specific infastructure such as railways or
bridges then I can see the use (blow specific bridges at specific points in
time, without having to send saboteurs). I remember practicing bridge
destruction in the army using dozens of tank mines, simply because they were
readily available and easily handled explosives.
~~~
doikor
These were "mines" used to blow up bridges, roads and railroads. The bigger
ones had thousands of kg of explosives. So more like remote demolition over
radio. Idea being that you could destroy the critical infrastructure after
retreating from the area and if you had vision on it when someone was on it
like the first one that killed a couple officers (killed a major who was the
chief lawyer for the Finnish General Staff)
Modern equivalent would be cellphone bombs in roads in Afghanistan/Iraq.
------
elgfare
Wikipedia articles are quickly becoming my favorite type of HN link.
------
leo150
Eurobeat remix:
[https://www.youtube.com/watch?v=fxx5p8KnZ3w](https://www.youtube.com/watch?v=fxx5p8KnZ3w)
------
tryauuum
> These mines were set off when a three-note chord was played on the frequency
> the radio was tuned to, causing three tuning forks (of which each mine had a
> unique combination) to vibrate at once.
so, ehm, what was the soviets' plan? to blow them all at once when the city
would be taken by finns?
russian wikipedia page says the plan was to blow them periodically. But it
doesn't make much sense, how would the soviets control which mines to blow?
hard to imagine they would be aiming radio signal somehow
~~~
tgsovlerkhgsel
Each mine could be set to a different combination of three trigger
frequencies. There weren't many of them in place (I'll write another top-level
comment about this - edit:
[https://news.ycombinator.com/item?id=23089418](https://news.ycombinator.com/item?id=23089418)).
~~~
kmill
Adding to that, even just six frequencies to choose from would let you have
twenty distinct targets. (Six choose three.)
------
swebs
[https://www.youtube.com/watch?v=uMszu_VgMfY](https://www.youtube.com/watch?v=uMszu_VgMfY)
~~~
michalu
Nice song. Finnish language is part of the Uralic group of languages Finno-
Ugric spoken by Hungarians and Estonians too.
These languages don't belong to Indo-Iranian group like every other language
in Europe.
I like to speculate the language came to northern Europe with Huns who,
according to Procopius (I believe it was him) controlled Scandinavia too and
there are many sagas of Norsemen fighting Huns there, such as Hlöðskviða.
The modern Finns show Nordic genetic, yet the language is Uralic and perhaps
the first Finns were only the ruling class as it was often the case with Huns.
Obviously, there are other more widely accepted theories.
~~~
vesinisa
Sorry but that is quack. Replace "Finnish" with "Aryan" and it's almost
directly from the 1930s Nazi occultism book.
~~~
swebs
>Aryan language is part of the Uralic group of languages Finno-Ugric spoken by
Hungarians and Estonians too.
???
~~~
vesinisa
No, I mean more generally terms like "Nordic genetics" and proposing fringe
linguistic and ethnic theories about modern nationalities.
~~~
michalu
I'm sorry to ruin your imaginations but genetics, linguistics and history are
real sciences concerned with tangible facts. Unlike some political theories
with no right to claim credibility other than calling themselves "modern."
Aryan (term I didn't use) simply means Iranian, regardless of whether nazis
abused the term or not. You may find it useful to know that.
~~~
philangist
I do agree with your more general point but I think we shouldn't dismiss
changes in usages of words over time. Aryan doesn't simply mean Iranian in a
modern western context, just like the swastika isn't just a sign from Buddhism
or Hinduism. Both have strong associations with one of the most defining wars
of the 20th century and the genocidal regime that started said war. That can't
be easily ignored.
~~~
ganzuul
The Black Death killed a hundred million.
Blood flows like a river.
------
afandian
If you're unfamiliar with Finnish traditional music, they have some great
polkas. Frigg are good fun.
[https://www.youtube.com/watch?v=77lw3hp9q7M](https://www.youtube.com/watch?v=77lw3hp9q7M)
~~~
drran
[https://www.youtube.com/watch?v=7yh9i0PAjck](https://www.youtube.com/watch?v=7yh9i0PAjck)
~~~
afandian
THAT polka.
------
bjowen
... hey! [https://youtu.be/q98Y86jfXaY](https://youtu.be/q98Y86jfXaY)
------
paweladamczuk
This reminded me about the Ride of the Valkyries scene in Apocalypse Now.
~~~
CHB0403085482
I guess you haven't heard the action-scene version of Sakkijarven polkka on a
kantele;
[https://www.youtube.com/watch?v=F1PAy4JZfrE](https://www.youtube.com/watch?v=F1PAy4JZfrE)
Bonus violin edition by Linda Lampenius;
[https://www.youtube.com/watch?v=o-Skam8GUUU](https://www.youtube.com/watch?v=o-Skam8GUUU)
|
{
"pile_set_name": "HackerNews"
}
|
Stop building client-side forms - tvararu
https://blog.vararu.org/stop-building-client-side-forms
======
postpawl
It’s probably worth adding a sentence or two to describe when client side
forms are useful?
Once your form becomes very dynamic (“add another”, conditional
fields/choices, 15+ change events), a server side form will end up needing to
duplicate a lot of form rendering logic on both the front-end and the back-
end. The server side template will need to be able to re-render the form on
initial load, when fields are changed, and when the form is submitted with
errors. The front-end will need all the logic to render form fields to avoid
reloading the page constantly.
A mostly client side form doesn’t need to duplicate the form rendering logic
in server side templates or make a request to the server side to re-render the
form based on a choice you selected. I think this can be simpler and provide a
better user experience for really complicated dynamic forms.
It’s a complicated decision that should be based on how dynamic your form is
and how acceptable page refreshes are. Like a lot of things in our industry...
I wish this post showed more nuance rather than bashing a solution that may be
better in some scenarios.
------
nicbou
There's one important detail you forgot: server-side forms make caching more
difficult. It can be a performance bottleneck.
As already pointed out, dynamic parts require client-side logic.
There's also quite a bit of FUD going on in that article. You can write a
client-side form without loading 200kb of libraries. I write mine in vanilla
JS. It really isn't that hard.
|
{
"pile_set_name": "HackerNews"
}
|
Instant pages with HTML5 Visibility API & Page Pre-Rendering - igrigorik
http://www.igvita.com/2011/06/25/html5-visibility-api-page-pre-rendering/
======
sbirch
"With the visibility API, you can gracefully pause or degrade the timer to a
much longer poll when the tab is in the background."
Note that this is already enforced for setInterval in some browsers -- I think
Chrome changes the minimum interval to 1000ms from 4ms when the tab is in the
background.
~~~
igrigorik
Ah, interesting -- is this documented anywhere? I did see mentions of Chrome
downgrading background tabs, but did not find any specific numbers.
~~~
paulirish
I mentioned it quickly on twitter:
<https://twitter.com/#!/ChromiumDev/status/76634744607096832>
And updated the MDC docs on it:
[https://developer.mozilla.org/en/DOM/window.setTimeout#Minim...](https://developer.mozilla.org/en/DOM/window.setTimeout#Minimum_delay_and_timeout_nesting)
I'll get it added to www.chromestatus.com now.
------
ams6110
How about just making pages without a ton of crap on them?
------
repos
What will be the impact of this on mobile web apps? I'm assuming though that
is still a rather long way off.
~~~
mmahemoff
When it lands on mobiles (not really _if_ , as past trends indicate it's just
a matter of time with HTML5 standards), it will certainly be a good thing for
optimising battery consumption in a standard way.
|
{
"pile_set_name": "HackerNews"
}
|
Pirate Bay Takes Over Distribution of Censored 3D Printable Gun - mnazim
https://torrentfreak.com/pirate-bay-takes-over-distribution-of-censored-3d-printable-gun-130510/
======
ColinWright
<https://news.ycombinator.com/item?id=5686403>
|
{
"pile_set_name": "HackerNews"
}
|
This typeface could help dyslexics read - jonathanehrlich
http://www.dezeen.com/2014/11/09/christian-boer-dyslexie-typeface-dyslexia-easier-reading-istanbul-design-biennial-2014/
======
davelnewton
Oh like
[https://news.ycombinator.com/item?id=5671568](https://news.ycombinator.com/item?id=5671568)?
|
{
"pile_set_name": "HackerNews"
}
|
A Better Way to Share Links in Email - bengross
http://www.messagingnews.com/onmessage/ben-gross/better-way-share-links-email
======
frossie
In case people have an unsolved problem in this area, you can also check the
"Email This" Firefox add-on. It's an easy way of getting non-techie family
members to send you links.
|
{
"pile_set_name": "HackerNews"
}
|
A Teenager’s View on Social Media - dpflan
https://medium.com/backchannel/a-teenagers-view-on-social-media-1df945c09ac6#.tgc3a48px
======
greenyoda
Note: This article is from a year ago.
Original discussion on HN:
[https://news.ycombinator.com/item?id=8851902](https://news.ycombinator.com/item?id=8851902)
A response to the article:
[https://news.ycombinator.com/item?id=8874411](https://news.ycombinator.com/item?id=8874411)
~~~
dpflan
Thanks, didn't do enough due diligence; searching for the URL yielded no
results as it appears to do an exact match.
The URL after the # appears to change on each GET of the article:
[https://medium.com/backchannel/a-teenagers-view-on-social-
me...](https://medium.com/backchannel/a-teenagers-view-on-social-
media-1df945c09ac6#.xbnp9xwza)
~~~
greenyoda
It's actually OK to repost an article after a year if it hasn't had
significant discussion in the last year. However, it's customary to put the
year in parentheses after the title if it's an old article so that people know
it's something they may have read before.
I was mainly pointing out the earlier discussions because they could be of
interest to someone reading the article.
|
{
"pile_set_name": "HackerNews"
}
|
Show HN: A message board with anonymous, open moderation - sqifb
http://www.qxczv.pw
======
sqifb
Notably, delete is not broken, but you have to refresh the page first, as an
anti-spam measure
------
sova
Please change the colors oh lord
~~~
clishem
Maybe change the rest of the CSS while you're at it.
This is not good UX
[http://i.imgur.com/en3lBF5.jpg](http://i.imgur.com/en3lBF5.jpg)
|
{
"pile_set_name": "HackerNews"
}
|
Making Sense of Complexity - robg
http://www.nytimes.com/2010/05/02/weekinreview/02segal.html?ref=weekinreview
======
Gibbon
Is it just me or do others get peeved when the words complex and complicated
are used interchangeably?
To me they mean very different things:
A complicated problem is one that is difficult to understand. A complex
problem is one composed of many distinct parts.
A complex problem could also be very complicated, but a complicated problem
may not or may not be complex at all depending on the situation.
~~~
johnm
Indeed. Most people use "complex" when they really mean "complicated".
|
{
"pile_set_name": "HackerNews"
}
|
Simple, safe, and fund anonymous chat - adamlieb
http://techcrunch.com/2014/09/18/reveal-chat-for-ios-helps-you-build-real-social-connections-via-anonymous-chat/?ncid=twittersocialshare
======
schars1
awesome app
|
{
"pile_set_name": "HackerNews"
}
|
Outraged eBay sellers plan boycott - dcurtis
http://money.cnn.com/2008/02/07/smbusiness/ebay_boycott.fsb/index.htm?postversion=2008021009
======
iamelgringo
When, oh, when will someone develop a decent competitor to Ebay? The site is
awful and is ripe for a startup to carve away market share. They've already
proven the business model. We know it makes money. I know the boys at
auctomatic are doing their best to help out, but what's needed is a full on
competitor.
I mean, really. How hard is it to offer a couple of decent looking templates
for people to make their own site, to that it isn't such an eyesore? How hard
is it to implement a better form of search and categorization? How hard is it
to develop a form of authentication to cut down on all the fraud that takes
place on Ebay?
The last time I used Ebay or thought it was decent was back in 97-98. The site
hasn't changed much since.
We should have a challenge to see who can develop the best Ebay competitor.
~~~
gruseom
_The last time I used Ebay or thought it was decent was back in 97-98. The
site hasn't changed much since._
Someone who consulted there told me that eBay's codebase was a mess (even by
the usual standards) and that they had some strange processes that made it
worse. If I recall correctly, programmers weren't allowed to work in teams and
were frequently 'rotated' through completely unrelated projects. He told me
some other weird things that I don't remember, but that combined to form an
impression that eBay's culture is really inimical to hackers. That would
explain their technical stagnation. But overwhelming market share gives them
powerful inertia.
~~~
pg
Back in the 1998 at Yahoo we used to hear shocking things about how bad eBay's
systems were. One of the externally visible signs was their policy of having
several hours a week of scheduled downtime. That seemed just inexcusable. Do
they still do that?
I think the reason eBay is so inept is that they were a monopoly almost from
the beginning. So at a stage when other startups (Google for example) had to
work hard to succeed, they were already coasting, at least technically.
|
{
"pile_set_name": "HackerNews"
}
|
7 YC startups find success in the heartland - kochb
https://venturebeat.com/2017/07/09/7-yc-startups-find-success-in-the-heartland/
======
sharemywin
A lot of products I think find initial traction and then flop because SV is a
shitty test city.
[http://www.npr.org/templates/story/story.php?storyId=1137953...](http://www.npr.org/templates/story/story.php?storyId=113795356)
|
{
"pile_set_name": "HackerNews"
}
|
Police Force Suspect to Unlock Phone with Face ID - kposehn
https://www.theatlantic.com/technology/archive/2018/10/face-recognition-iphone-unlock-police-force/572353/?single_page=true
======
jshevek
Since the FBI got a warrant and were responding to allegations of a sexual
assault, I can respect the argument for doing this in these circumstances.
Though I don't like that the difference in the way the law treats passcodes vs
biometrics may weaken privacy rights.
|
{
"pile_set_name": "HackerNews"
}
|
Jeff Dean Endorses New AI Powered Healthcare Platform - jmarty
https://plus.google.com/+JeffDean/posts/V1LeP3Pnhrt?sfc=true
======
dbdriscoll
Mike Ng is excelllent
------
kevin_lin0
jeff dean + healthcare + AI....makes sense
------
talliehuang
WHAT
------
r_allen023
god has spoken
|
{
"pile_set_name": "HackerNews"
}
|
US Apple iPad to be released in April - computinggeek
http://thecomputinggeek.com/us-apple-ipad-to-be-released-in-april/
======
ktf
<http://news.ycombinator.com/item?id=1169343>
Or:
<http://www.apple.com/pr/library/2010/03/05ipad.html>
|
{
"pile_set_name": "HackerNews"
}
|
Ask HN: the link to the article ``what makes a good teacher'' - plmday
Hi, I still remember that I read a blog article submitted by someone of you talking about ``what makes a good teacher'' alike, but I can not find the article now. I googled the title, but all the results are not the one I read before. Anyone remember the link to the article? Thanks.
======
whatusername
<http://news.ycombinator.com/item?id=391576> searchyc.com is your friend
~~~
plmday
whatusername, I did search in searchyc.com before I post this question, but no
result. But I swear that I read it here ... Anyway, thanks.
|
{
"pile_set_name": "HackerNews"
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.