User Masi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T20:08:50Z http://stackoverflow.com/feeds/user/54964 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1934520/running-awk-in-vims-search 0 Running AWK in Vim's search Masi 2009-12-19T23:59:15Z 2009-12-20T15:46:53Z <p><strong>How can you run AWK in Vim's selection of the search?</strong></p> <p>My pseudo-code</p> <pre><code>%s/!awk '{ print $2 }'//d </code></pre> <p>I am trying to delete the given column in the file.</p> http://stackoverflow.com/questions/1911507/django-bug-with-a-tag 0 Django bug with a tag Masi 2009-12-16T00:34:15Z 2009-12-16T01:02:14Z <p>My code</p> <pre><code>{% if GET['search'] % } {% block count codes|length as counter %} </code></pre> <p><strong>Is the following a valid if -clause as a Django tag?</strong></p> <pre><code>{% if GET['search'] % } </code></pre> <p>The following code gives me an error that <em>block</em> takes only one argument. <strong>What is wrong in the code?</strong></p> <pre><code>{% block count codes|length as counter %} </code></pre> http://stackoverflow.com/questions/1910953/inlines-python-django-technique-for-objects 0 Inlines Python/Django technique for objects Masi 2009-12-15T22:38:06Z 2009-12-15T23:11:06Z <p>I am reading the source code of the Django application <em>blog</em> at <code>git://github.com/nathanborror/django-basic-apps.git</code>.</p> <p><strong>How do you read the following Django code?</strong></p> <pre><code>{% tags_for_object object as tag_list %} </code></pre> <p><strong>My attempt:</strong> Make the variable <em>object</em> of the type *tags_for_object* and rename the variable to *tag_list*.</p> <p>The <em>object</em> apparently is based on the file blog/templates/inlines/default.html:</p> <pre><code>{% if object %} {{ object }} {% else %} {% for object in object_list %} {{ object }} {% endfor %} {% endif %} </code></pre> <p><strong>What is the befefit of putting the logic to two-step procedure: run single object, else loop through a list of objects?</strong></p> http://stackoverflow.com/questions/1055165/unable-to-extract-sos-data-dump-file-by-mac 1 Unable to extract SO's data dump file by Mac Masi 2009-06-28T16:06:43Z 2009-12-15T16:42:36Z <p>I run the following Gert's <a href="http://serverfault.com/questions/3743/what-useful-things-can-one-add-to-ones-bashrc/3842#3842">extract command</a> to the <a href="http://blog.stackoverflow.com/wp-content/uploads/so-export-2009-06.7z.torrent" rel="nofollow">data dump</a> file which format .7z seems to be a problem:</p> <pre><code>extract () { if [ -f $1 ] ; then case $1 in *.tar.bz2) tar xvjf $1 ;; *.tar.gz) tar xvzf $1 ;; *.bz2) bunzip2 $1 ;; *.rar) unrar x $1 ;; *.gz) gunzip $1 ;; *.tar) tar xvf $1 ;; *.tbz2) tar xvjf $1 ;; *.tgz) tar xvzf $1 ;; *.zip) unzip $1 ;; *.Z) uncompress $1 ;; *.7z) 7z x $1 ;; *) echo "don't know how to extract '$1'..." ;; esac else echo "'$1' is not a valid file!" fi } </code></pre> <p>I run it to the dump file. I get</p> <pre><code>extract so-export-2009-06.7z extract:13: command not found: 7z </code></pre> <p>This suggested that I do not have 7z to extract files. I installed the app p7zip by MacPorts unsuccessfully. It did not start to act as 7z unzipper.</p> <p><strong>How can you unzip SO's data dump?</strong></p> http://stackoverflow.com/questions/1122218/to-understand-the-practical-use-of-greps-option-h-in-different-situations 1 To understand the practical use of Grep's option -H in different situations Masi 2009-07-13T21:36:10Z 2009-12-14T17:41:40Z <p>This question is based on <a href="http://stackoverflow.com/questions/1121776/to-understand-xargs-better/1121897#1121897">this answer</a>.</p> <p><strong>Why do you get the same output from the both commands?</strong></p> <p><strong>Command A</strong></p> <pre><code>$sudo grep muel * /tmp masi:muel </code></pre> <p><strong>Command B</strong></p> <pre><code>$sudo grep -H muel * /tmp masi:muel </code></pre> <p>Rob's comment suggests me that <em>Command A</em> should not give me <code>masi:</code>, but only <code>muel</code>.</p> <p>In short, <strong>what is the practical purpose of <code>-H</code>?</strong></p> http://stackoverflow.com/questions/1891139/having-models-declarations-at-two-folders-in-django 0 Having models' declarations at two folders in Django Masi 2009-12-11T22:00:22Z 2009-12-11T22:11:22Z <p><strong>How can you have model declarations at two different directories in Django?</strong></p> <p>I have the model at the directory <strong>Code</strong> which contains "<strong>init</strong>.py", "models.py" and "admin.py". It is working properly alone.</p> <p>I want to have the directory <strong>History</strong> which has the model of the revisions of the given questions. I have the similar files in the directory.</p> <p>I need to tell Django to use the model at the directory "History" somehow, since I have a ManyToMany relation in the table Questions to the other directory.</p> <p>I get the following import error</p> <pre><code>ImportError at / cannot import name history Request Method: GET Request URL: http://127.0.0.1:8000/ Exception Type: ImportError Exception Value: cannot import name history Exception Location: /home/noa/build/CML/../CML/codes/models.py in &lt;module&gt;, line 2 Python Executable: /usr/bin/python Python Version: 2.6.2 Python Path: ['/home/noa/build/CML', '/usr/lib/python2.6', '/usr/lib/python2.6/plat-linux2', '/usr/lib/python2.6/lib-tk', '/usr/lib/python2.6/lib-old', '/usr/lib/python2.6/lib-dynload', '/usr/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages/PIL', '/usr/lib/python2.6/dist-packages/gst-0.10', '/var/lib/python-support/python2.6', '/usr/lib/python2.6/dist-packages/gtk-2.0', '/var/lib/python-support/python2.6/gtk-2.0', '/var/lib/python-support/python2.6/pyinotify', '/usr/lib/python2.6/dist-packages/wx-2.8-gtk2-unicode', '/usr/local/lib/python2.6/dist-packages'] Server time: Fri, 11 Dec 2009 15:46:30 -0600 </code></pre> http://stackoverflow.com/questions/1044854/whats-the-different-between-22-and-22-in-python 2 What's the different between "2*2" and "2**2" in Python? Masi 2009-06-25T16:23:16Z 2009-12-09T03:24:47Z <p>What is the difference between the following codes?</p> <p><strong>code1</strong></p> <pre><code>var=2**2*3 </code></pre> <p><strong>code2</strong></p> <pre><code>var2=2*2*3 </code></pre> <p>I see no difference. This raises the following question.</p> <p><strong>Why is the code1 used if we can use code2?</strong></p> http://stackoverflow.com/questions/1849435/kill-infinite-loop-at-upstarts-run-level 0 Kill Infinite loop at Upstart's run level [closed] Masi 2009-12-04T20:25:08Z 2009-12-04T20:25:08Z <p>One of my applications is at a infinite loop in the runlevel 1 by printing <em>No protocol specified</em> continuously after running <code>startx -- :1</code>. The run level does not listen to my commands given at the run level. I can of course give kernel Magic*B, but that would close all my other run levels which I do not want. Magic*K is not working. </p> <p>One nasty way of stopping the run level is by removing components such as <code>/etc/rc1.d/*.*bluetooth.*</code>. However, I do not see this a good way in the long run.</p> <p><strong>How can you kill all processes at the run level 1 which belongs to the open prompt in the given run level?</strong></p> http://stackoverflow.com/questions/1844545/to-have-two-xorg-in-two-ubuntus-run-levels 1 To have two Xorg in two Ubuntu's run levels [closed] Masi 2009-12-04T02:49:07Z 2009-12-04T18:29:02Z <p>Ubuntu support by default only one X at run levels. I would like to have two Xs: one for Ion3 and for Gnome, in two diffferent run levels. This means that I need to change the source code of Ubuntu somehow and somewhere.</p> <p>It may be possible to use X11 in one run level and Xorg on another run level without modifying the source code. However, my friend says that this is not possible.</p> <p><strong>How would you change Ubuntu's source code to enable two Xs in two different run levels?</strong></p> http://stackoverflow.com/questions/823045/how-can-i-remove-a-file-remove-files 2 How can I remove a file "--remove-files"? Masi 2009-05-05T02:29:16Z 2009-12-04T15:00:19Z <p>I tested:</p> <blockquote> <p>rm \-\-remove-files</p> </blockquote> <p>but I am unable to remove it. How can I do it?</p> http://stackoverflow.com/questions/1836588/subprocess-popen-and-pipe-in-python 0 Subprocess Popen and PIPE in Python Masi 2009-12-02T23:19:53Z 2009-12-02T23:42:00Z <p>The following code prints an empty line as an output which is false. The problem is not in the permissions, since I tested the command with 777 permissions for the pdf -file. <strong>How can you fix the command to give a right output?</strong></p> <pre><code>import subprocess from subprocess import PIPE, Popen output = Popen(['pdftotext', '/home/aal/Desktop/lkn_pdf/appa.pdf'], stdout=PIPE).communicate()[0] </code></pre> http://stackoverflow.com/questions/1836670/forcing-outputs-of-kernel-to-terminal-in-ubuntu 0 Forcing outputs of kernel to terminal in Ubuntu [closed] Masi 2009-12-02T23:41:06Z 2009-12-02T23:41:06Z <p><strong>How can you force the outputs of kernel such as the ones of Magic keys to the command line?</strong></p> <p>I want to get all kernel messages to my command line. I do not want to use dmesg and watch.</p> http://stackoverflow.com/questions/1836629/detect-sak-in-dmesg-at-linux-kernel 0 Detect SAK in Dmesg at Linux Kernel [closed] Masi 2009-12-02T23:30:13Z 2009-12-02T23:30:13Z <p><strong>How can you detect that the output of the command `Magic-Alt-K'?</strong></p> <p>I press Fn-Alt-SysRq in my X60s. I have <code>watch 'dmesg | tail -15'</code> visible in one frame of Ion3. I press the combo. It gives the same output as the help button (h). This suggests me that the command is not necessarily run.</p> <p><strong>What is the output of the command in your dmesg?</strong></p> http://stackoverflow.com/questions/1823389/error-in-compiling-a-linux-kernel 0 Error in compiling a Linux kernel Masi 2009-12-01T00:55:58Z 2009-12-01T21:56:46Z <p><strong>How do you read the errors?</strong></p> <p>I run after having .config -file at /home/aal/build/kernel.</p> <pre><code>/usr/src/linux-2.6$ make O=/home/aal/build/kernel/ </code></pre> <p>I get</p> <pre><code> ... cut ... CC [M] drivers/staging/go7007/s2250-board.o /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:24:26: error: s2250-loader.h: No such file or directory /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c: In function ‘read_reg_fp’: /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:264: warning: passing argument 1 of ‘down_interruptible’ from incompatible pointer type /usr/src/linux-2.6/include/linux/semaphore.h:43: note: expected ‘struct semaphore *’ but argument is of type ‘struct mutex *’ /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:273: warning: passing argument 1 of ‘up’ from incompatible pointer type /usr/src/linux-2.6/include/linux/semaphore.h:47: note: expected ‘struct semaphore *’ but argument is of type ‘struct mutex *’ /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c: In function ‘s2250_init’: /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:670: error: implicit declaration of function ‘s2250loader_init’ /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:676: error: implicit declaration of function ‘s2250loader_cleanup’ make[4]: *** [drivers/staging/go7007/s2250-board.o] Error 1 make[3]: *** [drivers/staging/go7007] Error 2 make[2]: *** [drivers/staging] Error 2 make[1]: *** [drivers] Error 2 make: *** [sub-make] Error 2 </code></pre> http://stackoverflow.com/questions/902542/unable-to-find-a-tab-completion-for-rubygem-in-bash-zsh 0 Unable to find a tab completion for Rubygem in Bash/Zsh Masi 2009-05-23T21:38:56Z 2009-12-01T16:15:48Z <p>I have not found a tab-completion script for RubyGem in Bash/Zsh.</p> <p><strong>Where can you get the tab-completion script for RubyGem in Bahs/Zsh?</strong></p> http://stackoverflow.com/questions/1778778/sql-syntax-error-using-python-and-psycopg 0 SQL syntax error using Python and psycopg Masi 2009-11-22T13:59:24Z 2009-11-30T00:17:33Z <p><strong>How can you fix this SQL-code?</strong></p> <p>My Python code:</p> <pre><code>import os, pg, sys, re, psycopg2 conn = psycopg2.connect("dbname=tk user=masi password=123") cur = conn.cursor() cur.execute("""INSERT INTO courses ('course_nro') VALUES ( `:1` )""", ['hen']) </code></pre> <p>I get:</p> <pre><code>Traceback (most recent call last): File "&lt;stdin&gt;", line 13, in &lt;module&gt; psycopg2.ProgrammingError: syntax error at or near "'course_nro'" LINE 1: INSERT INTO courses ('course_nro') ^ </code></pre> http://stackoverflow.com/questions/1814061/convert-python-to-haskell-lambda-calculus 0 Convert Python to Haskell / Lambda calculus Masi 2009-11-28T23:03:06Z 2009-11-29T07:02:10Z <p><strong>What is the Python code in Haskell and Lambda calculus?</strong></p> <pre><code>def f1(): x = 77 def f2(): print x f2 f1 </code></pre> <p>My attempt in lambda calculus</p> <pre><code>\x. 77 (\x.x) </code></pre> http://stackoverflow.com/questions/1804365/lpr-module-in-python 0 Lpr -module in Python Masi 2009-11-26T11:14:26Z 2009-11-26T18:26:49Z <p><strong>How can you call lpr in Python?</strong></p> <p>It is not in the sys -module which is surprising.</p> <p>I aim to use the lpr as follows shown by pseudo-code</p> <pre><code>10*i for i in range(77): lpr --pages(i,i+1) file.pdf </code></pre> http://stackoverflow.com/questions/1790010/solving-ubuntus-resolve-problem-with-dpkg 0 Solving Ubuntu's resolve -problem with dpkg [closed] Masi 2009-11-24T13:20:01Z 2009-11-24T13:22:58Z <p>This question is base on <a href="http://stackoverflow.com/questions/1785280/fixing-x11s-startup-errors-by-xorg-conf-or-modprobe/1789755#1789755">Popey's answer</a>. I mounted my broken Ubuntu such that I can access it by Ubuntu Live CD. However, I did not manage to run one of the commands such that my X11 gets stuck at the startup.</p> <p><strong>How can you solve the following "resolve" problem?</strong></p> <pre><code>root@ubuntu:/# sudo dpkg --configure -a sudo: unable to resolve host ubuntu </code></pre> http://stackoverflow.com/questions/1785280/fixing-x11s-startup-errors-by-xorg-conf-or-modprobe 0 Fixing X11's startup Errors by Xorg.conf or modprobe [closed] Masi 2009-11-23T19:05:48Z 2009-11-24T13:16:08Z <p>I am using Ubuntu Live CD to get an access to the broken Ubuntu after running a few <a href="http://en.wikipedia.org/wiki/Magic%5FSysRq%5Fkey" rel="nofollow">Linux Kernel Magic commands</a> without knowing completely what I did. I mounted the system to Live CD.</p> <p>I need to apparently be able to run aptitude such that I can fix the following errors in my T60s.</p> <pre><code>(EE) intel(0): Failed to set tiling on front buffer: rejected by kernel (EE) intel(0): Failed to set tiling on back buffer: rejected by kernel (EE) intel(0): Failed to set tiling on depth buffer: rejected by kernel (EE) XKB: No component provided Virtual core keyboard </code></pre> <h1>#1 solution: Xorg.conf</h1> <h2>#1.1</h2> <p>I run replaced the xorg.conf with the backup files at /mnt/sda5/etc/xorg.conf unsuccessfully. My T60s still goes to the gray-error screen although I use different xorg.conf -files. </p> <p>I booted my system by Cmd-Alt-SysRq {r,e,i,s,u,b} so the new xorg.conf should be in the mounted sda5.</p> <p>#1.2</p> <p>I removed my /etc/X11/xorg.conf, but the same problem remains. This suggests to me that the problem is not in X11.</p> <h1>#2 Solution</h1> <p>Daubers at Ubuntu-uk suggests to </p> <ol> <li>mount /proc /dev /sys into your old fs using a loopback interface</li> <li>run chroot</li> </ol> <p>This means that I need to run</p> <pre><code> mount /dev/sda5 /proc mount /dev/sda5 /dev mount -o loop /chroot/sys /sys </code></pre> <p>The last command gives me the output</p> <pre><code>could not find any loop device. Maybe this kernel does not know about the loop device? (if so, recomplie or `modprobe loop`.) </code></pre> <p>The <a href="http://translate.google.com/translate?js=n&amp;prev=%5Ft&amp;hl=en&amp;ie=UTF-8&amp;u=http%3A%2F%2Flinux.ilmainen.net%2Fkonsoli.htm&amp;sl=fi&amp;tl=en" rel="nofollow">output means apparently</a> that Ubuntu's Linux Kernel does not support the feature <em>loop</em>.</p> <p>The command <code>fdisk -l</code> gives me </p> <p><img src="http://dl.dropbox.com/u/1664246/p1000464.jpg" alt="alt text"></p> <p><strong>How can you run `mount -o loop /chroot/sys successfully?</strong> I need to apparently add some module to Linux kernel</p> <h1>#3 by Ubuntu Live CD</h1> <h2>#3.1 <a href="http://ubuntuforums.org/archive/index.php/t-422523.html" rel="nofollow">By updating applications in Ubuntu by a Live CD</a></h2> <p>The following commands are not accurate according to popey at #ubuntu-uk.</p> <p>I run</p> <pre><code>sudo mkdir /mnt/repair sudo mount /dev/sda5 /mnt/repair sudo chroot /mnt/repair // after this I did not manage to run other commands sudo apt-get update // I cannot run these, I get no traffic outside sudo apt-get upgrade sudo aptitude upgrade sudo apt-get -f install sudo dpkg --configure -a sudo apt-get upgrade exit sudo reboot </code></pre> http://stackoverflow.com/questions/1779750/making-orm-with-pythons-storm -1 Making ORM with Python's Storm Masi 2009-11-22T19:47:22Z 2009-11-23T19:14:58Z <p>The question is based on <a href="http://stackoverflow.com/questions/1779239/converting-sql-commands-to-pythons-orm">the thread</a>, since I observed that Storm allows me reuse my SQL-schemas.</p> <p><strong>How can you solve the following error message in Storm?</strong></p> <p>The code is based on Jason's answer and on Storm's manual.</p> <pre><code>import os, pg, sys, re, psycopg2, storm from storm.locals import * from storm import * class Courses(): subject = Unicode() database = create_database("postgres://naa:123@localhost:5432/tk") store = Store(database) course = Courses() course.subject = 'abcd' store.add(course) </code></pre> <p>It gives you</p> <pre><code>Traceback (most recent call last): File "&lt;stdin&gt;", line 13, in &lt;module&gt; File "/usr/lib/python2.6/dist-packages/storm/store.py", line 245, in add obj_info = get_obj_info(obj) File "/usr/lib/python2.6/dist-packages/storm/info.py", line 40, in get_obj_info obj_info = ObjectInfo(obj) File "/usr/lib/python2.6/dist-packages/storm/info.py", line 162, in __init__ self.cls_info = get_cls_info(type(obj)) File "/usr/lib/python2.6/dist-packages/storm/info.py", line 51, in get_cls_info cls.__storm_class_info__ = ClassInfo(cls) File "/usr/lib/python2.6/dist-packages/storm/info.py", line 69, in __init__ raise ClassInfoError("%s.__storm_table__ missing" % repr(cls)) storm.exceptions.ClassInfoError: &lt;type 'instance'&gt;.__storm_table__ missing </code></pre> <p>This suggests to me that some module is missing. There is no module <code>instance</code> in Storm.</p> http://stackoverflow.com/questions/1779239/converting-sql-commands-to-pythons-orm 1 Converting SQL commands to Python's ORM Masi 2009-11-22T16:52:19Z 2009-11-22T19:39:56Z <p><strong>How would you convert the following codes to Python's ORM such as by SQLalchemy?</strong></p> <h1>#1 Putting data to Pg</h1> <pre><code>import os, pg, sys, re, psycopg2 #conn = psycopg2.connect("dbname='tkk' host='localhost' port='5432' user='noa' password='123'") conn = psycopg2.connect("dbname=tk user=naa password=123") cur = conn.cursor() cur.execute("""INSERT INTO courses (course_nro) VALUES ( %(course_nro)s )""", dict(course_nro='abcd')) conn.commit() </code></pre> <h1>#2 Fetching</h1> <pre><code>cur.execute("SELECT * FROM courses") print cur.fetchall() </code></pre> <h1>Examples about the two commands in <a href="http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/expressions.html" rel="nofollow">SQLalchemy</a></h1> <p><strong>insert</strong></p> <pre><code>sqlalchemy.sql.expression.insert(table, values=None, inline=False, **kwargs) </code></pre> <p><strong>select</strong></p> <pre><code>sqlalchemy.sql.expression.select(columns=None, whereclause=None, from_obj=[], **kwargs) </code></pre> http://stackoverflow.com/questions/1779009/to-insert-to-pg-by-psycopg 0 To insert to Pg by Psycopg Masi 2009-11-22T15:23:04Z 2009-11-22T15:31:04Z <p><strong>How can you fix the SQL-statement in Python?</strong></p> <p>The db connection works. However, <code>cur.execute</code> returns <em>none</em> which is false.</p> <p><strong>My code</strong></p> <pre><code>import os, pg, sys, re, psycopg2 try: conn = psycopg2.connect("dbname='tk' host='localhost' port='5432' user='naa' password='123'") except: print "unable to connect to db" cur = conn.cursor() print cur.execute("SELECT * FROM courses") # problem here </code></pre> <p>The SQL-command in Psql returns me the correct output. I can similarly run <code>INSERT</code> in Psql, but not by Python's scripts. I get no warning/error to /var/log.</p> <p>Possible bugs are</p> <ol> <li><strong>cursor()</strong>, seems to be right however</li> <li><strong>the syntax of the method <em>connect()</em></strong>, seems to be ok however</li> </ol> http://stackoverflow.com/questions/1353658/running-sh-script-with-sudo-for-phpdoc 0 Running SH script with sudo for PHPdoc Masi 2009-08-30T11:11:55Z 2009-11-22T14:35:07Z <p><strong>How can you run the following script in generating docs by PHPdoc?</strong></p> <h1>#1 sudo -code</h1> <pre><code>sudo source makedoc.sh </code></pre> <p>I get</p> <pre><code>no command source </code></pre> <h1>#2 without sudo</h1> <p>The problem is that <code>sudo</code> does not have the command <code>source</code>. I tried to fix the problem unsuccessfully by changing the persmissions of ~/phpdoc/phpdoc to 777 and then running</p> <pre><code>source makedoc.sh </code></pre> <p>I get </p> <pre><code>makedoc.sh:90: permission denied: /home/masi/phpdoc/phpdoc </code></pre> <h1>#3 without sudo</h1> <p>I run</p> <pre><code> phpdoc -c makedoc.sh </code></pre> <p>I get</p> <pre><code>codes master $ phpdoc -c makedoc.sh PHP Version 5.2.6-3ubuntu4.2 phpDocumentor version 1.4.2 Parsing configuration file phpDocumentor.ini... (found in /usr/share/php/data/PhpDocumentor/)... done Maximum memory usage set at 256M after considering php.ini... using tokenizer Parser a target directory must be specified try phpdoc -h </code></pre> http://stackoverflow.com/questions/1777592/why-do-i-get-this-error-in-this-python-code 0 Why do I get this error in this Python code? Masi 2009-11-22T02:15:56Z 2009-11-22T02:24:41Z <p>I am trying to extract the first words in a file by Python.</p> <p><strong>My code</strong></p> <pre><code>import re con1 = pg.DB('tk', 'localhost', 5432, None, None, 'masi', '123') f1="/home/masi/fy.txt" print re.findall(r"\w+", f1.read()) </code></pre> <p>I get the error</p> <pre><code>Traceback (most recent call last): File "&lt;stdin&gt;", line 7, in &lt;module&gt; AttributeError: 'str' object has no attribute 'read' </code></pre> http://stackoverflow.com/questions/722463/is-google-app-engine-better-than-webfaction-for-a-beginner-in-django-dev 2 Is Google App Engine better than Webfaction for a beginner in Django dev? Masi 2009-04-06T17:41:33Z 2009-11-21T20:26:05Z <p>I am a beginner in developing websites by Django. I run small discussion websites similar to SO.</p> <p>I have an account at Bluehost which has been a nightmare in developing by Django. I have found that Webfaction and Google App Engine seems to be the best choices for Django.</p> <p>However, I am not sure which one is the best for me.</p> <p><strong>Is Google App Engine better than Webfaction in running small websites?</strong></p> http://stackoverflow.com/questions/1770786/fixing-a-type-error-in-pythons-pg 0 Fixing a type-error in Python's Pg Masi 2009-11-20T14:29:53Z 2009-11-21T15:34:27Z <p>Thank you for bobince in solving the first bugs!</p> <p><strong>How can you use *pg.escape_bytea* or *pg.escape_string* in the following?</strong></p> <h1>#1 With both pg.escape_string and pg.escape_bytea</h1> <pre><code> con1.query( "INSERT INTO files (file, file_name) VALUES ('%s', '%s')" % (pg.escape_bytea(pg.espace_string(f.read())), pg.espace_string(pg.escape_bytea(f.name))) </code></pre> <p>I get the error</p> <pre><code>AttributeError: 'module' object has no attribute 'espace_string' </code></pre> <p>I tested the two escapes in the reverse order unsuccessfully too.</p> <h1>#2 Without pg.escape_string()</h1> <pre><code> con1.query( "INSERT INTO files (file, file_name) VALUES ('%s', '%s')" % (pg.escape_bytea(f.read()), pg.escape_bytea(f.name)) ) </code></pre> <p>I get</p> <pre><code>WARNING: nonstandard use of \\ in a string literal LINE 1: INSERT INTO files (file, file_name) VALUES ('%PDF-1.4\\012%\... ^ HINT: Use the escape string syntax for backslashes, e.g., E'\\'. ------------------------ -- Putting pdf files in </code></pre> <p>I get the following error</p> <h1># 3 With only pg.escape_string</h1> <pre><code>------------------------ -- Putting pdf files in ------------------------ Traceback (most recent call last): File "&lt;stdin&gt;", line 30, in &lt;module&gt; File "&lt;stdin&gt;", line 27, in put_pdf_files_in File "/usr/lib/python2.6/dist-packages/pg.py", line 313, in query return self.db.query(qstr) pg.ProgrammingError: ERROR: invalid byte sequence for encoding "UTF8": 0xc7ec HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding". </code></pre> http://stackoverflow.com/questions/1765630/to-have-two-pg-queries-in-one-python-method 0 To have two Pg queries in one Python method Masi 2009-11-19T18:44:52Z 2009-11-20T13:10:24Z <p>Thank you for Denis who solves the first bug!</p> <p><strong>How can you have two Postgres queries in one Python method?</strong></p> <p><strong>Example where the 2nd query is not run</strong></p> <pre><code>def comp_func(pgmasi): pgmasi.query("""CREATE TABLE courses ( course_id SERIAL PRIMARY KEY)""") pgmasi.query("""CREATE TABLE files ( # not executed for some unknown reason file_id SERIAL PRIMARY KEY""") </code></pre> http://stackoverflow.com/questions/1767210/to-understand-pythons-optparse 0 To understand Python's optparse Masi 2009-11-19T23:07:13Z 2009-11-20T02:06:52Z <p>Thank you for quack in pointing out the off-by-one!</p> <p>The following code is my first attempt in writing code with Optparse.</p> <p><strong>How can you fix the following bug in getting the help by Optparse?</strong></p> <pre><code>#!/usr/bin/env python import sys import os from optparse import OptionParser e = sys.argv[1] b = sys.argv[2] no = sys.argv[3] def set_figu(figu): sum = 777 return sum def main(): usage = "Usage: negative_bin_base.py &lt;eksponentti&gt; &lt;siirre&gt; &lt;figu&gt;" parser = OptionParser(usage) parser.add_option("-h", "--help", dest="help", help="get synopsis of parameters") # print the output of the work-horse print set_figu(no) (options, args) = parser.parse_args() if len(args) &lt; 4: parser.error("incorrect number of arguments") if options.informative: print "reading %s..." % options.help if __name__ == "__main__": main() </code></pre> <p><strong>Example of wrong output with correct number of parameters</strong></p> <pre><code>python negative_bin_base.py 13 13 332 Traceback (most recent call last): File "negative_bin_base.py", line 37, in &lt;module&gt; main() File "negative_bin_base.py", line 26, in main help="get synopsis of parameters") File "/usr/lib/python2.6/optparse.py", line 1020, in add_option self._check_conflict(option) File "/usr/lib/python2.6/optparse.py", line 995, in _check_conflict option) optparse.OptionConflictError: option -h/--help: conflicting option string(s): -h, --help </code></pre> http://stackoverflow.com/questions/1728602/difference-between-matlabs-matrix-notations -2 Difference between MATLAB's matrix notations Masi 2009-11-13T11:14:58Z 2009-11-13T13:40:51Z <p>How do you read the following <a href="http://en.wikipedia.org/wiki/MATLAB" rel="nofollow">MATLAB</a> codes?</p> <h1>#1</h1> <pre><code>K&gt;&gt; [p,d]=eig(A) // Not sure about the syntax. p = 0.5257 -0.8507 -0.8507 -0.5257 d = // Why do you get a matrix? 0.3820 0 0 2.6180 </code></pre> <h1>#2</h1> <pre><code>K&gt;&gt; p,d=eig(A) // Not sure about the syntax. p = 0.5257 -0.8507 -0.8507 -0.5257 d = // Why do you get a vector? 0.3820 2.6180 </code></pre> <p>where</p> <pre><code>A = 2 1 1 1 </code></pre> http://stackoverflow.com/questions/1910953/inlines-python-django-technique-for-objects/1911001#1911001 Comment by Masi on Inlines Python/Django technique for objects Masi 2009-12-16T00:30:27Z 2009-12-16T00:30:27Z They are just random examples in my current code. They are not related to the given code. http://stackoverflow.com/questions/1910953/inlines-python-django-technique-for-objects/1911001#1911001 Comment by Masi on Inlines Python/Django technique for objects Masi 2009-12-15T23:14:38Z 2009-12-15T23:14:38Z So the 3rd-party module makes it easier to handle pieces of information such as &quot;user_name&quot; and &quot;time&quot; for a comment, for instance. It seems that these variables are called tags in Django. - I am not yet completely sure why you need such a plugin, since you could just put such pieces of information to a single list for the given question. http://stackoverflow.com/questions/1891139/having-models-declarations-at-two-folders-in-django/1891205#1891205 Comment by Masi on Having models' declarations at two folders in Django Masi 2009-12-12T13:32:09Z 2009-12-12T13:32:09Z What is &quot;MyHistoryModel&quot;? I have the file history/models.py. How can you know what is the variable based on the file? http://stackoverflow.com/questions/1823389/error-in-compiling-a-linux-kernel/1823469#1823469 Comment by Masi on Error in compiling a Linux kernel Masi 2009-12-02T22:04:52Z 2009-12-02T22:04:52Z <b>How can you remove the reference to the file in the .config?</b> I did not find any driver with the given name. - I also tried to remove the given file, but some files are dependent on it so it cannot just be removed. http://stackoverflow.com/questions/1804365/lpr-module-in-python/1805015#1805015 Comment by Masi on Lpr -module in Python Masi 2009-11-28T17:01:35Z 2009-11-28T17:01:35Z +1: for subprocess http://stackoverflow.com/questions/1785280/fixing-x11s-startup-errors-by-xorg-conf-or-modprobe/1789755#1789755 Comment by Masi on Fixing X11's startup Errors by Xorg.conf or modprobe Masi 2009-11-24T13:20:22Z 2009-11-24T13:20:22Z I opened a thread about the problem at <a href="http://stackoverflow.com/questions/1790010/solving-ubuntus-resolve-problem-with-dpkg" rel="nofollow" title="solving ubuntus resolve problem with dpkg">stackoverflow.com/questions/1790010/&hellip;</a> http://stackoverflow.com/questions/1785280/fixing-x11s-startup-errors-by-xorg-conf-or-modprobe/1785351#1785351 Comment by Masi on Fixing X11's startup Errors by Xorg.conf or modprobe Masi 2009-11-23T22:11:26Z 2009-11-23T22:11:26Z I can boot my system without X, but my system gets stuck when I try it. http://stackoverflow.com/questions/1779009/to-insert-to-pg-by-psycopg/1779039#1779039 Comment by Masi on To insert to Pg by Psycopg Masi 2009-11-22T16:17:46Z 2009-11-22T16:17:46Z * I mean cur.execute http://stackoverflow.com/questions/1779009/to-insert-to-pg-by-psycopg/1779039#1779039 Comment by Masi on To insert to Pg by Psycopg Masi 2009-11-22T16:16:51Z 2009-11-22T16:16:51Z <b>Which method do you need to run to put the data to the database?</b> <code>cur.insert(&quot;INSERT INTO courses (course) VALUES ( %s )&quot;&quot;&quot;, [data])</code> is not working for me. http://stackoverflow.com/questions/1770786/fixing-a-type-error-in-pythons-pg/1771240#1771240 Comment by Masi on Fixing a type-error in Python's Pg Masi 2009-11-21T15:35:06Z 2009-11-21T15:35:06Z I run your suggestions unsuccessfully. I updated my question to reflect the recent changes. http://stackoverflow.com/questions/1770786/fixing-a-type-error-in-pythons-pg/1771240#1771240 Comment by Masi on Fixing a type-error in Python's Pg Masi 2009-11-21T12:55:06Z 2009-11-21T12:55:06Z I updated my question. The current problem is now in the use of <code>pg.escape&#95;bytea</code> because of the auto-creation of the argument <code>self</code>. http://stackoverflow.com/questions/1770786/fixing-a-type-error-in-pythons-pg/1771240#1771240 Comment by Masi on Fixing a type-error in Python's Pg Masi 2009-11-21T09:46:22Z 2009-11-21T09:46:22Z My column <code>file</code> is of the type <code>bytea</code>. It is strange that I get the UTF-8 error. My table <code>files</code> looks like <a href="http://dpaste.com/123231/" rel="nofollow">dpaste.com/123231</a> http://stackoverflow.com/questions/1770786/fixing-a-type-error-in-pythons-pg/1771240#1771240 Comment by Masi on Fixing a type-error in Python's Pg Masi 2009-11-20T22:19:46Z 2009-11-20T22:19:46Z @bobince: I get the following error message at the moment: <a href="http://dpaste.com/123106/" rel="nofollow">dpaste.com/123106</a> http://stackoverflow.com/questions/1770786/fixing-a-type-error-in-pythons-pg/1771240#1771240 Comment by Masi on Fixing a type-error in Python's Pg Masi 2009-11-20T18:36:32Z 2009-11-20T18:36:32Z I get <code>Attribute Error</code> for the command <code>con1.insert('files', file= f.read(), file&#95;name= f.name)</code>. http://stackoverflow.com/questions/1767210/to-understand-pythons-optparse/1767884#1767884 Comment by Masi on To understand Python's optparse Masi 2009-11-20T12:36:18Z 2009-11-20T12:36:18Z How do you read this line <code> if options.eksponentti and options.siirre and options.figu:</code>? I am using 3 parameteters in my command and the if-clause is not true.