Archive for March 2009


Launch A Content Box!

March 27th, 2009 — 12:47pm

Developed by Victor Santafé
Inspired by MoodalBox
Released under MIT License

Something simple for your scripts. Launch A Content Box (LACB) can help you if you need to create content boxes directly from your javascript source using DOM or if you have any other kind of created element you need to show when any event occurs.

Why did I develop a new modal window manager script? because I was asking for a “loading” box in the center of the screen to indicate user that something had being processed in the server and should wait for it to continue, besides I wanted to create boxes as needed, I mean whenever I wanted and directly from source. I decided to develop my own script, when done I discovered it could be something else, so with LACB you can launch whatever you want and a “Loading Box” too.

Developed by a fanatic of simple but functional scripts, I hope it helps you too.

Continue reading »

1 comment » | Projects

After working

March 24th, 2009 — 1:23pm
afterworking.jpg

After working

These are my brother’s shoes, he left them in the yard once he finished working that sunday.  They used to be a cool pair of shoes but they ended up like that and became an interesting pair of shoes for one of my pictures.

Comment » | Curious, Wall of colors

Comfortable colors

March 23rd, 2009 — 1:12pm
comfortablecolors.jpg

Comfortable colors

I use it to do exercise every morning (very, very early in the morning).

Comment » | Curious, Wall of colors

Red

March 22nd, 2009 — 1:09pm
red.jpg

Red

From my backyard.

Comment » | Flowers, Wall of colors

Relaxed

March 21st, 2009 — 1:18pm
relaxed.jpg

Relaxed

This day, saturday, I am in my office, why?, because we have to work some extra hours in order to get some free days for the holly week….. the office is extremly hot, this morning there were too many things to do and some others things are in the queue.

Anyways, I will tray to do the release of the script I mentioned in the last post.

Comment » | Curious, Wall of colors

Posting code in my land

March 20th, 2009 — 1:39pm

Some days ago I was in trouble when trying to insert code into a post, things were working bad in Wordpress’s rich editor, ampersand was making me crazy and I had to look for new plugins to face the problem.

The solution:

Two plugins working together are making my code posting a relaxed experience:

Visual Code Editor:  Makes it possible (and trouble free) to post and edit code snippets in wordpress’s visual editor. Requires WordPress 2.5 – 2.7. * Adds <pre> & <code> to block format menu. * Allows extra attributes for compatibility in some syntax highlighters (ie, <pre lang=”php” line=’5′>). * Allows iFrames. * Unescape WP’s double escaping of &amp;. * Removes extra <pre> tags around SyntaxHighllighter Plus’s blocks. * Works in comments. By Jules Gravinese.

SyntaxHighlighter:  An advanced upload-and-activate WordPress implementation of Alex Gorbatchev’s SyntaxHighlighter JavaScript code highlighting package. See WordPress.com’s “How do I post source code?” for details. By MattViper007Bond, and mdawaffe.

That is.

Comment » | Wordpress

Under the tree

March 20th, 2009 — 1:15pm
underthetree.jpg

Under the tree

What a relaxing image, I can feel the fresh air (here is too hot, my office needs a new air conditioner).

During these nights I have been working in which will be my first mootools script release, I am very excited about it and I hope doing the release today or tomorrow.

I have been very busy in my job, the CMS is taking all my time, I am full concentered in this project and I am learning many interesting things, some of which I will write about in this land.

Comment » | Plants, Wall of colors

Beautiful and simple

March 19th, 2009 — 7:53am
beautifulandsimple.jpg

Beautiful and simple

Do you see the little flowers?

Comment » | Flowers, Wall of colors

Fire

March 18th, 2009 — 6:15pm
fire.jpg

Fire

It is burning green.

Comment » | Flowers, Wall of colors

Making a request with Mootools

March 17th, 2009 — 5:18pm

Making a request with mootools is as easier as next lines are:


function doRequest(){

var data = "param1=1&param2=2";

new Request({
           url:'pagetorequest.java',
           method:'post',
           onSuccess: doOnSucess
         }).send(data);
}

function doOnSucess(response){
          alert("I am happy, and you?");
          alert("the response is:" + response);
}

Comment » | Javascript, Programming languages

Back to top