Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Search found 4576 matches

by Telemachus
2011-05-30 12:58
Forum: Off-Topic
Topic: Org-mode is amazing
Replies: 28
Views: 8089

Re: Org-mode is amazing

But Vim doesn't have Org-mode nor does it try to do anything comparable so why speak of Vim at all? Not true, though it's probably not really production ready yet. https://github.com/hsitz/VimOrganizer I'm pretty sure that's not the only attempt either. https://github.com/jceb/vim-orgmode I've neve...
by Telemachus
2011-05-30 12:54
Forum: Off-Topic
Topic: Shell Programming for Beginners
Replies: 1
Views: 911

Shell Programming for Beginners

http://ontwik.com/linux/shell-programmi ... beginners/

I haven't watched it yet, but it sounds decent (if elementary).
by Telemachus
2011-05-29 20:12
Forum: Forum information, requests, and feedback.
Topic: Logging on to this forum
Replies: 20
Views: 21015

Re: https now!

Ahtiga Saraz wrote:As for Debian User Forums, does anyone know who I should petition?
I believe that only Mez can make this change. PM him directly, I suppose.
by Telemachus
2011-05-28 11:26
Forum: Off-Topic
Topic: Stanford CS Ed Library
Replies: 0
Views: 716

Stanford CS Ed Library

Nick Parlante, a teacher of Computer Science at Stanford, has made available a lot of good material on the basics of programming for free: http://cslibrary.stanford.edu/ Most of the materials there are clear but move at a very quick pace. They cover basics and focus on C and C-like languages. But th...
by Telemachus
2011-05-27 15:28
Forum: Off-Topic
Topic: An interesting free book
Replies: 1
Views: 749

An interesting free book

The Architecture of Open Source Applications

If nothing else, the chapter on Bash should be useful to many people here.
by Telemachus
2011-05-25 11:47
Forum: Debian Development Discussion
Topic: Outstanding news for Rubyists on Debian
Replies: 0
Views: 2960

Outstanding news for Rubyists on Debian

Lucas Nussbaum posted this to the Ruby-core mailing list as well as the Debian-ruby list. I'm posting the whole thing here and a link to the thread, in case anyone is very interested in the follow-up. However, here's the matchbook cover version: If you use Debian and Ruby, your life will soon be muc...
by Telemachus
2011-05-23 18:26
Forum: General Questions
Topic: Is mozilla.debian.net down?
Replies: 16
Views: 2594

Re: Is mozilla.debian.net down?

Just fyi, if you don't know Down For Everyone Or Just Me, it's worth a bookmark.
by Telemachus
2011-05-20 00:00
Forum: System and Network configuration
Topic: When the Cron Daemon Sleeps...
Replies: 4
Views: 619

Re: When the Cron Daemon Sleeps...

The cron daemon is always running when the machine is on, I believe. The jobs run when you ask for them to run. The first five fields specify when the job should run; the sixth is what should run. There are lots of tutorials out there, but here's a nearly random Google pick: http://perl.ericdlarson....
by Telemachus
2011-05-15 01:55
Forum: Programming
Topic: progress bar
Replies: 2
Views: 1819

Re: progress bar

by Telemachus
2011-05-12 16:45
Forum: General Debian
Topic: g++ misbehaving in Debian Stable.
Replies: 9
Views: 1953

Re: g++ misbehaving in Debian Stable.

Have you tried setting break points in the debugger to check the value of the key variables in the version that runs until segfaulting?
by Telemachus
2011-05-12 16:32
Forum: General Debian
Topic: Why does Debian have permissions?
Replies: 15
Views: 3629

Re: Why does Debian have permissions?

First, I half suspect this is a troll. Second, the OP seems to be asking about the entire *nix owners, groups and permissions model (not su versus sudo as a number of people seem to be assuming - he says that Debian and Ubuntu are the same ). Third, if you are really interested in permissions, owner...
by Telemachus
2011-05-09 18:05
Forum: Programming
Topic: [SOLVED] Script to convert every file in dir to new format?
Replies: 4
Views: 1674

