Category: linux
10/30/11 02:15 - ID#55410
Cloud-backup of files on Linux.
Naturally, Skydrive doesn't have any desktop synchronization tools for linux. And that is where SMEStorage Sync comes in. All I needed to do was to
- Install "Linux Cloud Desktop Tools" from SMEStorage for fedora.
- Set up an account at SMEStorage and login.
- Go to My Account --> Providers Tab
- Add the Skydrive account and password
- Set the Skydrive account as default (so all your files will be uploaded and synced to the Skydrive 25 Gigs account rather than the limited 2Gigs SMEStorage-Amazon Cloud. (An index of the Skydrive account is mirrored on the SMEStorage-Amazon 2 Gig Cloud. So the 2Gig account has an index but no real files taking up space.)
- Fire up the SME Storage Sync Center on your laptop/desktop
- Choose the US SME Server and connect
- Choose the local home/system folders to Sync
- Press Sync Up any time you want to upload and backup/sync your files in that folder.
- You can manually fire up the SME Storage Sync Center everytime you feel like doing a backup or schedule it to do automatic backups at some regular schedule.
That's it! Evil example of using Microsoft's resources to make life on linux easier.
Permalink: Cloud_backup_of_files_on_Linux_.html
Words: 304
Location: Buffalo, NY
Last Modified: 10/30/11 02:17
Category: eating in
10/30/11 11:58 - ID#55409
Sunday brunch
Permalink: Sunday_brunch.html
Words: 7
Location: Buffalo, NY
Last Modified: 10/30/11 12:10
Category: grocery
10/29/11 09:52 - ID#55406
What produce does $30 get you?
- 0.25 lb Jalapeno Peppers
- 4.54 lb Acorn/Buttercup/Kabocha squash
- 3.46 lb Zucchini (Green squash)
- 3 generous bunches of fresh cilantro
- 5 medium red onions
- 0.89 lb red bell peppers (2 peppers)
- 3.79 lb Vine ripened tomatoes
- 1.00 lb Plum tomatoes
- 5.53 lb Granny Smith apples
- 2.61 lb Bosc pears
- 2.07 lb Black Friar Plums
- 1 Gallon Skim Milk
Except for the plums, each item on that list came from NY farms. Not bad at all for 13/14* 100 ~ 93% local produce & milk. I checked . That is about as seasonal and local as you can get.
---
Contrast with the sortie at (e:paul,55153)
Blasted thing won't post straight!
Permalink: What_produce_does_30_get_you_.html
Words: 99
Location: Buffalo, NY
Last Modified: 10/30/11 12:23
Category: r statistics
10/26/11 10:41 - ID#55380
Writing Functions in R: Part 2
But for now, I think it's super important to know how to apply a function once I have written it using what else but...
- The output of Apply can be a vector or array or list of values
- The input of Apply is always a matrix. So make sure to insert a "as.matrix" before anything you want to apply your function on.
Basic syntax:
apply(as.matrix(some object which is not a matrix already), Starting Row, function)
For eg.
Out <- apply(as.matrix(list of element), 1, function)
Permalink: Writing_Functions_in_R_Part_2.html
Words: 113
Location: Buffalo, NY
Last Modified: 10/26/11 10:43
Category: linux
10/25/11 09:57 - ID#55378
Zim - Invading my desktop!
Zim is like a wiki, todo checklist, notebook, LaTeX scratchpad all rolled into one! I think I like the todo checklist and LaTeX parts the best. It has this nifty dvipng plugin that generates small png images for equations. You could just take these equation pngs and stick them anywhere.
Like here.
Not only is it invading my desktop, it is invading the cloud. I set up cloud sync of my notebooks through SME sync to Skydrive. Now, that is one fail-proof hyperlinked universal brain dump.
Permalink: Zim_Invading_my_desktop_.html
Words: 105
Location: Buffalo, NY
Last Modified: 10/25/11 10:11
Category: linux
10/25/11 02:33 - ID#55375
Change ANY Gnome 3 shortcut
Turn on shortcut editing
gsettings set org.gnome.desktop.interface can-change-accels true
Hover mouse over the menu entry
Press Delete
Press new shortcut combo
Turn off shortcut editing
gsettings set org.gnome.desktop.interface can-change-accels false
Permalink: Change_ANY_Gnome_3_shortcut.html
Words: 52
Location: Buffalo, NY
Last Modified: 10/25/11 02:33
Category: r statistics
10/24/11 07:21 - ID#55372
Writing Functions in R: Part I
Basic Syntax
NewFunction <- function (input){ answer <- some manipulation with the input answer }
- NewFunction is the name of the new function.
- function is the R function that creates functions.
- input is the "argument" of a function
- { delimits the beginning of the function
- } delimits the end of the function
- the last statement (in this case, just "answer", returns the answer as the output of the function. I could also have said return(answer).
Permalink: Writing_Functions_in_R_Part_I.html
Words: 139
Location: Buffalo, NY
Last Modified: 10/24/11 07:26
Category: linux
10/23/11 05:29 - ID#55370
Alt+Tab Vs. Alt+~ in Gnome 3
Alt + Tab
Switches Applications
and
Alt + ~
Switches Windows
Reclaim the maximize and minimize buttion. Because sometimes, you just don't want to let go of the stylus (or mouse).
gconftool-2 --set /desktop/gnome/shell/windows/button_layout --type string :minimize,maximize,close
Sweet. Two more annoyances banished.
Permalink: Alt_Tab_Vs_Alt_in_Gnome_3.html
Words: 84
Location: Buffalo, NY
Last Modified: 10/25/11 04:30
Category: eating in
10/23/11 01:47 - ID#55369
Make peace with the mucilage.
Permalink: Make_peace_with_the_mucilage_.html
Words: 19
Location: Buffalo, NY
Last Modified: 10/23/11 01:57
Category: linux
10/23/11 11:39 - ID#55367
Linux alternative to TortoiseSVN
TortoiseSVN was so good on windows that I really started to miss its awesome GUI features on linux. The clever thing to do would probably have been to guess that it would be named after some other herbivorous domestic pet. But I found it after a determined search instead. Linux royalty usually scoff at GUI solutions, but to me, they are an invaluable little tool in saving some brainspace and frustrations.
To install RabbitVCS on Fedora 15
sudo yum install rabbitvcs*
BUT. And there is a big BUT.
RabbitVCS won't run in some 64 bit environments
Some distributions, such as 64 bit Fedora, put 64 bit libraries in the /usr/lib64 directory, whereas nautilus-python (the program that lets us extend nautilus) assumes all libraries are in the /usr/lib directory. This is a nautilus-python bug. The current workaround is to create a symlink: ln -s /usr/lib64/libpython2.6.so /usr/lib/libpython2.6.so
That fix didn't work for me because RabbitVCS doesn't work with Nautilus 3.x YET. But the developer posted recently on the blog that a new release is not far away. I can't wait. Command-lining SVN is tedium that I can do without.
Permalink: Linux_alternative_to_TortoiseSVN.html
Words: 211
Location: Buffalo, NY
Last Modified: 10/23/11 06:08
Author Info
Date Cloud
- 12/21
- 12/15
- 02/15
- 01/15
- 11/14
- 08/14
- 04/14
- 02/14
- 11/13
- 07/13
- 09/12
- 08/12
- 07/12
- 04/12
- 03/12
- 02/12
- 01/12
- 12/11
- 11/11
- 10/11
- 09/11
- 08/11
- 07/11
- 06/11
- 05/11
- 04/11
- 03/11
- 02/11
- 01/11
- 12/10
- 11/10
- 10/10
- 09/10
- 08/10
- 07/10
- 06/10
- 05/10
- 04/10
- 03/10
- 02/10
- 01/10
- 12/09
- 11/09
- 10/09
- 09/09
- 08/09
- 07/09
- 06/09
- 05/09
- 04/09
- 03/09
- 02/09
- 01/09
- 12/08
- 11/08
- 10/08
- 09/08
- 08/08
- 07/08
- 06/08
- 05/08
- 04/08
- 12/07
- 11/07
- 10/07
- 09/07
- 08/07
- 07/07
- 06/07
- 05/07
- 04/07
Category Cloud
More Entries
After This
My Fav Posts
- Click the heart at the bottom of anyone's blog entry to add it here ;(