More LoL Skins, Hidden and New, in Patch v1.0.0.94
June 24, 2010 by Reboot · Leave a Comment
Added Skins:
- Goalkeeper Blitzcrank
- All-star Akali
- Striker Ezreal
- Red Card Katarina … O_o
- Blast Zone Heimerdinger
- Riot Squad Singed … MUST HAVE !!!
- Uncle Ryze
- Statue of Karthus
- Minuteman Gankplank
- Lollipoppy
So that’s like 7 unannounced additional skins?!?
I did not even put in Kog’Maw’s skins (which do not seem very special, just a re-paint in my opinion)
and putting up Kog’Maw up for 6300 IP ……. BOOoOOoooO BOOOOOOOO -.-
![]() |
Advanced Date Pick Restriction with the jQuery UI Datepicker
June 22, 2010 by Reboot · Leave a Comment
You can implement the “beforeShowDay” method to restrict the days which can be selected from the datepicker.
As noted in the sourcecode:
beforeShowDay: null, // Function that takes a date and returns an array with
// [0] = true if selectable, false if not, [1] = custom CSS class name(s) or ”,
// [2] = cell title (optional), e.g. $.datepicker.noWeekends
An example (you can also run this code at jsfiddle):
[/sourcecode]
$(function(){
$('#picker').datepicker({
beforeShowDay: function(date) {
var t = new Date();
t = new Date(t.getFullYear(), t.getMonth(), t.getDate());
var days = [];
for (var i=0;i<7;i++) {
t.setDate(t.getDate() + 1);
days.push(t.getTime());
}
var day = date.getTime();
return [$.inArray(day,days) > -1,''];
},
onSelect: function(dateText, inst) {
$("#pickerresult").html($(this).datepicker( "getDate").toString());
}
});
});
[sourcecode]
Guild Wars 2 : Warrior Skill Gameplay (GameTrailers)
June 16, 2010 by Reboot · Leave a Comment
Awesome!!!
Zend OAuth + Hyves … ERROR
June 15, 2010 by Reboot · Leave a Comment
Although Zend OAuth works with all the other social networks, it doesn’t play very well with the dutch social network called Hyves. As a work-around the library from Mark Bekkers can be used: Open & Sociaal Hyves PHP Library
League of Legends: Upcoming Skins Exposed Early by Accident?
June 9, 2010 by Reboot · Leave a Comment
Some of the champion details already show new skins which are not in the shop yet, nor were they announced!!
And they are:
- Alien Invader Heimerdinger
- Medieval Twitch
- Molten Rammus
- Galactic Nasus
![]() |
| From Blog |



