Nico baruna

professional web developer

working with “Hardcore” sitecore template

to day is a long day , my site core installation wont run i dont know why all expert already help me but the luck seems not on my side today

bu luckily , my friend help me he told me to just finish my xhmtl template then he’ll convert it to sitecore template with his PC ( he got runing sitecore in his pc )

here’s the look of that thing

the most challenging part is the footer , this part is little bit tricky i need to make 2 layer of backgrounds in order to have a gradient and the pattern.

tomorrow is another long day, converting to sitecore and QA starts tomorrow.. wish me luck

Twilight is another word for GAY
failbooking.com

how to toggle slide with specific width

see the picture , when we click the arrow the content box should shrink to specific width , like this

when i try to toggle slide my box to specific width i got problem  because jquery animate() function only give us slide-to-zero-width option or slide-to-specific-width but we cant make it toggle

ex :

$(“Selector”).animate(function(){

width : toggle;

});

or

$(“Selector”).animate(function(){

width : 25;

});

this make me mad , and frustrated i think there’s must be an easy way to do this, then i try jquery toggle() function and Voila!! its work :

$(‘.toggle’).toggle(function() {
                                         var $parent = $J(this).parent();   
                                         $parent.animate({
                                          width:’25’
                                         },function(){
                                             $parent.addClass(“minimised”);
                                         });
                                       
              }, function() {
                                         var $parent = $J(this).parent();   
                                         $parent.animate({
                                          width:’325’
                                         });
                                         $parent.removeClass(“minimised”);
                   

              });

$parent.addClass(“minimised”); —> this add new class that flip the arrow image

google map API + twitter GeoTagging API are treat for cheaters ^_^

since twitter release its geotagging API we can retrieve people position from their hand held position (it’s only work if people tweet and activate their “location” feature)  . just get people coordinate , put it to googlemap API then Boom people position is appear at google map.

off course everybody can see where’s your actual position , maybe you want to track your Girlfriend/Boyfriend position you can use twitter to do that.

see people i can see you hahahaha

please try my 0.1 beta version of this twitter API @ http://www.nicobaruna.enfor-studio.com/

The internet has dramatically widened the number of available substitutes. You don’t have to like it, but it’s true. That means you have to work far harder to create work that can’t easily be replaced.
Seth Godin, Accept all substitutes (via 9-bits)
Software is just like sex it’s better when it’s free