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

jQuery UI Day-Calendar Widget

June 9, 2010 by Reboot · 2 Comments 

I’m working on a generic calendar widget for event scheduling. It’s my first jQuery UI widget experience which I really like thus far. The calendar widget itself is a sort of complete re-implementation of the jQuery-Week-Calendar made by Rob Monie. However the week-calendar widget was end-of-life and no longer maintained.

A repository has been setup at Bitbucket: jQuery Day Calendar

Specs:
- Drag and drop events (which contains various resources).
- Slot-based event containers of variable length (variable event length).
- Both calendar and event components are jQuery UI Widget based.
- Supports the jQuery Theme Roller.
- Support all major browsers.
- Very reusable, should not be a one-trick-pony.
- Using multiple day-calendars would create something similar to the jQuery-Week-Calendar (maybe make another composite UI widget for it even).

DEMO

jQuery Plugins Day Calendar

LoL-Base Signature

June 9, 2010 by Reboot · Leave a Comment 

Signature for RebootGPF (EU)