Search results

  1. UnknowVector

    Sci/Tech Excel Is An Art Form: These Beautiful Images Are Proof

    Maybe someone could introduce him to inkscape or something?
  2. UnknowVector

    Sci/Tech Google’s ‘#ifihadglass’ winners are mostly celebs and famous Twitter users

    I'm calling BS. That article doesn't link to or give ANY of the data. So I went looking for it. It's not particular damning. http://www.reddit.com/r/technology/comments/1bbl71/student_analyzes_google_glass_winners_discovers/ http://cs.stanford.edu/people/karpathy/glass/
  3. UnknowVector

    World China: Officials caught spray-painting grass green in Chengdu

    Am I missing something? Won't this just kill the grass even faster? If the dye is absorbing all the (non-green) light instead of the plant :S.
  4. UnknowVector

    Sci/Tech Your Android Phone Could Help Scientists Predict Your Weather

    http://en.wikipedia.org/wiki/Meteorology Notice how the phrase "air pressure" appears in blue in the second paragraph? More data points = sharper conclusions. The samplings probably pretty wonky, all the readings will be concentrated in cities with no coverage of rural areas and the ocean, but...
  5. UnknowVector

    Javascript loop question

    > halts execution of program In what way? Does this crash? Does it appear to do nothing? What exactly is happening. Those two snippets of code look equivalent to me. Are you sure that's all your changing? > I suspect loop runs in separate thread and it can't get variables in time. Pros maybe...
  6. UnknowVector

    selectively disable facebook

    Relevant thread on a NoScript board: http://forums.informaction.com/viewtopic.php?f=10&t=6423 Direct link to FAQ: http://noscript.net/faq#qa8_10
  7. UnknowVector

    What's your top anime list

    Outlaw star is first. Not sure about the ordering after that but: -Paranoia Agent -The Melancholy of Haruhi Suzumiya -Ergo Proxy -Full Metal Alchemist (I like Brotherhood better, in large part because of the ending and Olivier Armstrong.) -Ghost in the Shell -Tenchi Muyo! -Sasami: Magical...
  8. UnknowVector

    [C++] Creating a class for any type of variable?

    > How do I create something like this, which doesn't have a set type. http://www.cplusplus.com/doc/tutorial/templates/ That or void pointers. XD. Seriously though, templates. > void deleteEnemy(Enemy enemy); Exactly how do you expect this to work? It looks to me like you are passing...
  9. UnknowVector

    Creating a SIN wave in OpenGL

    You're writing in a pure procedural style, so if you can follow the math you should be able to follow the code. Try describing the exact math you would use. Will your grid be moving up and down like a grate of solid metal bars, where every piece of metal moves together? (So, just like what you...
  10. UnknowVector

    Can't access moved threads from their old forum

    I tried the two threads I referenced above. The formerly broken links now work. They appear to redirect to the correct link with the newer thread ID. Looks fixed to me.
  11. UnknowVector

    Can't access moved threads from their old forum

    When a thread is moved a redirect to it is left in its prior forum. This redirect is currently broken. Clicking on it takes you to an error page displaying: The link to the thread from its new forum works fine. The link to the thread from the profile of the original poster also works fine...
  12. UnknowVector

    Override-able functions? :s

    I have no idea what you want. You can't have a function that does nothing in one file and something in another. You can overload the function, creating two functions with different argument lists but the same name (really they are entirely different functions), is that what you want? You can...
  13. UnknowVector

    Creating a SIN wave in OpenGL

    No; he doesn't have a waveform at all. He has a series of 36 co-linear line segments that go up and down as one, with their height given by a sine wave. Rather boring really. We can fix that though. :) Here's your typical sine wave in the (x, y) plane: y = 5sin((x) * pi). It sits on the x-axis...
  14. UnknowVector

    [Maths] Gravitate towards target point?

    I'm assuming the "angle towards target from projectile" is measured counterclockwise from the positive x-axis, with the origin at the position of the projectile (i.e. atan2(target-projectile)). (For future reference: two points never defines an angle. Always make your third reference point...
  15. UnknowVector

    General Parents put 3 month old in Washing Machine and turn it on (Video)

    Not what I meant. Why does it lock and start automatically when the door is first closed? Why isn't there a start button?
  16. UnknowVector

    Sci/Tech Windows 8 boots too quickly, first world OS problem

    You can tell windows to boot into safe mode next time from within msconfig ( http://pcsupport.about.com/od/tipstricks/ht/smsysconfig.htm ). Won't get you to the BIOS though.
  17. UnknowVector

    C++ Tutorial: Variables and Functions

    Handles are not a part of standard C++. There are, to the best of my understanding--which is somewhat lacking because the C++ ecosystem is pretty confusing--an addition that came from Microsoft's Common Language Infrastructure and are available in C++/CLI language, which is only supported by the...
  18. UnknowVector

    Current bugs (xenforo)

    Well the new xenforo style looks great. Like the glassy look and the new layout. The navbar is also slick. However, the old system had direct links to a few special threads: like the minicity and site history threads. If you wanted to keep those links, well they aren't there. Otherwise I guess...
  19. UnknowVector

    General Parents put 3 month old in Washing Machine and turn it on (Video)

    I can't blame them, this is exactly the kind of thing that I would do. Aside: the washer locks and starts as soon as you close the door? Why?
  20. UnknowVector

    Game Math; Vector Dot Product

    Looks like you've got physics code up there. That's pretty much how I learned about dot products myself. You might know all this already, but here's some more stuff about the dot product. The internet can't possibly have too many posts about the dot product, given how important it is. The...
Top