Friday, September 28, 2012

How to navigate backwards on VS 2010

Remember the last position on VS 6.0?

This is the command that you have to use :

Press Ctrl+- at once!

Friday, July 20, 2012

Website to Learn HTML & CSS

If you, like me just get the CSS file done by the designer and wants to learn more, this website is pretty good.

There are videos very well done, Jeffrey way (the instructor) is very didactic.

It seems pretty basic, but for me I’ll finally learn how to create a proper css file! At least hope so, I’m still on day 3!

Here is the link:  http://learncss.tutsplus.com/lesson/your-code-editor/

Tuesday, June 26, 2012

Blekko - removing this plague from firefox

Firefox has a way to remove this plague if you have it.

Blekko is a redirector that is hijacking your browser and changing its configuration.
You probably got  this thing when you were downloading something from CNET (coming as an additional tool) or was accessing some website with malicious domains. 
This works as an engine, but redirects you to some malicious websites, in order to gain traffic for spam websites, containing fake ads or scams! Go to this page.

And you'll be able to choose what solution works best for you. In my case, I did the following (because I knew that the issue was on ff, chrome was working fine).

on the address bar, type about: config.
You'll get a warning message, go ahead (but be careful or else)!!!
On the search field, type "keyword"
You'll see the blekko redirection on the "keyworld.url" item. Click twice and change it to http://www.google.com/search?q=.
Close the tab (please don't do anything else) and try to type something on the address bar. It'll go to google (Hopefully).

Just reminding, that worked on my case, maybe it could not work on yours!!!

Wednesday, January 11, 2012

sp_helptext for views in Oracle

So easy and I didn’t know...

 

select VIEW_NAME, TEXT
from all_views     
where
      VIEW_NAME =
'MYVIEW'