Humor Random Comments Thread

Got a treat today while taxiing at LAX in the form of a Qantas A380. Hadn't seen one in person before.

Not the best quality picture, but decent.

picture.php
 
Got a treat today while taxiing at LAX in the form of a Qantas A380. Hadn't seen one in person before.

Not the best quality picture, but decent.

The best "treat" in my airport life was having a Zeppelin NT at the local regional airport for certification at the LBA... that one was so titanic, that you saw it from many kilometres distance. Sadly I had no camera to photograph it.

And even the tiny A318 that was tested there was way bigger than the usual small aircraft flying there...

Braunschweig_Flugbahn.jpg


Can't somebody make some meshes for the buildings for making a base of it? There is even a spaceflight relation the buildings on the left belong to the German aerospace centre... when I was young, I was apprentice there :love:
 
What PSU have you bought?

I started off with a secondhand but tower, with PSU, motherboard, and hard disk already installed. The PSU is a "500W" Turbolink ATX-TL - which is a piece of junk. First lesson learned the hard way: manufacturers of cheap PSUs lie about their rating. :facepalm:

Any recommendations for a hardware noob?
 
Last edited:
Braunschweig_Flugbahn.jpg


Can't somebody make some meshes for the buildings for making a base of it? There is even a spaceflight relation the buildings on the left belong to the German aerospace centre... when I was young, I was apprentice there :love:

Best I could do would be a poor representation. That being said, you got any better pictures?
 
Just tried my hand at gliding in FSX for the first time. Gotta say, I'm quite hooked :D
 
Best I could do would be a poor representation. That being said, you got any better pictures?

That's a better picture of the front side of the main building:

Braunschweig_Brunswick_Flughafen_BS-WOB_Eingang_%282006%29.JPG


(typical 1939 Nazi architecture, cheap copy of neoclassicism)

And that's the airport side of it:

Braunschweig_Brunswick_Flughafen_BS-WOB_Startbahnseite_%282006%29.JPG


---------- Post added at 05:20 PM ---------- Previous post was at 02:43 PM ----------

The former German astronaut and current ESA director for astronautics, Thomas Reiter, declared: "European astronauts could land on the moon in 10 years."

:rofl: :rofl: :rofl:

http://www.heise.de/newsticker/meld...-zehn-Jahren-auf-dem-Mond-landen-2304249.html

Maybe by hitchhiking.
 
I started off with a secondhand but tower, with PSU, motherboard, and hard disk already installed. The PSU is a "500W" Turbolink ATX-TL - which is a piece of junk. First lesson learned the hard way: manufacturers of cheap PSUs lie about their rating. :facepalm:

Any recommendations for a hardware noob?

Ah, I see. My father actually had some such PSUs go all kaboom-y in front of him some years ago.

As far as recommendations go, anything above 450W or so by a reputable manufacturer will do the trick. Personally I've had good experiences with Corsair PSUs (the modular 620W one you see in my system in my signature is now 5 years old).

Good brands include Antec, Corsair, Enermax, be quiet!, Seasonic for example.

If we limit ourselves to Corsair, I'd say something like a CX500 staying on the budget side would be fine. A PSU of the CS series would be a bit more efficient and bring with it semimodular cabling (big ATX cord and CPU cord are fixed, others such as drives can be addedd as needed).

Again, I've considered Corsair as an example only because I'm more familiar with their units. There of course are others, too.
EDIT: a good soul on /r/buildapc made this site: http://www.orionpsudb.com/, which contains a databse of PSUs of popular manufacturers.

Or, here it is explained quite well how to choose the right PSU:
[ame="http://www.youtube.com/watch?v=lqThn3C-zg4"]Choosing the Right PC Power Supply (PSU) as Fast As Possible - YouTube[/ame]


---------- Post added at 17:58 ---------- Previous post was at 17:55 ----------

Why, are they taking the scenic trajectory?

They're taking the "10-to-15-year-timeframe-that-anyone-will-forget-about-in-an-hour trajectory".
 
