User talk:Daññy
From Guild Wars Wiki
| Hello there Daññy! Make sure to If you want to succeed, make sure to |
| —Moo Kitty |
Nice. oO -- Halogod35
22:03, 30 June 2009 (UTC)
- /wave User:Cedave if you're wondering. made this account to match my PvX one. Daññy 22:04, 30 June 2009 (UTC)
Contents |
[edit] hey look
a better signature. ··· Danny Pew Pew 18:24, 1 July 2009 (UTC)
- Nice, o: -- Halogod35
03:49, 4 July 2009 (UTC)
[edit] i love you
^ it's true. Karate Jesus 03:54, 4 July 2009 (UTC)
[edit] Moved
- Players can activate any stance while knocked down. Mechanically, it sounds like the attack should be going through, given that if a player activates, for example, Return, while another player is using Power Attack on them, even though they are no longer adjacent, the attack will connect. Realistically, however, Shadow Walk works as one would imagine a Shadow Step would. ··· Danny Pew Pew 17:50, 2 July 2009 (UTC)
Personal musings on the history of gw does not belong in articles. Backsword 13:45, 12 July 2009 (UTC)
- wot?
where're those from, not to mention,iirc, those were pertinent to bugs. generally, i figured having as much information as possible would be useful. Particularly in the case of Shadow Walk, where there's a clear inconsistency. ··· Danny Pew Pew 16:14, 13 July 2009 (UTC)
[edit] ceddy
msn more. phil is lonely.
- /ave proxy. ··· Danny Pew Pew 16:23, 10 August 2009 (UTC)
- also, i was oot this weekend, but now i am back. <3 ··· Danny Pew Pew 16:24, 10 August 2009 (UTC)
[edit] Spamming
Your doing it. Stop. — Jon
Lupen 17:58, 11 August 2009 (UTC)
- stop reverting it. misery approves of my initial copypaste. it is not for you to decide what is permitted on his page. ··· Danny Pew Pew 18:00, 11 August 2009 (UTC)
Hi. I've blocked you for those edits, as well as the chronicles edit - please don't pull this crap again, not to mention revert removals continuously. Thanks. --
Brains12 \ talk 18:08, 11 August 2009 (UTC)
[edit] Violation of GWW:NPA
You have been banned for 3 days due to your vulgar language aimed towards other users. Please refrain from such actions in the future. — Gares 18:57, 20 August 2009 (UTC)
- Can you link the offense of Mr Dannles? Moo Kitty 19:11, 1 September 2009 (UTC)
[edit] Dear Danny
would you mind if i c/p'd your bible onto here?
Many loves,
Dutchie. 82.75.192.76
- i think i already have it on here, don't i? mebbe not. if not, go ahead. <3 ··· Danny Pew Pew 19:22, 15 September 2009 (UTC)
[edit] Yes it did...
Make me smile. :D -
Linsey talk 23:26, 16 September 2009 (UTC)
- I'm glad. :> Sorry, though, about the (probably) unnecessary and inflammatory response I made to the trolls, but I can't help but bite the bait when it's laid out so cleanly. ··· Danny Pew Pew 19:34, 17 September 2009 (UTC)
[edit] Danny,
Why don't you ever answer me on msn? What have I done to fall out of your kind favor? QQ Moo!
- i don't ever get anything from you. ups. ··· Danny Pew Pew 19:59, 5 October 2009 (UTC)
- oic. i should re-add you, but i don't know your msn by heart. --The preceding unsigned comment was added by User:Moo Kitty (talk).
- Check his PvX page. It's on there like 90 times. Also, you still haven't farmed me an emerald blade (not that you play anymore). Karate
Jesus 20:03, 5 October 2009 (UTC)
- Uninstalled. :< I will get you that e-blade. When I decide -image is worth doing. --The preceding unsigned comment was added by User:Moo Kitty (talk).
- Check his PvX page. It's on there like 90 times. Also, you still haven't farmed me an emerald blade (not that you play anymore). Karate
- oic. i should re-add you, but i don't know your msn by heart. --The preceding unsigned comment was added by User:Moo Kitty (talk).
Btw, Danny, tomorrow is RR day!!! What rank are you now? I need to basically grind r1-3 in one day (8 hours essentially). Possible? Karate
Jesus 20:31, 8 October 2009 (UTC)
- 1-3 might be too hard. you might need to keep going a bit. hit me up on MSN later. also, i'm almost r6. i should have it by the end of the day. ··· Danny Pew Pew 21:15, 8 October 2009 (UTC)
[edit] Python
k, so
i need to call a python script from a Drupal server. The call needs to happen when a node is saved via a computed field cache.
that doesn't really mean anything to you unless you know drupal, so here's what you can help me with:
<? $pythonOut = `python C:\EntrezToOBO_vanilla.py $node_field_item['value']`; $display = (string) $pythonOut; ?>
$node_field_item['value'] holds a value that I'm passing. $display will be what is output to HTML.
why doesn't this work? the file path is irrelevant for the most part, but know that it is located within the web server and the reference does find the file. ··· Danny Pew Pew 21:13, 13 October 2009 (UTC)
[edit] PHP
Who wants to play find the bug because Danny cbf'd downloading a PHP compiler and ConTEXT doesn't have syntax checking?
<?php
#scan() receives a list to iterate through and a given starting id.
#recursively finds all parental nodes of a given node.
function scan($id, $list){
$moreTerms = array();
$agg = array();
$count = count($list) - 1;
for($i = 0; $i <= $count; $i++){
if(count($list[$i]) > 0){
$compare2 = (string) $list[$i][0];
if($compare2 == 'id: '.$id){
$count2 = count($list[$i]);
while($count2 > 0 and (string) $list[$i][0] != '[Term]'){ #This loop is used to find all parental terms
if(substr((string) $list[$i][0], 0, 4) == 'is_a'){ #identified by the substring "is_a".
$moreTerms[] = substr((string) $list[$i][0], 6, 10); #We increment $i inside the loop to search until
} #the string "[Term]" is found, indicatin a new
$i++; #gene ontology ID.
}
}
}
}
if(count($moreTerms) > 0){ #Recurse for more parent terms if there are any.
foreach($moreTerms as $item){
$agg[] = $item;
$agg = array_merge($agg, scan($item, $list));
}
}
return $agg;
}
#getGO() is built to take an argument (currently the argument is provided) and build a list
#containing all Gene Ontology terms for a that given argument if the ID is both recognized
#as an Entrez GeneID and found in a list containing a set of known GeneIDs and their respective
#GO terms.
function getGO(){
$arg = "11341";
$goPoint = fopen("./entrez/gene2go", "r"); #open reference files - may need to be C:\...?
$oboPoint = fopen("./entrez/gene_ontology.1_2.obo", "r");
$arg = ereg_replace('/[^0-9]*/', '' , (string) $arg); #input is validated as a purely numeric string.
$flag = -1; #initializes all variables
$compare = "";
$index = -1;
$list = array();
$lastGO = "";
$list2 = array();
$termsList = array();
$returnList = array();
$printedList = array();
$returnString = "";
while(($data2 = fgetcsv($goPoint, 250, chr(9))) !== FALSE){ #iterate through files to build working lists
$list2[] = $data2; #of CSV values.
}
while(($data = fgetcsv($oboPoint, 250, chr(10)) !== FALSE){
$list[] = $data;
}
foreach($list as $object){ #Build a list of GO terms from the given Entrez ID
if(strlen((string) $object[1]) > 1){
$compare = (string) $object[1];
if($compare == $arg and $lastGO != str(object[2]){
$returnString = $returnString.'<a href="http://amigo.geneonthology.org/cgi-bin/amigo/term-details.cgi?term='.(string) $object[2].'" title="Gene Onthology link">'.(string) $object[1].'</a> '.str_replace('_', ' ', (string) $object[5]).'\n';
$lastGO = (string) $object[2]; #HTML code & use lastGO to void repeat entries
$flag = 1; #if the Entrez ID is valid, set our flag to 1
$termsList[] = (string) $object[2];
}
}
}
foreach($termsList as $term){ #use scan to build recursed parental nodes list
$returnList[] = scan($term, $list2);
}
if($flag == 1){
$returnString = $returnString.'<span style="display:none;">'; #we use display:none; to allow terms to be searched
} #but not viewed - this prevents huge walls of terms
$count = count($list2) - 1;
foreach($returnList as $item){ #iterate through $returnList to print out parental
for($i = 0; $i <= $count; $i++){ #terms in an HTML-invisble block
if(count($list2[$i]) > 0 and 'id: '.$item == (string) $list2[i][0] and array_search($item, $printedList) === FALSE){
$name = substr((string) $list2[i+1][0], 6);
$returnString = $returnString.$item.' '.str_replace('_', ' ', $name).'\n';
if(array_search($item, $printedList) === FALSE){ #if the term hasn't already been printed, make sure
$printedList[] = $item; #it won't be printed again - rather clunky and does
} #twice the necessary work, but it works
break;
}
}
}
if($flag == 1){
$returnString = $returnString.'</span>';
}
return $returnString; #return our massive string of GO terms
}
?>
I'm pretty sure I got all the semicolons and braces, but I can't for the life of me figure out what is wrong.
··· Danny Pew Pew 22:59, 14 October 2009 (UTC)
- I can see the mistake, you didn't carry the 1! Frosty 23:00, 14 October 2009 (UTC)
for($i = 0; $i <= $count; $i++){ // loop ran by $i...
if(count($list[$i]) > 0){
$compare2 = (string) $list[$i][0];
if($compare2 == 'id: '.$id){
$count2 = count($list[$i]);
while($count2 > 0 and (string) $list[$i][0] != '[Term]'){
if(substr((string) $list[$i][0], 0, 4) == 'is_a'){
$moreTerms[] = substr((string) $list[$i][0], 6, 10);
}
$i++; // increment $i inside loop.
}
}
}
You increment $i in two places. Not sure if that was intentional. Kinda hard to debug code when you don't comment the lines, nor tell us the what your function is SUPPOSED to do, nor the actual error. Also of note, I don't technically know PHP, but it looks enough like perl to me. StatMan 05:32, 15 October 2009 (UTC)
- If its a syntax error, I can see some cases where you use '!=', and others '!==', and one case of '==='. Is that a special thing in PHP? StatMan 05:36, 15 October 2009 (UTC)
- As a note, it only happens when you check boolean logic, so it must be special.
- Yeah.. I'm terrble about commenting. Basically, scan is recursively checking a file for the parental nodes for a set of given nodes and returning an array of those parental nodes. getGO is handling all other procedures, primarily building the list of initial nodes from a given Entrez GeneID by comparing that ID to a file that contains a selection of IDs and their corresponding Gene Ontology terms. I'll try to comment more thoroughly in a bit if anyone wants to give it a shot.
- The double-incrementation of $i is to find all parental terms, prefixed by "is_a", of a found term until another term is declared by '[Term]'. I couldn't think of a better way of a better way to do it given the non-regular spacing of the values.
- In PHP, !== and === are strict comparison operators, meaning the values must be equal AND must be of the same type, whereas == and != only compare value. The best example is that if I return an (int) 0 and compare it to a (boolean) FALSE using non-strict operators, the result is true. (FALSE is just boolean-type 0 and TRUE is just boolean-type 1) If I use strict comparison, it's false.
- ··· Danny Pew Pew 19:31, 15 October 2009 (UTC)
- As a note, it only happens when you check boolean logic, so it must be special.
[edit] PHP, pt. 2
Okay, so I figured out how to use the Command Line to fix the syntax, and now I'm overflowing my memory. PHP.ini to the rescue? ··· Danny Pew Pew 20:45, 15 October 2009 (UTC)
- Next up - try using the Python script that I know won't die by figuring out how to apply the proper permissions to let shell_exec() run. ··· Danny Pew Pew 20:46, 15 October 2009 (UTC)
[edit] moo
Since I got banned from pvx I'll troll here a couple days! File:Thundasig.png Thunda 05:33, 16 October 2009 (UTC)
[edit] You smell
Fix your MSN duuuuuuuuuuuuuuuuuude. Mr J 21:41, 23 October 2009 (UTC)
- >: I'll have to try to figure it out at home. Meebo sucks. ··· Danny Pew Pew 21:43, 23 October 2009 (UTC)
- >: Mr J 22:04, 23 October 2009 (UTC)
[edit] Costume
The 2008 has been archived, check the subpage below 2007. :-) --
riyen ♥ 08:48, 24 October 2009 (UTC)
[edit] Hai
Editing and saving pages works for me. -- Armond Warblade
{{Bacon}} 18:29, 26 October 2009 (UTC)
- does for me now, too. either chrome was being bad or wiki was qqing. either way, lolchrome. ··· Danny Pew Pew 19:01, 26 October 2009 (UTC)
[edit] b-b-b-b-BAN
I heard you got banned. NuVII
19:25, 1 November 2009 (UTC)
[edit] Ok
And you are important you mean? -- Cyan
21:50, 12 November 2009 (UTC)
- Generally, it is a good idea to reply on the same page as whatever you are replying to because it prevents things like this where I have no idea who you are, what you mean, or why are here. ;o ··· Danny Pew Pew 22:12, 12 November 2009 (UTC)
- Thats a good thing, I like it when nobody mention my point ^^ -- Cyan
22:19, 12 November 2009 (UTC)
- Do you try to not make sense, or is it just a congenital condition? ··· Danny Pew Pew 22:27, 12 November 2009 (UTC)
- Don't know, what do you think? -- Cyan
22:31, 12 November 2009 (UTC)
- Seeing as that was a cohesive thought, I'm gonna assume you're actually trying to not make sense. The problem with that is it classifies you as a bad troll, and bad trolls, in general, have some form of autism or mild-but-apparent social disorder. Transitively, that would imply that you do have a congenital defect, however, which contradicts my initial statement. If I'm wrong, please correct me. Also, if you continue to post without making sense, I'll be forced to immediately remove your comments as violations of NPA, since I consider any senseless or poorly worded comments to be a personal attack on me. :< ··· Danny Pew Pew 22:37, 12 November 2009 (UTC)
- Thats a really fast opinion if I may say so. First, do not ever connect people with autism if you dont know them, that is just a sick thing to do. Further, dont judge people on their English if it isnt their common language. And next, its not difficult to understand that this started because you reverted my edit because a personal opinion. Why is this easy to understand? We never said something before against each other and I never messed with your edits. And to judge this topic as a personal attack is just weird, because I never placed an insult... Right? -- Cyan
22:48, 12 November 2009 (UTC)
- I consider any post lacking in common sense to be an insult. Also, more than 1 in 20 people have autism. The fact that you're posting on this wiki with a registered account puts you in a smaller minority than that when compared to the general population. A much, much smaller minority. Having some form of autism is, in most cases, a cause for shyness and social awkwardness, which, not surprisingly, leads many people to try to interact socially on the internet. I wouldn't be surprised if it turned out 1 in 10 or even 1 in 5 people who post here regularly have some form. Hell, I wouldn't even be surprised if it turned out I had some form.
- Try to pick your battles a bit more carefully.
- Also, if you had responded to my initial comment with clarity and/or some explanation of your initial comment, I probably wouldn't be too particularly frustrated with you. Hell, if you'd posted in your native language I would've had an easier time deciphering the meaning. ··· Danny Pew Pew 22:59, 12 November 2009 (UTC)
- I have no problems in my social life, thank you, all is well there. I just dont like it when people connect someone with a handicap, because I know how difficult it can be to have on (I had on). Mostly, the people who say that have no idea what it actually is, I see that you are not like them.
- Ah well, why you reverted my edit?
- Oh, and I mentioned you have no problems with Dutch? Well, too bad for you, because Im not switching back, how more I try to communicate in English, how better it is.. -- Cyan
23:12, 12 November 2009 (UTC)
- I reverted your edit because "my house" is not a globally recognized place. If you'd like to list your town of residence, I wouldn't see an issue with that, as I'm certain it would take far less than 7 months to get anywhere in the Netherlands.
- Also, I don't fluently speak Dutch, no, but I've studied enough language to know how to interpret machine translation most of the time. The problem with your writing was your attempt at using colloquial English, which is beyond the grasp of most native English-speakers, particularly when it comes to the internet where grammar plays an important role.
- I have no problem conversing with you in English, and I'll be happy to point out grammatical and spelling errors, such as the phrase, "...how more I try [...], how better it is." This should be phrased as "...the more I try [...], the better it is." Though, from a grammatical standpoint, even that isn't perfect, but it's far more functional. ··· Danny Pew Pew 23:48, 12 November 2009 (UTC)
- Ok, dan doen we dit dus even speciaal voor jou. Ik had het over mijn huis, niet over mijn woonplaats, omdat A. dat al genoeg zegt, aangezien je niet weet waar het is kan het overal zijn, wat in meerdere gevallen kan betekenen dat afstand en reistijd oneindig zijn, B. omdat we natuurlijk wel aan privacy beleid doen, en C. ik in dit geval het zeggen van 'huis' beter vond passen omdat de mensen er nu een eigen interpretatie aan kunnen geven, wat betekend dat tijd en afstand voor iedereen verschillend is (natuurlijk worden ze wel een beetje gestuurd omdat ik op mijn pagina heb staan dat ik uit Nederland kom).
- Verder zou je misschien het woord 'colloquial' even aan mij duidelijk willen maken, ik denk dat mn Engelse kennis hier wat gaten vertoond. Het zou namelijk goed kunnen dat ik dan wel helemaal begrijp wat je opgeschreven hebt en dat ik er dan ook wat mee kan doen, wat er waarschijnlijk voor zorgt dat mijn Engelse vaarigheden er op vooruit gaan.
- Ik ben blij dat je me gewezen hebt op enkele spel fouten, dit zijn zeker dingen waar ik voortaan op ga letten. Als je verder nog taal fouten tegen komt in de stukken die ik heb geschreven mag je ze gerust aan me laten weten, daar ben ik je dan alleen maar dankbaar voor!
- Ik hoop dat wat ik allemaal neer heb gezet te volgen is. Als iets niet duidelijk is zou ik proberen het zo goed mogelijk in het Engels te vertalen. Ik ben altijd onder de indruk hoevel buitenlanders van Nederlands begrijpen, aangezien we een nogal lastige spelling en grammatica hebben. -- Cyan
00:07, 13 November 2009 (UTC)
- That makes some sense. I still stand by my reasoning, but it makes sense.
- "Colloquial" means "slang", more or less. Most phrasings in English or colloquial usages. Even the phrase "more or less" is colloquial to an extent. The fact that you understood everything else that I wrote is quite impressive given how ridiculous the English language is in practice when it is not native. I, myself, don't know Dutch, but I am learning Swedish which is somewhat similar. I'm also fluent in Spanish, but Spanish is quite an easy language to learn.
- I'm more than happy to point out mistakes like that. I probably won't bother much with punctuation, since that's an entirely different point of study with the English language, but I'll gladly point out misused words and colloquialisms.
- Also, no matter how difficult Dutch is, I think the Fins have you beat. At least a lot of Dutch words have Anglo sounds, making it possible to pick up on the meaning of a sentence even without a translation sometimes. ··· Danny Pew Pew 00:26, 13 November 2009 (UTC)
- Dank je! Dat is nu wel duidelijk geworden. Het voordeel van Nederland is inderdaad dat veel woorden lijken op Engelse, Duitse, Scandinavische of zelfs Franse woorden. Toch blijkt dat het grammaticaal leren spreken en schrijven een stuk lastiger te zijn dan veel mensen verwachten. Uit onderzoek blijkt zelfs dat veel Nederlanders zelf de taal niet goed grammaticaal kunnen spreken en/of schrijven. Gelukkig heb ik daar zelf nooit veel last van gehad, maar misschien daardoor had en heb ik veel meer moeite met Engels. Het komt vaak voor dat ik in de problemen kom met zinsopbouw, omdat dat heel anders in elkaar zit dan bij Nederlands (vind ik persoonlijk).
- Fins is inderdaad een ongelovelijk moeilijke taal om te leren. Ik heb me er zelf maar niet aan gewaagd, maar ik heb van wat vrienden gehoord dat het echt heel erg lastig is. Ik heb trouwens nooit geweten dat Zweeds zo op Nederlands lijkt, naar mijn eigen inzicht zit er toch een behoorlijk verschil in. Maar misschien komt dat meer omdat ik er van uit ga dat Zweeds erg op Deens lijkt en daar zit gewoon niet veel logica in.
- Nederlands heeft trouwens nog heel wat meer lastige kanten. We hebben enorm veel dialecten waar je echt niet wijs van word. Zeten we een Noord-Nederlander die gronings dialect spreekt naast een Zuid-Nederlander die limburgs spreekt (we zetten er voor de grap ook nog een Fries bij uit regio Stellingwerf) da is het zeker dat ze elkaar niet (volledig) kunnen verstaan.
- Dan als laatst: zou ik mogen weten uit welk land je komt? Ben nu toch wel benieuwd. (Of valt dat ook onder het privacy beleid? ^^) -- Cyan
00:41, 13 November 2009 (UTC)
- Thats a really fast opinion if I may say so. First, do not ever connect people with autism if you dont know them, that is just a sick thing to do. Further, dont judge people on their English if it isnt their common language. And next, its not difficult to understand that this started because you reverted my edit because a personal opinion. Why is this easy to understand? We never said something before against each other and I never messed with your edits. And to judge this topic as a personal attack is just weird, because I never placed an insult... Right? -- Cyan
- Seeing as that was a cohesive thought, I'm gonna assume you're actually trying to not make sense. The problem with that is it classifies you as a bad troll, and bad trolls, in general, have some form of autism or mild-but-apparent social disorder. Transitively, that would imply that you do have a congenital defect, however, which contradicts my initial statement. If I'm wrong, please correct me. Also, if you continue to post without making sense, I'll be forced to immediately remove your comments as violations of NPA, since I consider any senseless or poorly worded comments to be a personal attack on me. :< ··· Danny Pew Pew 22:37, 12 November 2009 (UTC)
- Don't know, what do you think? -- Cyan
- Do you try to not make sense, or is it just a congenital condition? ··· Danny Pew Pew 22:27, 12 November 2009 (UTC)
- Thats a good thing, I like it when nobody mention my point ^^ -- Cyan
[edit] Dear Danny
Come Have fun.
[edit] CONGRATULATIONS!!!
You win the best Misery Comment award! Your prize: A template you can show off with! Have fun with your Misery fetish. Titani
Ertan 20:01, 16 November 2009 (UTC)
- This excites me in places that I feel would be unwise to describe in such a public setting! ··· Danny Pew Pew 20:04, 16 November 2009 (UTC)
[edit] Drupal
if anyone knows any of the Drupal API, I might need your help in the near future, and there might even be financial compensation. post here if you're interested and have knowledge about writing custom modules. ··· Danny Pew Pew 21:37, 18 November 2009 (UTC)


