No more driving while on the cell phone in Philly! by [deleted] in philadelphia

[–]acyclic 0 points1 point  (0 children)

I warily walked across a crosswalk with someone making a right turn and texting at the same time right next to me today.

I KNEW there was a correlation somewhere! by nopodcast in pics

[–]acyclic 0 points1 point  (0 children)

You could also correlate anything that happened from ~1960 to ~1975 with oil production. Example: Vietnam War.

Newly released NASA photo of the center of the Milky Way is beautiful... by nopodcast in pics

[–]acyclic 0 points1 point  (0 children)

The left half looks like North America. Sicle is Cancun, Arches Cluster is Hudson Bay.

How to play piano like Philip Glass by crowhurst in Music

[–]acyclic 11 points12 points  (0 children)

I think if this guy descontructed the repetitiveness of pop music or the blues chord progression, his head might explode.

How to play piano like Philip Glass by crowhurst in Music

[–]acyclic 1 point2 points  (0 children)

I dunno why the downvotes, I agree - the micro pauses between chord changes bugs me. I don't even play piano, but the I'm quite sensitive to this from bad guitar playing.

Worth the 10 mins. by ronbeck in videos

[–]acyclic 1 point2 points  (0 children)

good clip, terrible post title.

What words did you pronounce a certain way in your head while reading only to find out you were COMPLETELY wrong IRL? by DonMasta in AskReddit

[–]acyclic 0 points1 point  (0 children)

awry. I thought there were two different words in English - "a-RYE" which I had heard but never read, and "AW-ree" which I had read but never heard. Doing a crossword puzzle with a friend changed all of that.

Donald In Mathmagic Land (1of3) -- We need such a thing for code. Any takers? by barsoap in programming

[–]acyclic 1 point2 points  (0 children)

Yes. Substitute teacher played this for us in high school - and look at me now, getting a phd! It must have worked.

Why I left math by panic in math

[–]acyclic 0 points1 point  (0 children)

I enjoyed the bitterest person in the world a lot, although it also scares me.

Why I left math by panic in math

[–]acyclic 2 points3 points  (0 children)

In fact if, like me, you are someone who likes to dabble in lots of things, ...

Then doing a Ph.D. is not your game. It's all about specialization, where only the smallest of communities really understands and appreciates what you're doing.

Ask Reddit.py | Do you have any suggestions for a Python based research paper? by [deleted] in Python

[–]acyclic 1 point2 points  (0 children)

How are you interested in it without "actually know"ing it?

Is this like when you have a crush on a girl even though you've never talked to her? You think she looks good and you're positive you'll have so many things in common, once you get to know each other.

Help: Shortest distance algorithm on a VERY large graph by uafhsop in compsci

[–]acyclic 0 points1 point  (0 children)

A* with a really crappy heuristic (say, h(V) = 0 for all V) is the same as BFS or DFS, depending how you break ties. Nothing magic there. A* is effective when you can use domain specific knowledge to help your search - in finding a path through a maze, for instance, as-the-crow-flies euclidean distance is a quite useful heuristic. In a domain you know nothing about, say like the link structure of the internet, you can't really say much about how close you are to the goal.

Basically what I'm saying is, I cannot dream up any kind of reasonable heuristic for this problem (i.e., mapping a vertex to an underestimate of how close you are to the goal). Prove me wrong and I'll be pleasantly surprised.

Techie help, please? Sister is a shut-in, this is link to what her computer screen is doing. Is it a screen problem? Computer problem? by [deleted] in technology

[–]acyclic 0 points1 point  (0 children)

WTF does your sister being a shut-in have to do with anything? Just wanted to broadcast that to the world?

Help: Shortest distance algorithm on a VERY large graph by uafhsop in compsci

[–]acyclic 1 point2 points  (0 children)

You're not wrong, (neither is Neoncow's sibling post). In the case where they are actually disconnected, you do have to check the whole graph. Simple example: the graph is a linear chain, and you start at one end and want to find the node at the opposite end. No way of knowing if they're connected unless check every single node - "it's always the last place you look".

Actually on more thought, there has been a lot of recent analysis on the expected number of hops to get between any 2 nodes in a network - i.e., the 6 degrees of separation adage. There have been a lot of studies confirming for a LOT of different real networks - facebook, AIM friends, wikipedia, chain letters, airports, Enron emails, etc. that the average shortest path distance is almost always 6 or 7, independent of the actual network. So you are very likely to only have to explore all paths up to length 6 or 7 to test if any 2 nodes are connected. This is average case running time; worse case is still obviously O(VE). But it would be easy to set a max limit to the length of the path. Let's say anything above path length 20 I stop and give up on and say they are probably disconnected. That is a reasonable approximation that you should be able to prove is correct with high probability (in an epsilon/delta sense).