Live data from Hacker News

Viewing profile — m1573rp34130dy

m1573rp34130dy

HN member
Joined
Mon, Aug 27, 2018, 7:41 AM UTC
HN karma
36
Public activity
109 items

About m1573rp34130dy

[not mine but fun read anyway]

https://github.com/minimaxir/hacker-news-undocumented

https://jcs.org/notaweblog/2012/06/13/hellbanned_from_hacker_news/

Hacker News Hacker News new | comments | show | ask | jobs | submit login 1. PaperTTY – Python module to render a TTY on e-ink (github.com) 120 points by messe 4 hours ago | hide | 28 comments 2. Show HN: 2048.cpp – Play 2048 in directly your terminal (github.com) 25 points by plibither8 2 hours ago | hide | 12 comments 3. An Intensive Introduction to Cryptography (intensecrypto.org) 273 points by angry_octet 5 hours ago | hide | 22 comments 4. USB-C Explorer – A development board to get started working with USB Type-C (reclaimerlabs.com) 259 points by walterbell 15 hours ago | hide | 63 comments 5. Computer Vision Using Go and OpenCV 3 (sourcegraph.com) 58 points by beliu 9 hours ago | hide | 1 comment 6. Olin – Defining a new operating primitive for event-driven services (christine.website) 71 points by ngaut 8 hours ago | hide | 16 comments 7. A Tool Lets Urban Planners See The Potential Impact Of Their Ideas (fastcompany.com) 23 points by joshwa 4 hours ago | hide | 1 comment 8. SGI's $250,000 Graphics Supercomputer from 1993 – Onyx RealityEngine² [video] (youtube.com) 258 points by bane 17 hours ago | hide | 90 comments 9. The History of a Security Hole (os2museum.com) 21 points by jsnell 5 hours ago | hide | 4 comments 10. Deep Reinforcement Learning in Depth in 60 Days (github.com) 89 points by andri27 4 hours ago | hide | 12 comments 11. Time Series Prediction Using LSTM Deep Neural Networks (altumintelligence.com) 164 points by shivinski 17 hours ago | hide | 53 comments 12. Peak Valley? (avc.com) 70 points by raleighm 5 hours ago | hide | 72 comments 13. The Terrible Performance Cost of CORS Request on the Single-Page Application (medium.com) 57 points by ankuranand 4 hours ago | hide | 30 comments 14. Strategies for implementing user authentication in serverless applications (serverless.com) 7 points by kiyanwang 3 hours ago | hide | discuss 15. MatchSticks: Portable CNC System for Automating Wood-Working Joinery (rutian.github.io) 224 points by ArtWomb 21 hours ago | hide | 40 comments 16. Vredefort Crater, the world’s oldest and largest known impact structure (nasa.gov) 71 points by zerealshadowban 13 hours ago | hide | 11 comments 17. The Cowboy Cartographer Who Loved California (atlasobscura.com) 22 points by DoreenMichele 8 hours ago | hide | 1 comment 18. Zero-copy deserialization in Julia (scattered-thoughts.net) 132 points by jamii 19 hours ago | hide | 23 comments 19. Prediction Markets: When Do They Work? (thezvi.wordpress.com) 214 points by lainon 1 day ago | hide | 56 comments 20. Rescale Is Hiring Senior Back End Engineers in San Francisco (lever.co) 2 hours ago | hide 21. TypeScript at Google (neugierig.org) 409 points by wslh 17 hours ago | hide | 155 comments 22. OBNC Oberon Compiler (miasap.se) 43 points by tosh 11 hours ago | hide | 16 comments 23. Solo Eye Drop Treatment in Development for Keratoconus (crstodayeurope.com) 40 points by miduil 12 hours ago | hide | 12 comments 24. Carlo Rovelli on challenging our common-sense notion of time (nautil.us) 100 points by Deinos 20 hours ago | hide | 61 comments 25. Abelian sandpile model (wikipedia.org) 58 points by fanf2 13 hours ago | hide | 5 comments 26. Irish beach washed away 33 years ago reappears overnight after freak tide (2017) (theguardian.com) 65 points by camtarn 10 hours ago | hide | 15 comments 27. Automatic conversion between simplified and traditional Chinese (wikimedia.org) 46 points by anewhnaccount2 14 hours ago | hide | 9 comments 28. A new way to remove ice buildup without power or chemicals (phys.org) 53 points by dnetesn 17 hours ago | hide | 13 comments 29. A Conversation with Paul Graham [video] (youtube.com) 352 points by doppp 1 day ago | hide | 141 comments 30. Electric Vehicles’ Day Will Come, and It Might Come Suddenly (bloomberg.com) 156 points by jseliger 18 hours ago | hide | 381 comments More
Guidelines | FAQ | Support | API | Security | Lists | Bookmarklet | Legal | Apply to YC | Contact

