paulcam

- friends
1 link karma
729 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • Three-Year Club

This seems to happen quite a bit in our region... by tiff_seattlein Seattle

[–]paulcam 0 points1 point ago

b50, I'd wager

No... boogying? by flyingnomadin WTF

[–]paulcam 75 points76 points ago

sorry, this has been archived and can no longer be voted on

No Terrence & Phillip reenactments.

This is how my friend showed up to work the day after Labor Day. Don't tell him what not to wear. by jillycheesesteakin pics

[–]paulcam -1 points0 points ago

sorry, this has been archived and can no longer be voted on

Did he dare to drink a Gin & Tonic at lunch?

Experience with Icicles? by suhrobin emacs

[–]paulcam 8 points9 points ago

sorry, this has been archived and can no longer be voted on

I used icicles for a while... I found it to be pretty good. However, it's pretty invasive, and tended to slow things down a bit on my machine. I also found it to be a bit heavy in the way it requires me to interact with it. Specifically, it seemed like every 20 seconds of interaction or so I'd get slapped in the face with a new window asking me to make a choice.

I think if I took the time to really configure it, remap keybindings, and write helpers, I'd probably end up with something I like. However, I found it much easier to use ido for everything:

(require 'ido)
(ido-mode t)

;; use ido to complete commands via M-X
(global-set-key
 "\M-x"
 (lambda ()
   (interactive)
   (call-interactively
    (intern
     (ido-completing-read
      "M-x "
      (all-completions "" obarray 'commandp))))))

;; Maintain a list of recent files. C-x C-r to open from that list
(require 'recentf)

;; enable recent files mode.
(recentf-mode t)

; 50 files ought to be enough.
(setq recentf-max-saved-items 50)

(defun ido-recentf-open ()
  "Use `ido-completing-read' to \\[find-file] a recent file"
  (interactive)
  (if (find-file (ido-completing-read "Find recent file: " recentf-list))
      (message "Opening file...")
    (message "Aborting")))

;; get rid of `find-file-read-only' and replace it with something
;; more useful.
(global-set-key (kbd "C-x C-r") 'ido-recentf-open)

I can't take credit for all of this... I just borrowed pieces from other folks. Now C-x C-f uses ido to find files, C-x C-r uses ido to find recently opened files, C-x b uses ido to pick open buffers.

Edited to add:

Also, M-x uses ido to complete commands.

Experience with Icicles? by suhrobin emacs

[–]paulcam 3 points4 points ago

sorry, this has been archived and can no longer be voted on

I agree. It seems like every time I find something new and interesting on emacswiki, I find an entry telling me that icicles already does it.

Dear Seattle Redditors: what's your favorite bar in Seattle and why? by botaboxin Seattle

[–]paulcam 7 points8 points ago

sorry, this has been archived and can no longer be voted on

Kell's can be a bit touristy on the weekends, but during the day or during the week, it's quite nice.

Dear Seattle Redditors: what's your favorite bar in Seattle and why? by botaboxin Seattle

[–]paulcam 1 point2 points ago

sorry, this has been archived and can no longer be voted on

came to say this

Out on the boat this weekend... had to grab a pic of this boat's name by JGoodyin pics

[–]paulcam 9 points10 points ago

sorry, this has been archived and can no longer be voted on

Best boat name I ever saw: The Unsinkable II

I have altered the picture of the girl and the penguin...pray I do not alter it further by FuriousJin pics

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Hey wait. Is this a Pokey the Penguin reference?

Using my tv as a monitor. Why doesn't the picture span the whole screen? by eMaddeningCrowdin gadgets

[–]paulcam 1 point2 points ago

sorry, this has been archived and can no longer be voted on

Need specifics:

  • What kind of TV?
  • How is your PC hooked up to the TV?
  • What OS?
  • What video card?

I doubt this is a request r/music gets often, but recommend for me some classical music! by DRoadkillin Music

[–]paulcam 1 point2 points ago

sorry, this has been archived and can no longer be voted on

I'd recommend Johann Sebastian Bach's The Musical Offering or The Art of Fugue, personally. I find both to be quite mentally stimulating.

I doubt this is a request r/music gets often, but recommend for me some classical music! by DRoadkillin Music

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Excellent piece, though I'm not sure I'd categorize it as calm or mid-range :)

I am a good dog by stumblebreakin reddit.com

[–]paulcam -2 points-1 points ago

sorry, this has been archived and can no longer be voted on

We'll say chaotic good. :)

I am a good dog by stumblebreakin reddit.com

[–]paulcam 321 points322 points ago

sorry, this has been archived and can no longer be voted on

The dogs' owner was feeding them the flesh of a little girl he raped and killed.

So cops visited me today because they didn't like my basil plant. Go figure... by DIMKACHOOin pics

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Oh! Bear claw, eh? Beauty!

What are some bands whose name implies a totally different genre than the band actually is? by MightyLemonDropin Music

[–]paulcam 4 points5 points ago

sorry, this has been archived and can no longer be voted on

Deftones

Emacs init files in .org files using org-babel by macin emacs

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

mind == blown.

Aphex Twin's "Four" interpreted by 20-piece Orchestra - Alarm Will Sound by metamorphinein Music

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

I suppose that's true. I do love "Avril 14th". Dammit, now I have to go listen to it.

Aphex Twin's "Four" interpreted by 20-piece Orchestra - Alarm Will Sound by metamorphinein Music

[–]paulcam 2 points3 points ago

sorry, this has been archived and can no longer be voted on

The entirety of Alarm Will Sound's Aphex cover album is absolutely brilliant. Well... Except for the "Avril 14" cover -- it's pretty much exactly the same as the original :)

Anyone know where to buy a Dvorak keyboard? by P8ntBal1551in gadgets

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Looks like these guys sell them. I've never heard of nor bought from them before, though. Caveat Emptor

ie9 doctype and fonts question? by rakkaragein html5

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

this tells IE to render the page in IE8 mode. if you do this, you won't be able to use SVG, canvas, or other new-for-IE9 features.

"This puts the default score for IE9 at 62%, the biggest leap any browser version has ever made from the previous one. " by yuhongin web_design

[–]paulcam 0 points1 point ago

sorry, this has been archived and can no longer be voted on

is ie9 a modern browser?

this guy seems to think so

Reason why I'll skip IE9 by [deleted]in WTF

[–]paulcam 1 point2 points ago

sorry, this has been archived and can no longer be voted on

mshtml.dll and other IE-related DLLs are used by a lot of non-IE software products. the way windows works, you can't just slap a new version of a dll down while other processes are still using it. the only way to do this (without rebooting the machine) is to shut down processes that use the DLL, update the DLL, and then restart the processes that were stopped.

IIRC, any applications that are restart manager aware will be restarted automatically.

Working at Microsoft – Day to Day Coding by iforedeckerin programming

[–]paulcam 6 points7 points ago

sorry, this has been archived and can no longer be voted on

not 100% true -- in my building it's 100Mb to the desktop (with a much faster backbone) :)

Is it possible to have an expensive lisp function run in the background in Emacs? by paulcamin emacs

[–]paulcam[S] 1 point2 points ago

sorry, this has been archived and can no longer be voted on

I really need to get in the habit of not closing emacs. I'm using emacsclient, but still feel like I have to close everything down each time I'm done fixing a bug (or doing whatever it was I was doing).

view more: next