268 reputation
16
bio website
location
age 24
visits member for 2 years
seen May 15 at 3:42
stats profile views 18

Mar
27
comment running python in vim
Perhaps if your problem persists you can open up a new question on stackoverflow?
Mar
27
comment running python in vim
Check the line before that one. I can tell you for sure that this is a different problem and has nothing to do with this method of invoking python from vim, which is working fine as evidenced by the fact that python is running your program. Run the program yourself from the command line and see what happens
Mar
27
comment running python in vim
No. If you are receiving invalid syntax errors, it's probably because you have invalid Python syntax. Nothing about how vim is configured will impact that.
Mar
27
comment running python in vim
It will run the file you are currently editing (presumably a Python program) in Python. Give it a try.
Mar
27
answered running python in vim
Mar
27
answered Do I have to set up mail for Ubuntu to be able to mail users?
Mar
27
comment Ubuntu taking very long time to boot
@FrederikSpang That's not really going to fix this problem (and in any case that blog is giving bad advice -- you shouldn't make profile a permanent fixture of your kernel command line unless you'd like it to boot far slower; just hit e at GRUB, append profile to the kernel command line after quiet splash, and hit Ctrl-x.
Mar
27
awarded  Yearling
Mar
27
comment Install same packages from one server on another
@Malocchio On that topic, check out this question on Stack Overflow.
Mar
26
awarded  Editor
Mar
26
comment Install same packages from one server on another
@ScottGoodgame See the edit for another (possibly better) way.
Mar
26
revised Install same packages from one server on another
another another way
Mar
26
comment Ubuntu taking very long time to boot
@Fred. Thank you! I've posted an answer below that explains how to read dmesg output, as well as a probable solution to your specific output.
Mar
26
answered Ubuntu taking very long time to boot
Mar
26
answered Install same packages from one server on another
Mar
26
comment Ubuntu taking very long time to boot
Run the command dmesg > ~/dmesg.txt and post the contents of the file dmesg.txt in your home directory. This will show what is happening during boot.
Mar
26
comment Can ls -l be made to separate fields with tabs rather than spaces to make the output useful in a spreadsheet?
+1. Works perfectly. This sort of thing is precisely what awk is for. Clever!
Mar
25
awarded  Commentator
Mar
25
comment Where is my Android phone's mount point, so I can rsync it?
Did you ever get it sorted out?
Mar
20
comment What's the recommended way to enable / disable services?
+1 for the override trick. Didn't know about that one.