Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jsrn
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Meta Reports First Quarter 2024 Results
(investor.fb.com)
129 points
by
jsrn
2y ago
|
162 comments
2.
▲
Tim Cook: “I can't imagine a better place than Munich”
(faz.net)
1 points
by
jsrn
7y ago
|
0 comments
3.
▲
by
jsrn
8y ago
Does software count as an 'item' for you? If yes, for me (and I guess many others here) it would be various products of JetBrains, also Kotlin (even if I did not pay for that one directly) and OCR software from Abbyy. Also did not
4.
▲
Inside Amazon's clickworker platform
(techrepublic.com)
140 points
by
jsrn
10y ago
|
51 comments
5.
▲
by
jsrn
10y ago
Regarding this: "I wish Perl would do an inplace edit of a file without creating a backup, though." $ perldoc perlrun (or http://perldoc.perl.org/perlrun.html ) says: > If no extension is supplied, and
6.
▲
by
jsrn
10y ago
Here is the command with jq instead of json_pp $ curl -sS 'https://www.google.com/complete/search?client=hp&hl=en&xhr=t&q=aurora' | jq . | gsed -nE '/<\/?b>/{s```g;s`
7.
▲
by
jsrn
10y ago
Nice! To run this with macOS, I had to use the GNU version of sed. I installed it with $ brew install gnu-sed And it is then called with 'gsed' instead of 'sed'. As an avid Perl programmer, I had json_pp in my $
8.
▲
by
jsrn
10y ago
Invented in 1998 by Perl hacker Abigail: http://neilk.net/blog/2000/06/01/abigails-regex-to-test-for-... (check out Abigail's other JAPHs if you like stuff like this)
9.
▲
Five years with Europe’s No. 1 e-com company
(medium.com)
2 points
by
jsrn
11y ago
|
0 comments
10.
▲
by
jsrn
12y ago
Regarding your (2.) - just to clarify this for others: With an enterprise provisioning profile, you can deploy your app to an arbitrary number of devices. These devices do not need to be known before via UDID (as with normal OTA provisionin
11.
▲
by
jsrn
13y ago
Thanks, that makes sense. So the parameter would be the number of slots (== number of input units of the deep NN). And the transformation of the text into bag-of-words / n-grams would not be considered feature-engineering - or at least only
12.
▲
by
jsrn
13y ago
What would you use as input for the deep network? I have only worked with text classification methods where I chose the features myself. As I understand it, a deep network still has (like a 'traditional'/non-deep ANN) a fixed number of inpu
13.
▲
by
jsrn
13y ago
"Bokeh will be BSD/MIT." https://github.com/ContinuumIO/Bokeh/issues/7
14.
▲
by
jsrn
15y ago
Point taken - what I primarily wanted to show is that the correct way is not much longer than the "looks like" solution. Yes, the Regexp is long, but it is nicely encapsulated in the Email::Valid module.
15.
▲
by
jsrn
15y ago
> because those who can benefit from this kind of basic regexp examples are also those who will not understand the limitations. I share your sentiment. The article is certainly useful for learning regexps. But IMHO it should also point
16.
▲
by
jsrn
15y ago
Also, don't miss the movie adaptation of Roadside Picnic by Andrei Tarkovsky: "Stalker".
17.
▲
by
jsrn
15y ago
For a model railroad similar in spirit (I think) that was built out into a startup and now a successful business (by charging visitors and selling merchandise), check out the "Miniatur Wunderland" in Hamburg, Germany. They build and program
18.
▲
by
jsrn
15y ago
"what's the lane?" four options squeezed together: -l: 1. "chomps" the input (which here means: removes newlines (if present) from each line, more general explanation: http://perldoc.perl.org/functions/chomp.html 2. and automatically adds
19.
▲
by
jsrn
15y ago
Just for the interested reader: when the first command line is changed into pi:~$ echo 'foo bar' | tr -s ' ' | cut -d ' ' -f 2 it also outputs 'bar'. The -s (for "squeeze") option of tr turns every sequence of the specified charac
20.
▲
Bada 2.0 (Mobile OS by Samsung) released
(developer.bada.com)
29 points
by
jsrn
15y ago
|
11 comments
21.
▲
by
jsrn
15y ago
"[...] if you read Russian, you can convince yourself of this by browsing his blog." there is an English version of it here: http://www.artlebedev.com/mandership/ which is a translation of http://www.artlebedev.ru/kovodstvo/sections/ (I
22.
▲
by
jsrn
15y ago
"[...] but it doesn't have an -i or --info option that tells me how many pages a PDF file has" You could use pdfinfo - in Debian / Ubuntu, it is in the same package as pdftotext (poppler-utils). To extract (only) the number of pages of a PD
23.
▲
by
jsrn
16y ago
with "failed attempts to copy" I meant they (Rubygems, Hackage, ...) did not succeed (yet?) to replicate the size, diversity, test coverage, community etc. of CPAN. I do agree that they are useful. Sorry for the misunderstanding.
24.
▲
by
jsrn
16y ago
> And here's some constructive criticism for the aspiring Perl advocate point taken, thanks. Perhaps the Perl success stories should be mentioned more often, too: Want to launch a one-man search engine? Perl makes the easy thi
25.
▲
by
jsrn
16y ago
Recently chromatic finished his book "Modern Perl": http://www.onyxneon.com/books/modern_perl/index.html you can download the PDF for free: http://www.onyxneon.com/books/modern_perl/modern_perl_letter... http://www.onyxneon.com/books/m
26.
▲
by
jsrn
16y ago
> Also, Ruby is a better language than Perl. "Perl is the syntax, CPAN is the language"
27.
▲
by
jsrn
16y ago
> Vim's recent resurgence can largely be traced > to development of Textmate grinding to a complete > halt. makes sense - but then why didn't Emacs see an equivalent resurgence (although personally I think Emac
28.
▲
by
jsrn
16y ago
> In CLOS I don't even have to override > a function and then call the base version, > I can just use :before/:after methods. that is possible in Perl, too, with method modifiers: http://search.cpan.org/~drols
29.
▲
by
jsrn
16y ago
> Interesting that JavaScript 1.6, 1.7 and > possibly Harmony will have primitives for > Python-like generators If you want, you can already use JavaScript 1.6 and 1.7 - 1.6 is supported in FF 1.5+ and 1.7 is s
30.
▲
Mercurial 1.6 released
(selenic.com)
24 points
by
jsrn
16y ago
|
2 comments
More ›