Journaling on estrip is free and easy. get started today

Last Visit 2021-12-26 23:55:06 |Start Date 2007-04-01 15:09:25 |Comments 9,863 |Entries 1,011 |Images 1,430 |Sounds 30 |SWF 1 |Videos 219 |Mobl 27 |Theme |

Category: linux

10/30/11 02:15 - ID#55410

Cloud-backup of files on Linux.

I tried dropbox sometime back for many months. I didn't quite like it because I felt like I couldn't control many aspects. In addition, I ended up deleting many of my files due to some stupid settings confusion. I bet they have more options now, but I don't feel like going back. So I signed up for 25 gigs of free space from... *gasp* Microsoft's Skydrive. I figured if they are giving away this much space in the cloud for free, why not twist it around and use it as a cloud for Linux so that the joke is actually on them.

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.

print addComment

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

Dedicated to (e:fing). ;-)
image
print add/read comments

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?

at pricerite?
  • 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
image

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!
print add/read comments

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

I skipped all the in-between bits of writing functions. Maybe I will return to them in the future.

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...
APPLY!!!

  • 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)
print addComment

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!

I am finding Zim (the desktop wiki-like note-taking software) SO useful for random on-the-fly notetaking!
image

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.
image

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.

print add/read comments

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

I am making shortcuts left, right and centre in the Gnome 3 interface.

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


print addComment

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

I have been learning how to write functions in R. They are core to learning the language instead of just using what other people have written for their purposes. They make tailored manipulations in R easier. I am going to document the function writing system here, step by step so I can progressively write better functions and yet not forget the basics

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).


print addComment

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

It took me all this while to find out that one of my greatest annoyances in Gnome 3 is actually solvable by a simple change in position of my finger while typing the alt-tab combination.


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.

print add/read comments

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.

Sometimes you can only pamper it with so much olive oil.

image

It's delicious sans mucilage or not.
print addComment

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

I found it. At last.

image

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.

print add/read comments

Permalink: Linux_alternative_to_TortoiseSVN.html
Words: 211
Location: Buffalo, NY
Last Modified: 10/23/11 06:08


Search

Chatter

New Site Wide Comments

sina said to sina
yes thank you!
Well, since 2018 I am living in France, I have finished my second master of science,...

paul said to sina
Nice to hear from you!! Hope everything is going great....

paul said to twisted
Hello from the east coast! It took me so long to see this, it might as well have arrived in a lette...

joe said to Ronqualityglas
I really don't think people should worry about how their eyelids work. Don't you?...