Last edited:
I wonder what the Android developers were smoking when they put a "destroy all data on SD card" button right next to "eject SD card" button.

Who puts a self-destruct button right next to a doorbell?
 
I wonder what the Android developers were smoking when they put a "destroy all data on SD card" button right next to "eject SD card" button.

Who puts a self-destruct button right next to a doorbell?

*shoves his minecraft build under the carpet and whistles nonchalantly*
 
I wonder what the Android developers were smoking when they put a "destroy all data on SD card" button right next to "eject SD card" button.

Who puts a self-destruct button right next to a doorbell?

Same on Windows Phone...but I won't check if there's a warning before the formatting begins. :P
 
I wonder what the Android developers were smoking when they put a "destroy all data on SD card" button right next to "eject SD card" button.

Who puts a self-destruct button right next to a doorbell?
I wonder who is in charge of the SD card management/operations and why the hell did they lock access to it for apps on 4.4 ? i have an internal memory of 2 Gb and I can't take more than 250-300 pictures at once ! And that number is going down as I install apps ...
 
I wonder what the Android developers were smoking when they put a "destroy all data on SD card" button right next to "eject SD card" button.

Who puts a self-destruct button right next to a doorbell?

The same guys that decided that its good to format a SD card if you plug it into a Android phone.
 
Im feeling rather stupid today. Does anyone understand why this particular method for checking if a circle and a line intersect works?

http://mathworld.wolfram.com/Circle-LineIntersection.html

I particularly am not sure whether the algorithm is for finding intersection of the infinite line, or just the line between the two points?

Looks like it is for an infinite line. It has some similarities to finding the intersection between a sphere and a plane.
 
Im feeling rather stupid today. Does anyone understand why this particular method for checking if a circle and a line intersect works?
It is for an infinite line.

Dr is the length of the segment given, distance between two point that define the line.

The distance L between this line and (0,0), where the centre of the circle is, will be L=D/Dr ( http://en.wikipedia.org/wiki/Distance_from_a_point_to_a_line#Line_defined_by_two_points ).

Then D=L * Dr.
Which means ∆=r^2 * Dr^2 - L^2 * Dr^2.

So, the discriminant (∆, delta) is in fact square of length of given segment multiplied by the difference between the square of the distance from line to the circle and circle radius.

∆=Dr^2 * (r^2 - L^2).
Since segment length, Dr, does not affect the distance, we can assume it's 1.

Thus, ∆=r^2 - L^2

Where it is obvious that:
-if ∆ is > 0 the radius is larger than the distance of line to the circle's centre, so we have an intersection.
-If ∆ is 0, then the two are equal, and tangent.
-If ∆ is < 0, then there is no intersection since the line is further away than the circle's diameter.

Makes sense now?
 
How bad is your internet browser when you press a SINGLE link and it decides to give you that "Not Responding" crap? 'Cause my Chrome is doing it all of a sudden and I am not happy. :compbash2:

I swear, it updated itself without me knowing...
 
It is for an infinite line.

Dr is the length of the segment given, distance between two point that define the line.

The distance L between this line and (0,0), where the centre of the circle is, will be L=D/Dr ( http://en.wikipedia.org/wiki/Distance_from_a_point_to_a_line#Line_defined_by_two_points ).

Then D=L * Dr.
Which means ∆=r^2 * Dr^2 - L^2 * Dr^2.

So, the discriminant (∆, delta) is in fact square of length of given segment multiplied by the difference between the square of the distance from line to the circle and circle radius.

∆=Dr^2 * (r^2 - L^2).
Since segment length, Dr, does not affect the distance, we can assume it's 1.

Thus, ∆=r^2 - L^2

Where it is obvious that:
-if ∆ is > 0 the radius is larger than the distance of line to the circle's centre, so we have an intersection.
-If ∆ is 0, then the two are equal, and tangent.
-If ∆ is < 0, then there is no intersection since the line is further away than the circle's diameter.

Makes sense now?

Ahhh, wow, I am just not with it today :facepalm:

What is D, (x1y2- x2y1)?
 
Back
Top