Search:

==========================

hn.js?OTsPZRmTM03Q06uwGE7S

function $(id) { return document.getElementById(id); } function byClass (el, cl) { return el ? el.getElementsByClassName(cl) : [] } function byTag (el, tg) { return el ? el.getElementsByTagName(tg) : [] } function allof (cl) { return byClass(document, cl) } function hasClass (el, cl) { var a = el.className.split(' '); return afind(cl, a) } function addClass (el, cl) { if (el) { var a = el.className.split(' '); if (!afind(cl, a)) { a.unshift(cl); el.className = a.join(' ')}} } function remClass (el, cl) { if (el) { var a = el.className.split(' '); arem(a, cl); el.className = a.join(' ') } } function html (el) { return el ? el.innerHTML : null; } function attr (el, name) { return el.getAttribute(name) } function tonum (x) { var n = parseFloat(x); return isNaN(n) ? null : n } function remEl (el) { el.parentNode.removeChild(el) } function posf (f, a) { for (var i=0; i = 0) ? a[i] : null; } function acut (a, m, n) { return Array.prototype.slice.call(a, m, n) } function aeach (fn, a) { return Array.prototype.forEach.call(a, fn) } function arem (a, x) { var i = apos(x, a); if (i >= 0) { a.splice(i, 1); } return a; } function alast (a) { return a[a.length - 1] } function vis(el, on) { if (el) { on ? remClass(el, 'nosee') : addClass(el, 'nosee') } } function noshow (el) { addClass(el, 'noshow') } function elShow (el) { remClass(el, 'noshow') } function ind (el) { return (byTag(el, 'img')[0] || {}).width }

function vote(ev, el, how) { var id = el.id.split(/_/)[1]; var up = $('up_' + id); vis(up, how == 'un'); vis($('down_' + id), how == 'un'); var unv = ''; if (how != 'un') { unv = " | " + (how == 'up' ? 'unvote' : 'undown') + "" } $('unv_' + id).innerHTML = unv; new Image().src = el.href; ev.stopPropagation(); return false; }

function comments () { return allof('comtr') } function collapsed () { return allof('coll') }

