Skip to content

Instantly share code, notes, and snippets.

View FinalAngel's full-sized avatar
🖐️
>

Angelo Dini FinalAngel

🖐️
>
View GitHub Profile
@FinalAngel
FinalAngel / software_installation.rst
Created January 4, 2012 13:57
Software installation instructions

Software Installation

Configure WLAN/WIFI

Connect to divio-data

@FinalAngel
FinalAngel / osx_developer_installation.rst
Last active September 29, 2015 06:28 — forked from stefanfoulis/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.6 Snow Leopard or 10.7 Lion.

Brew User

Create the user "brew" with the Standardpassword. Open a console as brew or switch to the brew user using sudo su - brew.

@FinalAngel
FinalAngel / get_youtube_id_regex.js
Created February 21, 2012 14:45
get youtube id regex
/(youtu(?:\.be|be\.com)\/(?:.*v(?:\/|=)|(?:.*\/)?)([\w'-]+))/i
Tested examples:
http://www.youtube.com/user/Scobleizer#p/u/1/1p3vcRhsYGo
http://www.youtube.com/watch?v=cKZDdG9FTKY&feature=channel
http://www.youtube.com/watch?v=yZ-K7nCVnBI&playnext_from=TL&videos=osPknwzXEas&feature=sub
http://www.youtube.com/ytscreeningroom?v=NRHVzbJVx8I
http://www.youtube.com/user/SilkRoadTheatre#p/a/u/2/6dwqZw0j_jY
http://youtu.be/6dwqZw0j_jY
http://www.youtube.com/watch?v=6dwqZw0j_jY&feature=youtu.be
@FinalAngel
FinalAngel / osx_developer_installation.rst
Created August 16, 2012 07:50 — forked from stefanfoulis/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Homebrew

@FinalAngel
FinalAngel / osx_developer_installation.rst
Created August 16, 2012 11:22 — forked from stefanfoulis/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.8 Mountain Lion.

Requirements

  1. Install XCode
@FinalAngel
FinalAngel / osx_developer_installation.rst
Created August 20, 2012 12:03 — forked from stefanfoulis/osx_developer_installation.rst
Instructions on how to setup an OSX developer machine for (python/django) development

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Homebrew

================= Online Styleguide

(replaces "Master Template")

The Online Styleguide is a uniformed compendium for project managers, web publisher, designers or developers of how to maintain, update or further develop a website. It gives an insight of formatting, use of space and components accross the online presence. It is devided into three essential parts.

1.1 Typography

OSX Developer System installation

This guide assumes a fresh install of Mac OSX 10.7 Lion.

Brew User

@FinalAngel
FinalAngel / django-cms-frontend.js
Last active December 20, 2015 08:59
Django CMS Frontend Tipps & Tricks
// allow toolbar items to be visible on small screen sizes
$('.cms_toolbar').height(60).find('.cms_toolbar-right').css('display', 'block !important');
@FinalAngel
FinalAngel / FeatureGallery.js
Last active December 20, 2015 11:09
class.js: FeatureGallery example
var FeatureGallery = new Class(Cl.Gallery);
FeatureGallery.extend({
'move': function (index, direction) {
this.parent(index, direction);
$(window).trigger('resize');
}
});
new FeatureGallery('#gallery_{{ instance.id }}', {
'timeout': parseInt('{{ instance.timeout }}') * 1000,