|
What are the best comments or threads you've ever seen on reddit?
May 5, 2012 11:56 AM Subscribe What is the best comment or thread you've ever seen on reddit?
I was inspired by this comment in the recent reddit Meta that pointed to a fantastic answer...
Started by Blasdelb on
, 12 posts
by 11 people.
Answer Snippets (Read the full thread at metafilter):
So that link is actually a fantastic representation....
Here are a few examples.
Reddit has a subreddit specifically from that, there's some good stuff among past Reddit Comment of the Year nominees.
But...
But...
Now calls her car the "adventure box".
|
|
Sorry I want to learn Python, and was curious if Reddit 's codebase uses any sort of ORM ?
Started by mrblah on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Reddit uses the Pylons framework-level ORM library as far as ORMs go, and so Reddit has a fair amount of custom code that makes the ORM.
Have a look: http://code.reddit.com/browser/r2/r2/lib/db/
Yes.
|
|
I think there is a wealth of natural language data associated with sites like reddit or digg or news.google.com.
I have done a little bit of research with text mining, but can't find how I could use those tools to parse something like reddit.
What kind...
Started by Berlin Brown on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I have found in the past that the best way to mine data on sites like Reddit or Digg.
Your call.
|
Ask your Facebook Friends
|
I would like to create a webpage that, given two reddit usernames and their passwords, subscribes user2 to all of the subreddits that user1 is subscribed to. So I need to:
Get the subreddits that user1 is subscribed to. Subscribe user2 to those reddits...
Started by awegawef on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
[pic] (i.imgur.com) 9-00 NOTICE ....
The open source product TestPlan is very...
From there it's a matter of checking how reddit subscribes, as long as it's not against the reddit terms of service.
Easily regex the necessary information.
|
|
Hi, when you click on the reddit register button, a nice window pops up and the rest of the screen goes blackish. you can click on the rest of the screen to close the pop up.
I know I could use the outermost div for this, but is that how reddit does it...
Started by mrblah on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
They create a div element with the following CSS properies:
/* Makes div cover page */ position: fixed; top: 0; left: 0; width: 100%; height: 100%; /* Puts div over all other elements on page */ z-index: 1000; ... .
They use a plugin similar to thickbox.
|
|
I'm working on a WordPress site that has two external javascript files load about half-way down the page. The files are badges from Reddit and Digg, and often add about 4-8 seconds to the total loading time of page — while also preventing the bottom 5...
Started by chris on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
When the page is done loading, append a "script" element to head so the Digg/Reddit scripts.
Create a div ["divA"] where you want your Digg/Reddit iframes to go [So this is basically just a placeholder].
|
|
Whats the 7n5lu in the reddit URL http://www.reddit.com/r/reddit.com/comments/7n5lu/man_can_fly_if_you_watch_one_video_in_2
how is it generated?
update: @Gerald, Thanks for the code. I initially thought this is some obfuscation of the id. But, it is just...
Started by sleepy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The reddit source code is available ! Here is what I found for generating that string:
def.
In the database.
|
|
Reddit
Anyone here Reddit?
Share, discuss, lol.
Started by Jakelax13 on
, 13 posts
by 12 people.
Answer Snippets (Read the full thread at insidelacrosse):
I talked to someone from TLF on reddit....
I browse funnyjunk occasionally though Yeah, I participate a bit .
I have been looking for the other crossbreed reddit-TLF people never really got into reddit.
Frequent a website with cat pictures.
|
|
See what Reddit uses to add one of its buttons:
<script type="text/javascript" src="http://www.reddit.com/button.js?t=2"></script>
This JavaScript adds an <iframe> to the page, then the <iframe> adds the HTML code.
Why doesn’t ...
Started by moustafa on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The actual HTML doesn't carry....
This is one of the good practices of designing a web-page with graceful degradation .
This technique is called as unobstrusive linking of JavaScript.
To isolate the button's markup and style from the web site's own CSS rules .
|
|
I am looking to launch a site like Reddit/Digg/Hacker News internally in my company that lets people submit links, vote on them, and discuss them. The feature set doesn't need to be any more complex than Hacker News . I am looking for an existing platform...
Started by RexE on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Ignore the license, nobody's.
Just use Reddit if their source is what would work for your needs.
|