function kidsOf (id) { var ks = []; var trs = comments(); var i = apos($(id), trs); if (i >= 0) { ks = acut(trs, i + 1); var n = ind($(id)); var j = apos(function(tr) {return ind(tr) = 0) { ks = acut(ks, 0, j) } } return ks; }

function toggle (ev, id) { var on = !afind($(id), collapsed()); (on ? addClass : remClass)($(id), 'coll'); recoll(); if ($('logout')) { new Image().src = 'collapse?id=' + id + (on ? '' : '&un=true'); } ev.stopPropagation(); return false; }

function expand (tr) { elShow(tr); elShow(byClass(tr, 'comment')[0]); vis(byClass(tr, 'votelinks')[0], true); byClass(tr, 'togg')[0].innerHTML = '[-]'; }

function squish (tr) { if (hasClass(tr, 'noshow')) return; aeach(noshow, kidsOf(tr.id)); var el = byClass(tr, 'togg')[0]; el.innerHTML = '[+' + el.getAttribute('n') + ']'; noshow(byClass(tr, 'comment')[0]); vis(byClass(tr, 'votelinks')[0], false); }

function recoll() { aeach(expand, comments()); aeach(squish, collapsed()); }

function onready () { recoll(); }

document.addEventListener("DOMContentLoaded", onready);

function ajax (fn, url) { var req = new XMLHttpRequest(); req.open('GET', url, true); req.onreadystatechange = function () { if (req.readyState === 4 && req.status === 200) { fn(req.responseText) } } return req.send(); }

function onop () { return attr(byTag(document,'html')[0],'op') }

function ranknum (el) { var s = html(el) || ""; var a = s.match(/[0-9]+/); if (a) { return tonum(a[0]); } }

var n1 = ranknum(allof('rank')[0]) || 1;

function newstory (json) { if (json) { var pair = JSON.parse(json); var sp = alast(allof('spacer')); sp.insertAdjacentHTML('afterend', pair[0] + sp.outerHTML); fixranks(); if (onop() == 'newest') { var n = ranknum(alast(allof('rank'))); allof('morelink')[0].href = 'newest?next=' + pair[1] + '&n=' + (n + 1); } } }

function fixranks () { var rks = allof('rank'); aeach(function (rk) { rk.innerHTML = (apos(rk,rks) + n1) + '.' }, rks); }

function moreurl() { return allof('morelink')[0].href } function morenext () { return tonum(moreurl().split('next=')[1]) }

function hidestory (ev, el, id) { for (var i=0; i

    .-"            "-.
 /                    \
| .__. | | . . - . . - . .| | )(__/ \__)( | |/ /\ \| (___ ^^ ___) |_|IIIIII|_| _| H.N. |_ MUWA HAHAHAHA! | \IIIIII/ | \ -- / `------`

Recent public activity

  1. comment
    Comment #18519684

    recall the earlier days of virus development, when damages to hardware and data structures was common, until the counting coup mentality yielded to virus that caused meta damages. …

  2. comment
    Comment #18514584

    there is a thing called developmental noise, thats the outcome of phenotype after post expressional events further modify the expression products [proteins, RNA, MeDNA etc.] the fa…

  3. comment
    Comment #18195950

    currency should be somthing physically valuable, barrels of oil, metal ingots, first born, atmospheric oxygen etc. major educational overhaul that amounts to sedition is required, …

  4. comment
    Comment #17906124

    ...this is why i horde ded electronics, i call it the morgue so go robeth the morgue for your franken-proto...

  5. comment
    Comment #17906066

    ...hopes are he will believle that giving the psword will get him out of jail...hopes that are fostered by the police lying to him about what will happen... the cops in UK are allo…

  6. comment
    Comment #17897568

    ...BIOS and CMOS made popular computing possible for the unbaptized masses...the average user would just walk away if they had to, among other things initiate the chips onboard and…

  7. comment
    Comment #17897551

    ...good show for the z80 board... as mentioned elsewhere, the wire wrapping approach has its upper limits... a higher clock speed will result in crosstalking between bus channels..…

  8. comment
    Comment #17895944

    ...when i was younger and used to hang out on the block we would go into the store and ask them to turn it up cuz its a real kewl psychedelic sound to trip out on...they didnt seem…

  9. comment
    Comment #17895905

    whats kinda usefull is to let the shadow banned all talk to each other, so they can keep each other company, it seems less likely they will realize the gig is up and try to make an…

  10. comment
    Comment #17894081

    you can have my youtube download site any time, what is very important to me is the ability to open web media with VLC and use the nifty tools available, such as recording transcod…

  11. comment
    Comment #17894064

    ...im wondering where user agent spoofing fits in with browser analytics, ..whenever im concerned with obfusicating my attack surface due to potential website hostility, i rotate m…

  12. comment
    Comment #17892483

    there is far too much hackability Re spoofed user names, a machine can tell if a name is reused but people often cant. ...the problem with filtering name and passwd reuse also brin…

  13. story
    [MY FRIEND] Michelle evelyn keene walks on the wind

    I taught her how use a compound bow, and she was a natural talent, im sure she would have been a world class champ in 3~4 years of arching, it was a tragic waste of potential that …

  14. story
    Michelle evelyn keene walks on the wind

    shell belle your bowstring still sings in my ears

  15. comment
    Comment #17891000

    Do not stand at my grave and weep Do not stand at my grave and weep, I am not there; I do not sleep. I am a thousand winds that blow, I am the diamond glints on snow, I am the sun …

  16. comment
    Comment #17890172

    [Re:] the same article we are talking about... [===>] https://www.eff.org/wp/digital-privacy-us-border-2017

  17. comment
    Comment #17890073

    verizon seems to be having a hard time understanding what an ISP should be doing...[California, British Columbia] https://motherboard.vice.com/en_us/article/wjkmbn/verizon-fi...

  18. comment
    Comment #17890037

    ...there are other efforts that may require ISPs to decide if something is [il]legal...[Re:] MPAA, RIAA... one example of many... https://www.eff.org/tr/deeplinks/2017/04/another-l…

  19. comment
    Comment #17889589

    ...yup a local solution doesnt satisfy a global level bork [NOT BorK ]

  20. comment
    Comment #17889551

    if you know what you are doing you dont need to take any kind of a digital asset across a border, everything you need can be obtained at your destination... border agents are not p…

  21. comment
    Comment #17889330

    ...i think the lifesize chiron also has some non technic parts, such as steeltubing chassis ?

  22. comment
    Comment #17889309

    i was assuming you were concerned with the assembly coming apart when used, but now i see your concern, using the technic material itself is similar to making an airplane out of co…

  23. comment
    Comment #17889241

    Once you are satisfied with the assembly use glue, epoxy, wax, or chewing gum...[seriously]

  24. comment
    Comment #17889146

    britain doesnt have a 5th amendment right... thats one of the reasons there was a little bit of a problem ~ 240 years ago https://www.gov.uk/arrested-your-rights you will be sancti…

  25. comment