User bullettime - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:17:38Z http://stackoverflow.com/feeds/user/27090 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/194574/inserting-data-in-xml-file-with-php-dom 0 Inserting data in XML file with PHP DOM bullettime 2008-10-11T20:24:40Z 2009-10-18T17:05:12Z <p>I was trying to insert new data into an existing XML file, but it's not working. Here's my xml file:</p> <pre><code>&lt;list&gt; &lt;activity&gt;swimming&lt;/activity&gt; &lt;activity&gt;running&lt;/activity&gt; &lt;list&gt; </code></pre> <p>Now, my idea was making two files: an index page, where it displays what's on the file and provides a field for inserting new elements, and a php page which will insert the data into the XML file. Here's the code for index.php:</p> <pre><code>&lt;html&gt; &lt;head&gt;&lt;title&gt;test&lt;/title&gt;&lt;/head&gt; &lt;/head&gt; &lt;?php $xmldoc = new DOMDocument(); $xmldoc-&gt;load('sample.xml', LIBXML_NOBLANKS); $activities = = $xmldoc-&gt;firstChild-&gt;firstChild; if($activities!=null){ while(activities!=null){ echo $activities-&gt;textContent.'&lt;br/&gt;'; activities = activities-&gt;nextSibling. } } ?&gt; &lt;form name='input' action='insert.php' method='post'&gt; insert activity: &lt;input type='text' name='activity'/&gt; &lt;input type='submit' value='send'/&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html </code></pre> <p>and here's the code for insert.php:</p> <pre><code>&lt;?php header('Location:index.php'); $xmldoc = new DOMDocument(); $xmldoc-&gt;load('sample.xml'); $newAct = $_POST['activity']; $root = $xmldoc-&gt;firstChild; $newElement = $xmldoc-&gt;createElement('activity'); $root-&gt;appendChild($newElement); $newText = $xmldoc-&gt;createTextNode($newAct); $newElement-&gt;appendChild($newText); $xmldoc-&gt;save('sample.xml'); ?&gt; </code></pre> <p>The user is to access index.php, where he would see a list of the current activities present in the XML file, and a text field below where he can insert new activities. Upon clicking the send button, the page would call insert.php, which contains a code that opens the XML file in a DOM tree, inserts a new node under the root node and calls back the index.php page, where the user should be able to see the list of activities, his new activity there under the others. It is not working. When i click on the button to submit a new entry, the pages refreshes and apparently nothing happens, the XML is the same as before. What did i do wrong? Also, i'd like to know if there's a better way of doing it.</p> http://stackoverflow.com/questions/459643/using-a-long-as-arraylist-index-in-java 2 Using a long as ArrayList index in java bullettime 2009-01-19T23:40:26Z 2009-07-14T22:18:33Z <p>I am writing this java program to find all the prime numbers up to num using the Sieve of Eratosthenes, but when I try to compile, it says I can't use a long var as an array index, and it expects an int var in its place. But I'll be working with large numbers, so I can't use int. What can I do?</p> <pre><code>import java.util.*; import java.lang.*; public class t3{ public static void main(String[] args){ long num = 100; //declaring list and filling it with numbers ArrayList&lt;Long&gt; numlist = new ArrayList&lt;Long&gt;(); for(long x=2 ; x&lt;num ; x++){ numlist.add(new Long(x)); } //sieve or eratosthenes for(long x=0 ; x&lt;Math.sqrt(num) ; x++){ for(long y=x+1 ; y&lt;numlist.size() ; y++){ if(numlist[y]%numlist[x] == 0){ numlist.remove(y); } } } //print list for(Object item : numlist){ System.out.println((Long)item); } } } </code></pre> http://stackoverflow.com/questions/753640/inheritance-and-overriding-init-in-python 8 Inheritance and Overriding __init__ in python bullettime 2009-04-15T20:45:46Z 2009-05-03T15:56:59Z <p>I was reading 'Dive Into Python' and in the chapter on classes it gives this example:</p> <pre><code>class FileInfo(UserDict): "store file metadata" def __init__(self, filename=None): UserDict.__init__(self) self["name"] = filename </code></pre> <p>The author then says that if you want to override the __init__ method, you must explicitly call the parent __init__ with the correct parameters. What if that FileInfo class had more than one ancestor class? Do I have to explicitly call all of the ancestor classes' __init__ methods? Also, do I have to do this to any other method I want to override?</p> http://stackoverflow.com/questions/766141/inverting-a-string-in-python 4 Inverting a string in Python bullettime 2009-04-19T21:35:54Z 2009-04-20T13:43:10Z <p>I was looking for a way to print a string backwards, and after a quick search on google, I found this method:</p> <p>Suppose 'a' is a string variable. This will return the 'a' string backwards:</p> <pre><code>a[::-1] </code></pre> <p>Can anyone explain how that works?</p> http://stackoverflow.com/questions/650923/game-loop-that-wont-stop-waiting-for-user-input 3 Game loop that won't stop waiting for user input bullettime 2009-03-16T15:33:49Z 2009-03-16T16:03:04Z <p>I've started fiddling with C to improve my programming skills, and decided to try and implement a Tetris game. Nothing too fancy, it'll run on the console. </p> <p>I never implemented a game that keeps running despite user input, and didn't figure out I'd have to deal with this problem until I started thinking about the game algorithm. </p> <p>Googling for a solution I came up with a _kbhit() function, but I'm programming on a Linux box and that function is only available on Windows. How can I do it?</p> http://stackoverflow.com/questions/230592/xpath-query-with-php 2 XPath query with PHP bullettime 2008-10-23T17:19:05Z 2009-01-11T12:33:32Z <p>Here's the XML code i'm working with:</p> <pre><code>&lt;inventory&gt; &lt;drink&gt; &lt;lemonade supplier="mother" id="1"&gt; &lt;price&gt;$2.50&lt;/price&gt; &lt;amount&gt;20&lt;/amount&gt; &lt;/lemonade&gt; &lt;lemonade supplier="mike" id="4"&gt; &lt;price&gt;$3.00&lt;/price&gt; &lt;amount&gt;20&lt;/amount&gt; &lt;/lemonade&gt; &lt;pop supplier="store" id="2"&gt; &lt;price&gt;$1.50&lt;/price&gt; &lt;amount&gt;10&lt;/amount&gt; &lt;/pop&gt; &lt;/drink&gt; &lt;/inventory&gt; </code></pre> <p>Then i wrote a simple code to practice working with XPath:</p> <pre><code>&lt;?php $xmldoc = new DOMDocument(); $xmldoc-&gt;load('sample.xml'); $xpathvar = new Domxpath($xmldoc); $queryResult = $xpathvar-&gt;query('//lemonade/price'); foreach($queryResult as $result){ echo $result-&gt;textContent; } ?&gt; </code></pre> <p>That code is working well, outputting all the lemonade price values as expected. Now when i change the query string to select only the elements with an attribute set to a certain value, like </p> <blockquote> <p>//lemonade[supplier="mother"]/price</p> </blockquote> <p>or </p> <blockquote> <p>//lemonade[id="1"]/price</p> </blockquote> <p>it won't work, no output at all. What am i doing wrong?</p> http://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php 2 Converting pdf files to txt files with php bullettime 2008-11-27T18:28:49Z 2008-11-27T21:10:02Z <p>There's this program, pdftotext, that can convert a pdf file to a text file. To use it directly on the linux console:</p> <pre><code>pdftotext file.pdf </code></pre> <p>and it will generate a file.txt on the same directory as the pdf file. I was looking for a way to do it from inside a php program, and after some googling i ended with two commands that should work for me: <em>system()</em> and <em>exec()</em>. So i made a php file with this program:</p> <pre><code>&lt;?php system('pdftotext file.pdf'); ?&gt; </code></pre> <p>But when i run it code, it doesn't work. No txt file is created. So i tried to create a test file with another command:</p> <pre><code>&lt;?php system('touch test.txt'); ?&gt; </code></pre> <p>This worked fine. I've also used exec() and the results were the same. Why doesn't it work?</p> <p><strong>EDIT:</strong> following RoBorg advice, i added the 2>&amp;1 argument to the command, so:</p> <pre><code>&lt;?php system('pdftotext file.pdf 2&gt;&amp;1'); ?&gt; </code></pre> <p>it printed a error message:</p> <blockquote> <p>pdftotext: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: No such file or directory</p> </blockquote> <p>seems like something is missing on the server.</p> http://stackoverflow.com/questions/321478/whats-the-difference-between-these-two-methods-of-linking-a-html-page-to-a-css-f 14 What's the difference between these two methods of linking a html page to a css file? bullettime 2008-11-26T17:19:27Z 2008-11-26T22:39:41Z <p>I've been reading through a few tutorials about css, and I saw two different ways to state which css file should be used to style the page:</p> <pre><code>&lt;style type="text/css"&gt;@import url("style.css");&lt;/style&gt; </code></pre> <p>and</p> <pre><code>&lt;link rel="stylesheet" type="text/css" href="style.css" /&gt; </code></pre> <p>What's the difference between them? Which one should I use?</p> http://stackoverflow.com/questions/267026/simple-c-code-not-working 1 Simple C++ code not working bullettime 2008-11-05T22:48:03Z 2008-11-05T23:11:32Z <p>This very simple code gives me tons of errors:</p> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; int main() { std::string test = " "; std::cout &lt;&lt; test; } </code></pre> <p>I tried to compile it on linux by typing <strong>gcc -o simpletest simpletest.cpp</strong> on the console. I can't see why it isn't working. What is happening?</p> http://stackoverflow.com/questions/209721/xml-structure-for-a-personal-organizer 2 XML structure for a personal organizer bullettime 2008-10-16T18:31:28Z 2008-10-16T19:15:55Z <p>I'm doing a personal organizer for learning purposes, and i've never worked with XML so i'm not sure if my solution is the best. Here's the basic structure for the XML file i came with:</p> <pre><code>&lt;calendar&gt; &lt;year value="2008"&gt; &lt;month value="october"&gt; &lt;day value="16"&gt; &lt;activity name="mike's birthday" time="21:00" address="mike's apartment" urgency="10"&gt; activity description. &lt;/activity&gt; &lt;/day&gt; &lt;/month&gt; &lt;/year&gt; &lt;/calendar&gt; </code></pre> <p>The urgency attribute should be on a scale of 1 to 10. <br/> I did a quick search on google and couldn't find a good example. Maybe that's not the best solution, and i'd like to know if its adequate. I'm doing the application in PHP if that has any relevance.</p> http://stackoverflow.com/questions/195764/problems-with-deleting-xml-elements-using-php-dom 1 Problems with deleting XML elements using PHP DOM bullettime 2008-10-12T17:42:13Z 2008-10-15T01:23:14Z <p>Here's the XML file i'm working on:</p> <pre><code>&lt;list&gt; &lt;activity&gt;swimming&lt;/activity&gt; &lt;activity&gt;running&lt;/activity&gt; &lt;activity&gt;soccer&lt;/activity&gt; &lt;/list&gt; </code></pre> <p>The index.php, page that shows the list of activities with checkboxes, a button to delete the checked activities, and a field to add new activities:</p> <pre><code>&lt;html&gt; &lt;head&gt;&lt;/head&gt; &lt;body&gt; &lt;?php $xmldoc = new DOMDocument(); $xmldoc-&gt;load('sample.xml', LIBXML_NOBLANKS); $count = 0; $activities = $xmldoc-&gt;firstChild-&gt;firstChild; //prints the list of activities, with checkboxes on the left for each item //the $count variable is the id to each entry if($activities!=null){ echo '&lt;form name=\'erase\' action=\'delete.php\' method=\'post\'&gt;' . "\n"; while($activities!=null){ $count++; echo " &lt;input type=\"checkbox\" name=\"activity[]\" value=\"$count\"/&gt;"; echo ' '.$activities-&gt;textContent.'&lt;br/&gt;'."\n"; $activities = $activities-&gt;nextSibling; } echo ' &lt;input type=\'submit\' value=\'erase selected\'&gt;'; echo '&lt;/form&gt;'; } ?&gt; //section used for inserting new entries. this feature is working as expected. &lt;form name='input' action='insert.php' method='post'&gt; insert activity: &lt;input type='text name='activity'/&gt; &lt;input type='submit' value='send'/&gt; &lt;br/&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>the delete.php, which is not working as expected:</p> <pre><code>&lt;?php $xmldoc = new DOMDocument(); $xmldoc-&gt;load('sample.xml', LIBXML_NOBLANKS); $atvID = $_POST['activity']; foreach($atvID as $id){ $delnode = $xmldoc-&gt;getElementsByTagName('activity'); $xmldoc-&gt;firstChild-&gt;removeChild($delnode-&gt;item($id)); } $xmldoc-&gt;save('sample.xml'); ?&gt; </code></pre> <p>I've tested the deletion routine without the loop, using an hard-coded arbitrary id, and it worked. I also tested the $atvID array, and it printed the selected id numbers correctly. When it is inside the loop, here's the error it outputs:</p> <blockquote> <p>Catchable fatal error: Argument 1 passed to DOMNode::removeChild() must be an instance of DOMNode, null given in /directorypath/delete.php on line 9</p> </blockquote> <p>What is wrong with my code?</p> http://stackoverflow.com/questions/200041/what-is-a-good-blog-hosting-service-for-programmers 5 What is a good blog hosting service for programmers? bullettime 2008-10-14T04:50:21Z 2008-10-14T07:26:37Z <p>I took a look on Wordpress and Blogger, and both have terrible support to source code posting. The best one on that aspect is Wordpress, which have a 'code' tag that apparently only changes the font, eliminating any indentations in the code. I was wondering if there is another blog hosting service with better support to code posting.</p> http://stackoverflow.com/questions/766141/inverting-a-string-in-python/766291#766291 Comment by bullettime on Inverting a string in Python bullettime 2009-04-19T23:52:04Z 2009-04-19T23:52:04Z what's that 'end = &quot;&quot;' for? http://stackoverflow.com/questions/753640/inheritance-and-overriding-init-in-python Comment by bullettime on Inheritance and Overriding __init__ in python bullettime 2009-04-15T21:05:38Z 2009-04-15T21:05:38Z yes, thanks for fixing it http://stackoverflow.com/questions/753640/inheritance-and-overriding-init-in-python/753657#753657 Comment by bullettime on Inheritance and Overriding __init__ in python bullettime 2009-04-15T20:54:41Z 2009-04-15T20:54:41Z should i look for a better book/tutorial? http://stackoverflow.com/questions/650923/game-loop-that-wont-stop-waiting-for-user-input/650950#650950 Comment by bullettime on Game loop that won't stop waiting for user input bullettime 2009-03-16T16:13:30Z 2009-03-16T16:13:30Z @unwind sorry, SDL sounded easier to deal with than ncurses, didn't knew it doesn't support console-mode applications. http://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php/324444#324444 Comment by bullettime on Converting pdf files to txt files with php bullettime 2008-11-27T21:13:01Z 2008-11-27T21:13:01Z Seems like that library is mainly for outputting pdf. What i need is the other way around http://stackoverflow.com/questions/324436/converting-pdf-files-to-txt-files-with-php/324472#324472 Comment by bullettime on Converting pdf files to txt files with php bullettime 2008-11-27T20:59:40Z 2008-11-27T20:59:40Z it printed a error message &quot;pdftotext: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: No such file or directory &quot; since i dont have root access to the server, i guess there's nothing i can do. http://stackoverflow.com/questions/321478/whats-the-difference-between-these-two-methods-of-linking-a-html-page-to-a-css-f/321512#321512 Comment by bullettime on What's the difference between these two methods of linking a html page to a css file? bullettime 2008-11-26T18:07:12Z 2008-11-26T18:07:12Z from what i've seen so far, seems like &lt;link&gt; is the preferred method. http://stackoverflow.com/questions/321478/whats-the-difference-between-these-two-methods-of-linking-a-html-page-to-a-css-f/321512#321512 Comment by bullettime on What's the difference between these two methods of linking a html page to a css file? bullettime 2008-11-26T17:47:56Z 2008-11-26T17:47:56Z interesting link indeed http://stackoverflow.com/questions/321478/whats-the-difference-between-these-two-methods-of-linking-a-html-page-to-a-css-f/321511#321511 Comment by bullettime on What's the difference between these two methods of linking a html page to a css file? bullettime 2008-11-26T17:37:50Z 2008-11-26T17:37:50Z interesting article, thanks! http://stackoverflow.com/questions/321478/whats-the-difference-between-these-two-methods-of-linking-a-html-page-to-a-css-f/321495#321495 Comment by bullettime on What's the difference between these two methods of linking a html page to a css file? bullettime 2008-11-26T17:33:03Z 2008-11-26T17:33:03Z so, it means i should use both? http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/91068#91068 Comment by bullettime on What is your solution to the FizzBuzz problem? bullettime 2008-11-16T00:41:59Z 2008-11-16T00:41:59Z prime example of obfuscated code http://stackoverflow.com/questions/194574/inserting-data-in-xml-file-with-php-dom/256662#256662 Comment by bullettime on Inserting data in XML file with PHP DOM bullettime 2008-11-06T00:01:40Z 2008-11-06T00:01:40Z i just fixed the typo. took me long enough! thanks http://stackoverflow.com/questions/267026/simple-c-code-not-working/267034#267034 Comment by bullettime on Simple C++ code not working bullettime 2008-11-05T22:57:00Z 2008-11-05T22:57:00Z that's right, it worked, thanks! http://stackoverflow.com/questions/267026/simple-c-code-not-working/267032#267032 Comment by bullettime on Simple C++ code not working bullettime 2008-11-05T22:55:15Z 2008-11-05T22:55:15Z that was it. such a silly mistake! thanks http://stackoverflow.com/questions/267026/simple-c-code-not-working/267031#267031 Comment by bullettime on Simple C++ code not working bullettime 2008-11-05T22:54:36Z 2008-11-05T22:54:36Z the problem was that i was using the wrong compiler... silly me although i can see that the missing return statement, even if it didn't throw any warnings or errors, must be bad practice. Thanks