Pinned Update #1
Sunday, December 23, 2012
Friday, August 10, 2012
Wide Characters
Here's how to output wide characters (i.e., wchar_t) to the console in Visual Studio 2010 using a Multi-Byte character set environment. Most likely, this option must be set manually since Microsoft suggest Unicode by default. This setting prevents certain functions from being changed to their <method>W versions but i guess that's a matter of taste. All it takes is a single call to _setmode() with the second parameter indicating the expected character type. In the case of UTF-16 (two bytes) this is _O_U16TEXT. After that, the character type can be switched back to ASCII using the _O_TEXT option.
_setmode(_fileno(stdout), _O_U16TEXT); std::wcout<<L"Hello World"<<L"\n"; _setmode(_fileno(stdout), _O_TEXT);
Of course, the console's font must be set to something that can handle all used characters (e.g., Lucida Sans Unicode). The complete Unicode table can be found ▷here.
Tuesday, August 7, 2012
Universal Joint
Concept model and example animation of a universal joint. Note the non-linear force transmission for greater angles in the middle of the video. The error can be nullified by coupling two joints with identical angles to the intermediate shaft (cf. second video).
Friday, July 6, 2012
Sunday, June 17, 2012
Spider Draft
Thursday, June 14, 2012
Basic Armor (2)
Collatz Conjecture
Thursday, June 7, 2012
Smoke Volumes
Within the framework of my Master Thesis, I developed a tool named
Tuesday, June 5, 2012
Basic Armor
Thursday, May 10, 2012
Ambiguities
Saturday, April 21, 2012
Plague Doctor
Thursday, April 19, 2012
Zone Trooper (5)
Zone Division
▶Protection |
▶Escort |
▶Transport |
▶Liquidation |
▶Pulse Detector Implants With increased understanding of the disease and the propagation of detector technology it became possible to assert the infection status of a subject at extremely high accuracy. Such detectors are permanently carried by Zone Troopers (e.g., in the brain) and determine whether the trooper may re-enter the ▷MCB or any non-quarantined facilities. |
▶Emergency Injection In the case of an acute infection, the protocol allows the use of highly concentrated ▷Co-60 within the first few seconds. Possible results of this method are death, failure and infection or the successful suppression of a primary infection. If the subject is still alive after a few minutes and no pulse traces can be found, it is safe to conclude that an infection had been avoided. Note that an acquired infection is non-reversible and the trooper is to be discharged instantly and left behind. |
▶Virostatic Infusion Precautions and heavy armor do not provide unlimited safety in certain areas of the zone. In fact, the members of the Zone Divison fall victim to contaminating incidents on a monthly basis. Since field-trained specialists are a scarce resource, the authorities agreed on certain strategies to increase the efficiency and survival rate of the Co-60 injections. One way to accomplish this, is a regular infusion of low-energy inhibitors (e.g., a diluted version of ▷Tc-99m). It can be observed that some veterans of the Division develope a high resistance to radiation and even immunity to low-dosed infections. Of course, only a few troopers reach that impressive level of adaption, which certainly adds to the creepy aura the Zone Division emits. |
▶Art Gives you a list of all Zone Division related art. |
Wednesday, April 18, 2012
MCB Satellite Photo
Tuesday, April 17, 2012
Tc-99m
Infection Inhibitor
The following inhibitors can be aquired.
Thursday, April 12, 2012
Friday, March 16, 2012
ABC - Flow
Thursday, March 15, 2012
Mechanical
Saturday, March 3, 2012
Monday, February 20, 2012
Saturday, February 18, 2012
Zombies
Multi-Label Search
thank you for making me do this.
Anyway, i found a way to extend the Blogspot-Built-In search engine for labels. As you may know the URL
Luckily, such a feature is available for feeds using the feed URL
▶XML Loader Write a JavaScript function that will call the feed URL after appending the labels you're looking for. |
▶XML Parser Write another JavaScript function that receives the output of the XML Loader and parses the document for the pieces of information you need. Commonly, that would be the title, the author, the content, or a link to the actual post. |
▶List Post Publish a post on your Blog containing both functions and make the XML Parser load the formatted result into an empty <div></div> block. You're going to need a post for every new combination, or include a text box for dynamic search. This blog contains a number of such Multi-Label search posts, each tagged with the label "Proxy". |