Search results

  1. graudeejs

    It's all about jokes, funny pics...

    You probably know this http://www.anvari.org/fortune/Quotations_-_Random/5013_quote-526-windows-a-32-bit-shell-for-a-16-bit-operating-system-originally-written-for-an-8-bit-processor-on-a-4-bit-bus-by-a-2-bit-company-that-cant-stand-1-bit-of-competition.html
  2. graudeejs

    urxvt+tmux+256 colors

    Didn't know about it. Thanks. I will check it out when I have more time. P.S. It looks awesome.
  3. graudeejs

    urxvt+tmux+256 colors

    The only one that I can think of is: Now I can make better vim theme :) My previous vim theme (universal-blue) was awesome because it used only 16 colors, had dark background and looked very similar in console, terminal and gui. However 16 are just not enough to create good bright...
  4. graudeejs

    urxvt+tmux+256 colors

    Reserved
  5. graudeejs

    urxvt+tmux+256 colors

    Tonight, I wanted to make x11/rxvt-unicode and sysutils/tmux to work with 256 colors. It took me around 2 hours to get this working. So how to get that working? Step 1 uninstall devel/ncurses install devel/ncurses-devel Step 2 Reinstall all ports that used to depend on...
  6. graudeejs

    Useful scripts

    I expected it will finish by 24:00 give or take. In addition, your command can be simplified to: `uptime | cut -d, -f5 | tr -d ' '` Useless use of awk, sed, cat, and * should be punishable by repeated beatings. For extra code golf points, here's the entire thing as short as I can make it on...
  7. graudeejs

    spellchecker

    lol
  8. graudeejs

    spellchecker

    I knew someone will miss it (the red dot at the end of sentence).
  9. graudeejs

    SSD + Geli, viable?

    You should first think about: why you need encryption will keep flash plugged in PC all the time? Will you also use passphrase to encrypt drives what happens after a sudden reboot from who do you want to protect your data (can they take a box without unplugging it from electricity [forensics...
  10. graudeejs

    spellchecker

    Thanks you FreeBSD for implementing such a great spellchecker on this forum. Alright, enough with the joking. DutchDaemon, you are a maniac. Thank you for correcting every typo I make. Even the one like this. http://forums.freebsd.org/showpost.php?p=212419&postcount=202 If we ever meet, I'll...
  11. graudeejs

    Useful scripts

    This night I was compiling LibreOffice. By one o'clock it still wasn't finished. I didn't want computer to stay up all night, so I wrote this little script: #!/bin/sh while [ "`uptime | awk 'BEGIN {FS=","} {print $5}' | sed 's/ //g'`" != '0.00' ]; do sleep 300 echo wait done # wait 10 more...
  12. graudeejs

    Recommendations for console and/or terminal fonts?

    I use DejaVu Sans Mono. They seem to be the best. I would also consider: -misc-fixed-medium-r-normal-*-14-*-*-*-*-*-iso10646-1 -misc-fixed-bold-r-normal-*-14-*-*-*-*-*-iso10646-1 as fallback Also you may want to check out Droid Sans Mono. AFAIR it was very good, however there was one tiny...
  13. graudeejs

    Useful scripts

    That's true. I just wanted to point out that it doesn't cover all characters (unlike you stated).
  14. graudeejs

    Useful scripts

    These are not All possible characters (this is small and very common subset of characters)
  15. graudeejs

    It's all about jokes, funny pics...

    I which I've never read that, cause right now I feel like hitting CthuIhux in a face couple of times. I got really annoyed (didn't finish reading the thread, which I wouldn't shouldn't even start) by that dumb troll.
  16. graudeejs

    Useful scripts

    Here's a much better ruby script #!/usr/bin/env ruby require 'cgi' ARGV.each do |encoded_url| puts CGI::unescape(encoded_url) end
  17. graudeejs

    Disk encryption

    No, it's not (unless it's a new/unused HDD ;) )
  18. graudeejs

    Rule for ipfw

    Step 1) install FreeBSD (how to do it) Step 3) read ipfw Step 2) write ipfw rules Step 3) Load ipfw at boot Step 4) Fix/improve rules Step 5) Repeat step 2, 4, 5 until everything works as expected. And what did you expect? That I will tell you how to configure something under windows XP? Go to...
  19. graudeejs

    /usr/ports/UPDATING prettified

    A little off topic, but I wonder if you guys know about these atom feeds http://updating.versia.com/atom/ports http://updating.versia.com/atom/stable-9
  20. graudeejs

    Favorite programming language

    Absolutely. Ruby is so much nicer, easier to code, easier to read. It has Rails, rspec... It's a joy to write code in Ruby. Besides I'm a full time Ruby on Rails programmer at CubeSystems
Back
Top