How to add an OneNote button to Firefox

Update: now there’s an official Firefox extension! 😀

So, there’s no need to mess with this and  manually make a button! I’ll leave the instructions anyways, because are useful for other bookmarklets

——-

OneNote it’s a great Evernote alternative, but has two big problems for me:

  1. The Android app is slow and doesn’t run very smoothly
  2. There isn’t a “save on OneNote” button for Firefox

I solved the first problem with Do Note, for the second here’s the solution:

First of all, install Custom Buttons, the go on the addons setup page: you’ll find a new entry named “Custom Buttons”. Create a new button, and under “startup code” insert this

var link = “javascript:(function(){if(typeof%20OneNoteBookmarklet===’undefined’){window.clipperId=’ON-648444d0-04cf-4206-bf78-bb656ad9cfed’;var%20jsCode=document.createElement(‘script’);jsCode.setAttribute(‘src’,’https://www.onenote.com/Clipper/Root?NoAuth=1′);jsCode.setAttribute(‘id’,’oneNoteCaptureRootScript’);jsCode.setAttribute(‘type’,’text/javascript’);document.body.appendChild(jsCode);}})()”
this.leftclick = function(evt){
openUILink(link);}
this.setAttribute( ‘onclick’, ‘gQuot( event, this )’ );

As icon, save this , then click on “Convert to Base64”, so you can delete it from your drive.

List of online developing environments

Now that there’s the “cloud mania”, there are dozens of websites that allow to code online without install any program on the local computer. That’s perfect for who, like me, uses 2 computers at work, 2 computers at home, and often uses someone else’s computer: the problem is that my free time is limited, but if I don’t have all the tools set up as I need, I can’t develop or continue a project.

In this way I could write something during lunch time break at work, continue it in my train commute, finishing at home.

The most promising online developing environments (cloud IDE) that I found are:

For me, the most important feature is native GIT support. It looks like that all those seven webapps have this feature.

First of all, I will try codeanywhere, because it looks like it’s the only one with an Android app, so, maybe, I can use it from my BlackBerry Z10.

Another “feature” is the price, because almost all my project aren’t generating profits, so I can’t pay big subscription fees. This is the reason I won’t even try Codio, because, if you don’t pay, after 30 days the workspaces become public.

Soon I will publish a review for Codeanywhere 😀

How to use a Resilio Sync code

Resilio Sync it’s a very good alternative to Dropbox or OneDrive, by allowing to share an unlimited amount of files, with any size.

It’s perfect for sharing photos of an event, because it allows you to choose a “read only mode”, so, there’s no risk that someone could delete public files or other.

How does it work? Who starts sharing sends a code like F1C85025ED5843DEA2B428B54A5B9992, which must be imported by who wants to gets the files.

I made a video to show where to insert the code:

The least professional way to shutdown a service

On 30th august, the online notetaking service Catch.com shut down for good.

How did I discover that? By reading this Springpad tweet! (from the competitors!)

 

They closed their service without sending an email to their users, they even didn’t tweet it!! Only reading a tweet by their competitor I got to know (3 days later) that they shut down the service!

Their latest public tweet is this retweet from their co-founder:

(A week before announcing the shutdown you boast about having 3.5 millions users? Bravo…)

And now? I lost 4 years of notes… thanks…

However, they aren’t the only one to behave like that. The TheOldReader guys on 5th august announced that they would have shutdown their website after two weeks. They didn’t send an email to their users also in this case. Hey, I’m in holiday vacation, I don’t check your blog everyday!!!

How to delete an Evernote account

Before finding the perfect app to taking notes on the go (Springpad), I signed up to Evernote. Unfortunately, if you don’t pay the yearly fee, the huge and bloated iPhone/Android app won’t allow you to see notes when offline. Bummer! IMMEDIATE UNINSTALL!

What I can do with an Evernote account? I want to delete it!

The bad news is that you can’t delete it.

You can only disable it and be placed in a “do not contact list”…  at least better than nothing…

Here are the instructions:

  1. Delete every note and personal info, because they won’t delete them
  2. Go at the page https://www.evernote.com/Deactivate.action
  3. Login and confirm
  4. Done

Unfortunately it’s impossible to disable it permanently, if I try to login again, they ask me if I want to restore everything…

evernote

Learn Javascript with Codecademy

If you love to learn how to program in Javascript, you would be happy to know about Codecademy.

Maybe it’s too easy for who has some experience, but in the end it’s useful, and with the gamification of the lessons, it’s funny to collect all the badges, here is my profile, with all badges collected, hahaha).

If you don’t have any programming experience, it’s useful because it explains very well.

If you, like me, learned Javascript by yourself, it’s still useful; maybe sometimes it’s a little bit boring, but there is still something that you didn’t know about, for example I had no idea what a ternary operator was (Even if, during the rest of the course, you are asked to use the classic if-else in situations where the ternary operator will be perfect).

If you are a professional, this course it’s totally useless – maybe you can think about it as a typing lesson 😝

Right now there are only Javascript lessons, in future Python and Ruby courses will be added.