Bought a new ream of A2 heavyweight paper in the real world.
Went home and decided to draw it digitally instead.
adventures in tech, electronics, programming, cartography, geology, data, and augmented realities
From Philip K Dick's VALIS: "We appear to be memory coils (DNA carriers capable of experience) in a computer-like thinking system which, although we have correctly recorded and stored thousands of years of experiential information, and each of us possesses somewhat different deposits from all the other life forms, there is a malfunction - a failure - of memory retrieval."
<?xml version="1.0" encoding="utf-8"?> <TIMELINE> <YEAR NAME="2000"> <ARTICLE> <MONTH>January</MONTH> <NAME>Lorem Ipsum</NAME> <DESCRIPTION>Lorem Ipsum is simply dummy text.</DESCRIPTION> <IMAGE>image1.jpg</IMAGE> </ARTICLE> <ARTICLE> <MONTH>December</MONTH> <NAME>Ipsum Lorem</NAME> <DESCRIPTION>Lorem Ipsum is simply dummy text.</DESCRIPTION> <IMAGE>image2.jpg</IMAGE> </ARTICLE> </YEAR> <YEAR NAME="2003"> <ARTICLE> <MONTH>April</MONTH> <NAME>Ipsum Lorem Ipsum</NAME> <DESCRIPTION>Lorem Ipsum is simply dummy text.</DESCRIPTION> <IMAGE>image3.jpg</IMAGE> </ARTICLE> </YEAR> </TIMELINE>
myXML.*.*.length();
myXML.*.ARTICLE[articleNum].DESCRIPTION.toString();
var g:Number = 0; //myXML.*.ARTICLE[articleNum].parent().childIndex() is year index for that article while (g < myXML.*.ARTICLE[articleNum].parent().childIndex()) { //myXML.YEAR[g].*.length() is the number of articles in g year articleNumContainer += myXML.YEAR[g].*.length(); g += 1; } // one is added to articleNum cos it actually starts at zero articleNumberWithinYear = (articleNum + 1) - articleNumContainer;
while (t < max_T_Number) { // do this t = (t + 1); }Example of typical addFrameScript function as decompiled in SoThink:
public function MainTimeline() { addFrameScript(0, this.frame1); return; }// end function function frame1() { stage.scaleMode = StageScaleMode.SHOW_ALL; stage.align = StageAlign.TOP_LEFT; stage.displayState = StageDisplayState.FULL_SCREEN; }// end function }
Date Code G-Force X [g] G-Force Y [g] G-Force Z [g] 2012-01-11 13:07:28.154 -0.1322174 0.01535034 -1.061234 2012-01-11 13:07:28.171 -0.134201 0.0173645 -1.061249 2012-01-11 13:07:28.190 -0.1352234 0.01838684 -1.056427 2012-01-11 13:07:28.209 -0.1342316 0.01443481 -1.054459 2012-01-11 13:07:28.227 -0.1351929 0.01445007 -1.059326 2012-01-11 13:07:28.246 -0.134201 0.01637268 -1.059311 2012-01-11 13:07:28.260 -0.1352081 0.01739502 -1.060303 2012-01-11 13:07:28.284 -0.1322327 0.0202179 -1.063171 2012-01-11 13:07:28.295 -0.1312561 0.01629639 -1.057343 2012-01-11 13:07:28.314 -0.1282959 0.01522827 -1.060226 2012-01-11 13:07:28.332 -0.1302643 0.01429749 -1.05928 2012-01-11 13:07:28.349 -0.1361694 0.01548767 -1.05545 2012-01-11 13:07:28.372 -0.1371765 0.01940918 -1.059326 2012-01-11 13:07:28.383 -0.1361847 0.02035522 -1.059311 . . .
# Disable anonymous editing $wgGroupPermissions['*']['edit'] = false; # Disable editing by ALL users $wgGroupPermissions['user']['edit'] = false; # Enable editing by ONLY sysops $wgGroupPermissions['sysop']['edit'] = true; # Prevent new user registrations except by sysops $wgGroupPermissions['*']['createaccount'] = false;
From Spark Museum: "Prior to the introduction of the Multiple Tuner by the Marconi Wireless Company, receivers had only limited tuning ability which left them with no effective way of discriminating between the signals of multiple simultaneous transmitters. Marconi was well aware of this limitation which was brought painfully home to him in 1903 during a demonstration of his wireless apparatus by Dr. J. Ambrose Fleming. According to the story, Fleming was about to demonstrate the system when the Morse printer began chattering rapidly with the words: "There was a young man from Italy, who diddled the public so prettily..." The source of this embarrassment to Fleming and Marconi was a business rival who had set up his own transmitter as an attempt to discredit Marconi.
While the incident was certainly embarrassing, it did provide Marconi with an excruciatingly clear message: For wireless to be of commercial value, the ability to distinguish between multiple transmitters was a must."
// load XML file into Flash
var myNewXML:XML;
var myNewXMLLength:Number;
var myNewLoader:URLLoader = new URLLoader();
myNewLoader.load(new URLRequest("xml/singapore.xml"));
myNewLoader.addEventListener(Event.COMPLETE, processmyNewXML);
function processmyNewXML(e:Event):void{
myNewXML = new XML(e.target.data);
myNewXMLLength = myNewXML.*.length();
//trace(myNewXML); // traces the ENTIRE xml sheet
//trace(myNewXMLLength); // traces the number of items in xml sheet
//trace(myNewXML.row[0]); // traces the first row
//trace(myNewXML.row[1]); // traces the second row
//trace(myNewXML.row[0].name); // traces the first row's name field
}
// creating a new XMLList to sort and loop through specific category filters
var myNewXMLList:XMLList = myNewXML.row.(category == "Ind" && type == "Pte");
for (var i:int = 0; i < myNewXMLList.length(); i++)
{
var myNewXMLElement:XML = myNewXMLList[i];
//trace(myNewXMLElement) // traces xml list of only the filtered items
//trace(i + ": " + myNewXMLElement.name); // trace the number and name
}
// checking for a value
if ("myValue" in myNewXMLList) {
trace("myValue exists in my XMLList");
}
/*
Other useful operators to use to traverse XML:
.parent();
.childIndex();
.length();
.toString();
.firstChild();
.nextChild();
You can also use a combination in a chain to find specific fields
*/
We cast this message into the cosmos. It is likely to survive a billion years into our future, when our civilization is profoundly altered and the surface of the Earth may be vastly changed. Of the 200 billion stars in the Milky Way galaxy, some -- perhaps many -- may have inhabited planets and spacefaring civilizations. If one such civilization intercepts Voyager and can understand these recorded contents, here is our message:The Voyager's message was not sent out for anyone in particular, and there is no certainty that any intelligent life will ever encounter it or have the intelligence to decode it. So why did we still send out the Voyager?
This is a present from a small distant world, a token of our sounds, our science, our images, our music, our thoughts, and our feelings. We are attempting to survive our time so we may live into yours...