sente | 4 years ago | on: Canistilluse.com
sente's comments
sente | 5 years ago | on: Why is some web pages don't load in web views?
sente | 7 years ago | on: Ask HN: Is it morally acceptable for a country to not want immigration?
sente | 7 years ago | on: Show HN: Announce and discover GitHub repos
If I may make a suggestion, can you tweak the layout/design for a better mobile experience?
I can only read the first three or so words about the repos when scrolling through the list.
sente | 7 years ago | on: Console.table()
sente | 8 years ago | on: I usually run 'w' first when troubleshooting unknown machines
sente | 8 years ago | on: “Rise and Kill First” Exploring Israel's Assassination Program
sente | 8 years ago | on: Show HN: Six Degrees of Wikipedia
Just a heads up - some of the node colors can be difficult to differentiate for people who are red/green colorblind. Very minor, just wanted to mention it though.
sente | 8 years ago | on: John Perry Barlow has died
sente | 8 years ago | on: Hacker News equivalent for other fields
sente | 11 years ago | on: WEB DEVELOPER (DOWNTOWN LOS ANGELES)
sente | 11 years ago | on: Vim.js – JavaScript port of Vim
In fact, I think I only type `q:` as a typo when I'm trying to `:q[uit]` :p
sente | 12 years ago | on: Python web scraping
Has anyone had any success with them?
sente | 13 years ago | on: Ask HN: Who wants a couple of free domains?
Are you on IRC (/msg sente if so) - would you be up for chatting?
Not trying to be secretive here, but feel 10 mins of chatting would be far more effective than posting a write up.
sente | 13 years ago | on: Ask HN: Bookmarklet library + community
I have hundreds of them...
sente | 13 years ago | on: Would anyone use a command line blog platform?
sente | 13 years ago | on: Sentry, The (Now Profitable) Bug Tracker Gets A Huge Makeover
sente | 13 years ago | on: Sentry, The (Now Profitable) Bug Tracker Gets A Huge Makeover
Is there something obvious I was missing?
This all being said, I'm very impressed with exception reporting at getsentry.com!
sente | 13 years ago | on: Githtml - View Html Files from Github Repos On The Fly
I've ended up using this bookmarklet on a lot of non-github.com sites too.
For instance, you can see how it renders http://c.sente.cc/hcVg/xkcd.txt here: http://i.imgur.com/DNVqd.png
here's the code in snippet form:
javascript:function write_window(content) {top.consoleRef=window.open(%27%27,%27git-r-done%27,+%27,menubar=1%27+%27,toolbar=1%27+%27,status=1%27+%27,scrollbars=1%27+%27,resizable=1%27);top.consoleRef.document.writeln(content);top.consoleRef.document.close();}function dostuff() {$.ajax({url: document.location.href,dataType:%27html%27,success: function(content){setTimeout(function(){write_window(content)},500);}});}function add_jquery(attempt) {var jq=document.createElement(%27script%27);jq.type=%27text/javascript%27;jq.async=false;jq.src=%27https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js%27;var s=document.getElementsByTagName(%27script%27)[0];s.parentNode.insertBefore(jq,s);try{var foo=$(%27*%27);dostuff();}catch(err){if(attempt < 5){attempt = attempt + 1;setTimeout("add_jquery("+attempt+")",1000)}else{alert(%27could not load jquery..try again!%27);}}}add_jquery(0);sente | 13 years ago | on: Show HN: Githtml - Instantly View Github HTML Pages
It was kind of a one-off, but it's been serving me well the past few months. When at the page https://raw.github.com/ryt/githtml/master/example.html -- both of our bookmarks seem to work identically.