instruction stringlengths 4 105 | output stringlengths 8 56.7k |
|---|---|
What's New in SEO? | epi0Bauqu: Concentrate on getting quality backlinks. |
Monetizing a Twitter bot? | trickjarrett: Your stats are unfortunately pretty small when it comes to advertising dollars.The fact is that Twitter doesn't lend itself to monetizing on the messages itself, and as that is how your bot operates that makes it quite difficult.Twitter spam is pretty unwelcome in general, the "friending" (when users foll... |
Monetizing a Twitter bot? | ivey: Whatever you decide to do, I think direct message ads are a bad choice. |
Finding a job for the rest of my life | skmurphy: I would focus on finding a job you can do well for the next three to five years, building on gaius' point that you won't be the same person in 10 years.I wonder if it's not writing but finishing something and having it judged that's the problem (a roundabout way of saying perfectionism). If it is writing--whi... |
Monetizing a Twitter bot? | trevorturk: I just started using the service a couple of days ago, and I'm very impressed. Awesome work.I can understand your problem, though. Honestly, I'm not sure that I would pay anything for it, but I'm not a business user or anything - I'm just using it as a slight convenience.So, for me at least, there's not muc... |
Finding a job for the rest of my life | omarchowdhury: "I love thinking through problems.""I'm definitely a vision guy. I ask way too many questions, but I'm extremely good at throwing away useless information and working out a way to solve something, to get somewhere, to chose a path that will likely work."From these quotes alone I can see what "career" you... |
Monetizing a Twitter bot? | goodkarma: Four ideas:1. Are you getting their e-mail addresses? You could send out some kind of e-mail once a month with a summary of their packages and some ads and/or affiliate offers.2. Since you are sending them direct messages, they must be following you. Use Magpie or some other service to just post advertismen... |
How to compose two mapping functions into a third? | nostrademons: What you want is basically the compiler optimization called deforestation:http://en.wikipedia.org/wiki/Deforestation_(computer_science)It's only valid in a pure language, and in a strict language, it has the embarassing side-effect that it can sometimes make non-terminating programs terminate. |
Monetizing a Twitter bot? | rrhyne: You need more traffic. Who has a line on people getting shipped packages? E-commerce sites.You could develop a plugin for zencart or any of the other major shopping cart systems that lets users plug their twitter name in to get updates. That should bring you lots of traffic. Maybe you could sell that?That's not... |
Finding a job for the rest of my life | tstegart: By the way, Thanks to all of you for taking the time to read this post and compose your replies. |
How to compose two mapping functions into a third? | elijahbuck: I might be missing something here, but what about this (I didn't even attempt to run this)? Basically, just call map1 and map2 with a single-number interval, and then apply the function from map3 to that result. This avoids making a local copy, but does require a lot of function calls.(defun compmap (fn map... |
How to compose two mapping functions into a third? | qqq: map1 and map2 repeat code. abstract this part to a general mapper function:(loop for n from start to end dothen you will write the content of the first mapping as a function foo and call the general mapper and pass it foo to accomplish the same thing map1 does.same with map2, except baz instead of foo.then map3 is... |
How to compose two mapping functions into a third? | skenney26: Perhaps it would be simpler to pass the interval modifiers as functional arguments: (def mapr (f x y . fs)
(let r (range x y)
(map f r
(apply map + (map [map _ r] fs)))))
arc> (mapr (fn (x y) (prn x " " y)) 1 3 [+ _ 10])
1 11
2 12
3 13
(1 2 3)
arc> (mapr (fn (x y) (prn x... |
How to compose two mapping functions into a third? | paulgb: You could use lazy lists like (I think) Haskell uses: (define (lazy-range start end) ; create a lazy list that returns the next number in the range [start end]
(if (= start end) (cons start '())
(cons start
(delay (lazy-range (add1 start) end)))))
(define (lazy-map fn lst) ; map a function to ... |
How to compose two mapping functions into a third? | nadim: www.stackoverflow.com(no offense) |
How to compose two mapping functions into a third? | silentbicycle: Abstract out the mapping itself, and then apply the composed transformation from map1 and map2 to it. map1 and map2 don't need to do any looping themselves, just work take an int and return an int.Think of it in terms of doing all of your transformations in one pass, if that helps. |
Is it worth switching to a Mac? | jodrellblank: Terminal is nice, spaces is nice, expose is great. Having an OS that can suspend/resume is really nice.But it's just not Windows. My favourite apps aren't here, I don't know my way around the filesystem, all the Windows-specific tools I know are meaningless. When I stray too far outside Safari, it's prett... |
Monetizing a Twitter bot? | snowstorm: your best bet is to get more users, get momentum, and hopefully one of the shipping companies notices you and partners with you. |
How to compose two mapping functions into a third? | gruseom: Thanks for the replies. Several have pointed out that the unique portions of map1 and map2 are simple functions that operate on scalars and are easily composable. However, this is not true of the actual problem I'm working on. I chose a toy example so I could describe it briefly. Unfortunately, it's misleading... |
Is it worth switching to a Mac? | inklesspen: I highly recommend Screenflow as a replacement for Camtasia. |
Review My App - Popling.net, Learning without studying | bprater: Is the site down right now? |
Review My App - Popling.net, Learning without studying | rrhyne: Bad idea? Don't want to install? Website doesn't get the idea across? Help me out here! :D |
Review My App - Popling.net, Learning without studying | gsmaverick: Neat idea, but I think the execution needs some work. You have definitely done something cool here, but take it a step further. I haven't checked it out too much but I imagine you can make your own packs as well? |
Where do you go for hacking help? | dawie: Google and these days StackOverflow (http://stackoverflow.com/) |
Where do you go for hacking help? | spydez: When I hit a wall, I usually do something like this: 1. Google
2. Stare at ceiling.
3. Do something unrelated, like read HN, while my subconscious ruminates.
4. Try again.
I like to figure it out without bugging other people, unless it's something stupid and I know a guy who knows the answer. |
Review My App - Popling.net, Learning without studying | rrhyne: So far from looking at my Mint stats after putting the site up here 5 hours ago, I've gotten only 50 uniques, 3 new user accounts, but only 1 person actually using the app through the AIR install.That looks like a 2% conversion to user rate, with a 66% falloff rate between signing up and using the service.Disma... |
Where do you go for hacking help? | Shamiq: Typical order: 1. Google
2. Whiteboard
3. Flatmates |
Where do you go for hacking help? | Tichy: Not that I have used it much, but my impression was lately that such things have moved to IRC (rather than usenet)? |
Closest thing to Firebug for IE? | jdunck: http://www.debugbar.com/ |
Where do you go for hacking help? | thomasmallen: Either documentation or the mailing list (if not in the docs). Forums if the problem isn't specific to the project. |
Closest thing to Firebug for IE? | thorax: Firebug Lite:
http://getfirebug.com/lite.htmlThey've gotten it to come further along than I expected it would ever get. |
Where do you go for hacking help? | CaptainMorgan: Google goes without saying...As Tichy alluded to, I make heavy use of IRC in what I have learned to be are some polite and efficient channels. It takes a while to see which channels are going to help you and which are just going to waste your time, although the latter is easier to spot.Sometimes I find ... |
Closest thing to Firebug for IE? | apu: XRay for some rudimentary placement information: http://www.westciv.com/xray/ |
Closest thing to Firebug for IE? | falsestprophet: It may very well be Firebug on Firefox. |
Where do you go for hacking help? | hachiya: irc.freenode.net
#perl
#ruby-lang
#c
#pythonThese are just a few of the populated and extremely helpful channels available. |
What are physicists doing? | newt0311: So... Special relativity is called "special" because it specifically assumes no acceleration and therefore, no force. That formula you have is an approximation for "small" forces. General relativity is what actually explains space with acceleration (using Riemann Geometry, another fascination and extremely co... |
Where do you go for hacking help? | macco: After Google I search the forum that I can relate to the forum and if I have no clue I post in that forums. |
Where do you go for hacking help? | viggity: stackoverflow.com |
Closest thing to Firebug for IE? | halo: Developer Tools for IE8 with IE8 put in IE6/7 rendering mode? |
Why do we capitalize letters? | noodle: i haven't done it in years, except in formal capacities. fewer keystrokes = more efficiency |
Why do we capitalize letters? | parenthesis: We do actually capitalise a lot less than was done in the past. Find some unmodernised English writing from circa 1600, say, and you'll find lots of capitalisation of (non-proper) nouns, for example.The contemporary convention of capitalising the first letter of a new sentence helps to show more clearly wh... |
Where do you go for hacking help? | twoism: Depending on the language, usually...
Google (of course). Then apidock.com (for ruby / rails) pretty much the best doc site for either in my opinion.For Rails I have found that just browsing the source/comments on github is the best source for figuring out really tricky issues. I stay logged in to IRC but most ... |
Where do you go for hacking help? | dcminter: (1.) Google. (2.) Speak to friends and colleagues. (3.) More Google. (4.) Then I crack open the source code (if available). (5.) Then I hit the bookshelf, including Safari Online. (6.) If I still haven't got it, I'll ask in a forum, but at that point it's a toss up whether I'll get an answer or not. |
Where do you go for hacking help? | tdavis: Google then Freenode, pretty much exclusively.Edit: Also, friends smarter in whatever area it may be, if any are handy. |
Where do you go for hacking help? | DanielBMarkham: Google does it |
Where do you go for hacking help? | epi0Bauqu: I'm thinking of starting (with mdakin) a help instance akin to the MIT help instance. It would be a live chat system that has a UI designed to not let you use focus. No idle chatter, just crowd sourced Q/A.The intention is to have a core group of hackers essentially leave it on all the time and answer when... |
Where do you go for hacking help? | aditya: IRC. irc.freenode.net (use http://mibbit.com if you don't have an irc client :) |
Closest thing to Firebug for IE? | kingsley2: Microsoft Script Editor (if you primarily need JavaScript debugging). Unfortunately, it's bundled with MS Office - go figure. http://www.jonathanboutelle.com/mt/archives/2006/01/howto_de... |
Subversion client recommendations for OSX and PC? | makecheck: You can just download the binaries for the client (http://subversion.tigris.org/). If you want menu and icon support when browsing files, there's SCPlugin for the Mac's Finder or TortoiseSVN for Windows. If you want a GUI, note that the Mac's native Xcode environment has Subversion support built-in. |
Closest thing to Firebug for IE? | msb: This one is not bad...http://projects.nikhilk.net/WebDevHelper/Default.aspx |
Any recommended companies that can do security audits for startups? | jamess: What sort of price are you looking to pay? I've written a lot of secure software in the past, and I may well be able to recommend a couple of firms who have done a similar job for me but I'm afraid they don't come terribly cheap. |
What are physicists doing? | nsrivast: You say "physics textbooks don't give this system explicitly". They don't need to - they simply present the system that's most instructive to learn or is most interesting to their authors. As long as your formula or "system" is consistent with the accepted formulations of special relativity, you have no reaso... |
Closest thing to Firebug for IE? | jmoiron: If you install visual studio express 'web developer' package, which urged strongly to install microsoft sql server and some large dot net package, you can debug javascript fairly nicely:http://www.berniecode.com/blog/2007/03/08/how-to-debug-javas...I use a combination of this and firebog lite, but neither is a... |
Where do you go for hacking help? | dulbelajardul: If google / forum / irc channel cannot help you or maybe disconnected from internet, there are a lot of way to problem solving
http://en.wikipedia.org/wiki/Problem_solving |
Subversion client recommendations for OSX and PC? | cpr: (All for Mac OS X:)There's a beautiful app, Versions, http://www.versionsapp.com/, but it's around US$50. That's the one we use.There's SvnX, http://www.lachoseinteractive.net/en/community/subversion, which is free but ultimately not very good (in our experience).There's ZigVersion, http://zigversion.com/; no opin... |
Do you write more/better code when you are drinking/drunk? | dmoney: Apparently there's been some research into this topic: http://xkcd.com/323/ |
Any recommended companies that can do security audits for startups? | yan: Paging tptacek. |
Do you write more/better code when you are drinking/drunk? | shutter: I've not tried this, but I would wonder how much the potential for "dumb errors" increases when in that state. I already say "Why the heck did I write that?" too many times even when sober! |
Do you write more/better code when you are drinking/drunk? | nostrademons: More, yes, but probably not better.We had a CS39 liquor cabinet in my Operating Systems Design course. Rum, vodka, gin, and lots of mixers. We needed it.This led to some funny comments in the code, like // Don't believe anything this next line says
// I'm drunk anyway. |
Good places to send Yahoo and other refugees? | jmtame: Tokbox! |
Do you write more/better code when you are drinking/drunk? | jmtame: I'm glad you asked this, now I won't feel so bad about doing it. |
Do you write more/better code when you are drinking/drunk? | adatta02: I drink while I'm coding pretty routinely. I can't really tell if it makes me any more productive but it definitely holds up the programmer stereotype.There is also that sense of urgency that you have to get stuff done before you get to drunk... |
Closest thing to Firebug for IE? | nickfox: Visual Studio 2008 with client-side debugging is pretty darn good. I use that along with firefox/firebug and have found the two to be comparable. Microsoft has done a pretty good job with the javascript debugging. |
Where do you go for hacking help? | nickfox: After I've exhausted all the usual suspects (google, newsgroups, etc.), I'll take a nap. I now do it on purpose and it's amazing how often I wake up with the answer in my head. |
Review my site - Shiftpop.com | trevelyan: I had trouble figuring out what the site did from the text in your advertisement, possibly because referring to video as "casts" is counter-intuitive to me. It makes me think of the word webcasts, when your examples seem to be video files and movies.Tried dragging a video into the lower sitecast box which is... |
Review my Startup, Entitea | guruz: If you expect a lot of german visitors, you might want to partner up with http://allmytea.de/ ... a site that lets people mix and then order their own tea.I showed this HN posting to a friend of mine. His reaction was basically "OMFG THAT WAS MY IDEA!" |
Good places to send Yahoo and other refugees? | andrew__: You could try adding them to http://layofftalent.com/ |
Do you write more/better code when you are drinking/drunk? | icey: I used to do this years ago - I'd get home from a night at the bar and decide to sling some code. Ultimately I had to stop doing it though; the code I wrote was written in such a different style than my ordinary style that it became problematic to troubleshoot easily.That being said, there was more than one occas... |
Where do you go for hacking help? | Jem: If Google proves unfruitful, I have a guy I pester. |
Review my site - Shiftpop.com | rrhyne: Second dropping the 'Casts' terminology. I would go with webcasts or streams. I would use google's keyword suggestion tool and find out what people are using to search for webcasts, then use those terms.I think you'll loose initial users people who don't get the functionality with the drag and drop.I like your ... |
Where do you go for hacking help? | known: http://groups.google.com/ |
When is a startup not a startup? | pclark: when its ajar? |
Do you write more/better code when you are drinking/drunk? | lacker: It doesn't seem to hurt for straightforward programs, but it's much easier to make bad design decisions while drunk. It also takes me forever to debug while drunk. I don't really think it helps me in any way. |
Outsourcing to Australia | stillmotion: Consider Australia as the 51st state of America, except everything is extremely expensive in Australian dollars. Developers there don't charge pennies, if that's what you're asking.If you're really looking for outsourcing, check out high quality Indian companies. They're a lot cheaper than what you'd find ... |
Where do you go for hacking help? | lacker: Google is the #1 resource if your question is the sort that can be summarized in a few words. Like if you want information about a particular function in a particular library, or to read how to integrate two different systems. Google is also the way to go if you have an error message and you can quote it to fin... |
Do you write more/better code when you are drinking/drunk? | m0digital: Ofcourse that's extremes to everything. If you develop while trashed I doubt its gonna turn out well.However, I do find myself programming better with some beer. I actually feel a little more relaxed and focus better. Strange I know. |
Closest thing to Firebug for IE? | mnaganov: IE Web Developer toolbar for DOM / CSS inspection and tweaking, and MS Script Editor (from MS Office) for JS debugging. Wireshark for net requests dumping.But of course Firebug is much easier to use. |
Question about an earlier post | kleevr: http://news.ycombinator.com/item?id=301155 |
Review my startup - CloudFire | aristus: Slick presentation, but I have to ask a few basic things:Were the heck do you get the 50Bn number, where do you get the 10% number, and what leads you to believe that the problem is ease of use?Does this 50Bn number include photos that the owner does not want to share? Photographers take tons of photos they th... |
Review my startup - CloudFire | redorb: YouTube has video / flickr has photos
* then again yahoo had search :) good luck |
Review my startup - CloudFire | jtuyen: http://www.cloudfireit.com/help/general.htmlnot sure if this is a design issue but from "Who did you build CloudFire for?" to "Do people that want to access my media need to download anything?" is indented and bolded. While from "Do people need a login to access my media?" to "I have a ton of stuff, will my br... |
When is a startup not a startup? | matthewer: when you feel like your not. |
Review my startup - CloudFire | rrhyne: I can't be bothered to upload. It's a problem, but personally, I'd be worried about security implications of sharing a folder on my hardrive with a webservice?I like your presentation. Very clean. on the Features page, I think changing the itunes/iphoto screens to a computer + photos illustration would go futhe... |
Review my startup - CloudFire | bprater: Wow, I'm slow or it took me at least a minute to figure out what the heck your service is doing.I think you may want to play with your slugline:"Tired of uploading your photos to Flickr to share pics with your friends and family? With Cloudfire, you'll never ever have to do it again. Here's why: the second a p... |
What's a modern equivalent of the 80's "War Games" movie? | shutter: Somewhat related: They made a WarGames sequel. http://www.imdb.com/title/tt0865957/I don't know of any hacker-related movies specifically, but I'd note a few sci-fi movies that inspired technological creativity: Flubber (the hovering robot), I Robot, Ironman. Also Futurama, in a somewhat different way. |
Review my startup - CloudFire | sobriquet: I feel that the video is way too long for a "quick tour". After watching bullet points slowly load for the first 30 seconds, I turned it off.While inquiring HN minds may watch all 4 min, I doubt most users will. I recommend a 30 second teaser which gets the message across, and turn the rest into a how-to vid... |
Review my startup - CloudFire | eli_s: Batch uploading a folder worth of photos to flickr is easy - 3 clicks 1. hit browse button 2. Multi-select all files 3. Upload.I don't think you're solving a problem that makes people's lives difficult at the moment. There is a huge resistance to change, so getting people to jump from flickr to cloudfire would r... |
What's a modern equivalent of the 80's "War Games" movie? | ruddzw: I'm inclined to just say WarGames. But the closest that I've seen in a more modern tone was Antitrust. None of my computer-inclined friends seemed to respect it though. |
Review my startup - CloudFire | paul9290: So this is DropBox for photos? I think that is how I understood it. |
Review my startup - CloudFire | whalesalad: Heh. In terms of the marketing material and the data on the website, it reminds me an awful lot of the startup that I work for... iLovePhotos (http://ilovephotos.com). Very similar indeed. |
Review my startup - CloudFire | joshsharp: Feedback on the site itself: pages like http://www.cloudfireit.com/pricing.html have the details -only- in the image (and no alt text). This is hardly the most accessible way to deliver the information, as screen readers won't pick up any of it. Consider using more semantic markup (headers and divs) and repl... |
Review my startup - CloudFire | okeumeni: I don’t know much about file sharing business, I don’t use any public system myself; we do own an infrastructure for that. But I have to say looking at your application it look great, I can tell you guys spend a lot of time on it and that you know what you are doing.This is my two cent advice to you guys: don... |
What's a modern equivalent of the 80's "War Games" movie? | thorax: Live Free or Die Hard maybe? War Games Dead Code? Antitrust?Not sure if those are driving people, but they try to put kids in those sort of situations to help save the world. |
Review my startup - CloudFire | catone: This is a really minor thing, but a pet peeve of mine is when vowels from two separate words line up in a domain. It confuses me at first glance, and sometimes the name gets obscured. So I see, CloudFireit (i.e., something I would pronounce "firite") instead of CloudFireIt.You might want to consider switching... |
What are your favorite talks/videos? | ardell: I love DHH's talk from Startup School "The Secret to Making Money Online". Seems like his "charge people to use your service" become a lot more relevant since the recession hit.http://www.justin.tv/hackertv/97862/DHH_Talk__Startup_School...Frankly I often mentally reference PG's startup school talk: solving a ... |
What's a modern equivalent of the 80's "War Games" movie? | manvsmachine: Strangely enough, I'd say Iron Man. A lot of people I've talked to about the movie were more into Tony Stark's smart home tech than they were into the suit. I distinctly remember one female friend of mine who despises tech talk, asking me all about whether it would be possible to engineer those self-dimmi... |
Why is there so much talk about git but little about mercurial | delano: http://whygitisbetterthanx.com/ |
Why is there so much talk about git but little about mercurial | illume: hg is easier to type than git. That's 33% better at least(with integer percentages, it's event better with float percentages... and even better with fractions).Imagine typing git 20 times? Well can you see it now? Good.NOW, imagine typing hg 20 times, that is 60 keys pressed, VS only 40 keys. You'll pr... |
Why is there so much talk about git but little about mercurial | neilc: Mostly it is just hype/marketing: technically, it's a wash. |
Why is there so much talk about git but little about mercurial | zacharydanger: The answer you're looking for is that the cool and/or hip Rails kids decided to back git. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.