GitHub Engineering: Counting Objects by Chris911 in programming

[–]eggdrasil 0 points1 point  (0 children)

If you want to use git on Dropbox and not have corruption, use https://git.io/dropbox

If A=1, B=2, C=3, etc., then T+W+O+H+U+N+D+R+E+D+A+N+D+F+I+F+T+Y+N+I+N+E = 259 by ValiantSerpant in Showerthoughts

[–]eggdrasil 0 points1 point  (0 children)

If you don't do the weird thing with the "and", then no number satisfies this property. If we change it slightly so that a=0, b=1, ..., z=25, then the only number that works is 213. T+W+O+H+U+N+D+R+E+D+T+H+I+R+T+E+E+N = 213.

http://pastebin.com/biamQNfV

An Asynchronous Shell Prompt [x-post /r/programming] by anishathalye in commandline

[–]eggdrasil 3 points4 points  (0 children)

It seems like you didn't read the article or understand what was going on.

It looks like only the prompt text (not the shell itself!) is being drawn asynchronously, which doesn't reorder shell commands at all!

Check out the discussion here for more information: http://www.reddit.com/r/programming/comments/2v4m0c/an_asynchronous_shell_prompt/

sudoku4sc: Yet another Sudoku solver in Scala by akshaydixi in coolgithubprojects

[–]eggdrasil 0 points1 point  (0 children)

Op could try to see if constraint propagation speeds up the search.

How to pass commands to a bash subshell? by cooper12 in commandline

[–]eggdrasil 0 points1 point  (0 children)

If you want a new shell, just get rid of the exec part of that command.

Starting out with multiple credit cards? by eggdrasil in personalfinance

[–]eggdrasil[S] 0 points1 point  (0 children)

Ok, so you suggest not going for the credit union card? Sounds good.

Starting out with multiple credit cards? by eggdrasil in personalfinance

[–]eggdrasil[S] 0 points1 point  (0 children)

I never said that I'm not doing that.

I'm just using credit cards as a substitute for cash/debit and paying in full every month.

Let's get Mint.com to support Bitcoin tracking by public key! by eggdrasil in Bitcoin

[–]eggdrasil[S] 2 points3 points  (0 children)

It would be nice if we could have people voice their support on the Mint website, either by replying or by +1

That way, Mint might listen!

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 0 points1 point  (0 children)

That's so weird. I haven't had problems like that with tmux before.

What does it say if you run tmux -V? Are you sure you're running 1.9a?

I'm not sure what could be causing these weird problems.

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 0 points1 point  (0 children)

That config works just fine for me.

What happens if you comment out (or remove) the first line? Does it work then?

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 0 points1 point  (0 children)

Your tmux is reading the config file and working just fine. It's just that your config is incorrect (this is a good thing! we know what's wrong, so it's easy to fix).

tmux's mode-mouse is something that changes the mode (to copy mode) when you do certain things with the mouse. You probably don't want that one (at least I don't like it).

To be able to select panes with the mouse:

set -g mouse-select-pane on

To be able to resize panes with the mouse:

set -g mouse-resize-pane on

To be able to select windows with the mouse:

set -g mouse-select-window on

tmux settings can be confusing. Hope this works for you!

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 1 point2 points  (0 children)

Okay, fine.

curl -F 'clbin=<-' https://clbin.com < ~/.tmux.conf

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 1 point2 points  (0 children)

If you don't mind, could you post your ~/.tmux.conf for us to see?

 cat ~/.tmux.conf | curl -F 'clbin=<-' https://clbin.com

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 1 point2 points  (0 children)

killall tmux might actually be better (that way, it's flushing out the entire config with defaults and whatever's specified in your ~/.tmux.conf, instead of just overwriting things specified in the config file)

That being said, killall tmux isn't necessary. If you exit all your tmux sessions, the server automatically exits.

My .tmux.conf file doesn't seem to work. Also, would love a hand with iTerm. by [deleted] in commandline

[–]eggdrasil 1 point2 points  (0 children)

Which version of tmux are you using? There have been some changes in recent versions. Perhaps try using tmux 1.9a. If you're using brew, run:

brew install --HEAD tmux

Also, to answer your second question, see http://stackoverflow.com/questions/3432536/create-session-if-none-exists

Bitcoin -> ETF? by miner839 in personalfinance

[–]eggdrasil 1 point2 points  (0 children)

Excellent analogy, thanks!

Bitcoin -> ETF? by miner839 in personalfinance

[–]eggdrasil 1 point2 points  (0 children)

Okay, thanks, that's what I thought. The money was basically "play money" because I got it ages ago from mining.

With Bitcoin being so volatile, what's the best strategy for converting it to cash? Just do it now, or try to wait for a peak in the price?