Re: Script to convert every file in a directory to new forma

As saulgoode suggests, your problem is that your loop isn't doing what you think. Without a wildcard expression of some kind, your loop only sees one thing: the name of the directory you specify. To see what I mean, debug it this way: for file in /full/path/name do echo "$file" done When y...
by Telemachus
2011-05-09 00:28
Forum: System and Network configuration
Topic: Disabling services the Debian Way in squeeze?
Replies: 13
Views: 9060

Re: Disabling services the oldstable way

If you have a service listed in /etc/init.d and want to delist it, so that it won't start again upon next boot, the only solution I know is ugly: move the script in question to a backup directory. The sysv tool that Bugs mentioned is a less ugly way to do it. Except I'm not using sysv init - I'm us...
by Telemachus
2011-05-08 23:56
Forum: System and Network configuration
Topic: Disabling services the Debian Way in squeeze?
Replies: 13
Views: 9060

Re: Disabling services the oldstable way

If you have a service listed in /etc/init.d and want to delist it, so that it won't start again upon next boot, the only solution I know is ugly: move the script in question to a backup directory. The sysv tool that Bugs mentioned is a less ugly way to do it. @djcp I think you're looking for insser...
by Telemachus
2011-05-07 20:09
Forum: General Debian
Topic: recent Linus Torvalds interview (03/05/11)
Replies: 23
Views: 4782

Re: recent Linus Torvalds interview (03/05/11)

@pendrachken I think you misunderstood me and jumped to conclusions. I neither said nor implied anything which suggested forcing my opinion on anyone else. I also very carefully did not state any kind of preference for this or that license. (I frankly have mixed feelings and minimal knowledge about ...
by Telemachus
2011-05-07 13:56
Forum: General Debian
Topic: recent Linus Torvalds interview (03/05/11)
Replies: 23
Views: 4782

Re: recent Linus Torvalds interview (03/05/11)

So the first and the very negative answer is that I absolutely despise the people who try to push the GPL as being about "ethics". I think that's absolute bullshit. Why? Because ethics are to me something private. Whenever you use it as an argument for why somebody_else should do somethin...
by Telemachus
2011-05-06 15:26
Forum: Beginners Questions
Topic: $PATH - 5 little questions
Replies: 4
Views: 959

Re: $PATH - 5 little questions

The command, ' ruby ', is found in your $PATH; however, Ruby itself does not necessarily make use of $PATH to locate .rb files (it may have its own search path, but more than likely it expects a resolvable filename). Ruby has $LOAD_PATH as an internal variable, just as say Perl has @INC, but that's...
by Telemachus
2011-05-06 11:57
Forum: Beginners Questions
Topic: $PATH - 5 little questions
Replies: 4
Views: 959

Re: $PATH - 5 little questions

Hello, (Q1) Where is the "best practice" place to add onto path? (Q2) Are there any other places $PATH can be set? (Q3) In what order does path get searched - from left to right? (Q4) Are directories in $PATH searched recursively? (Q5) Oh dear.. why can't test.rb be found if the location ...
by Telemachus
2011-05-05 22:55
Forum: Off-Topic
Topic: Do you use open source on your job
Replies: 38
Views: 7312

Re: Do you use open source on your job

Yes. Sadly, the hardware and os (Apple and OSX) are not open source, but nearly all of the software I use regularly (vim, bash, ruby, perl, various and sundry command-line tools) are FOSS.
by Telemachus
2011-05-02 11:49
Forum: General Debian
Topic: apt-get autoremove ... watch out!
Replies: 17
Views: 9297

Re: apt-get autoremove ... watch out!

There is a command with apt-get or aptitude you have to do before doing any other commands like autoremove. I just can't figure out what command it was..... You are probably thinking of aptitude keep-all . It will clear the database's sense of what "should be removed." That is a mixed ble...