Skip to content

Instantly share code, notes, and snippets.

View seyhunak's full-sized avatar
πŸ†
Polyglot Programmer

Seyhun AkyΓΌrek seyhunak

πŸ†
Polyglot Programmer
View GitHub Profile
@seyhunak
seyhunak / styler.xml
Created November 15, 2011 01:36 — forked from codegoalie/styler.xml
Notepad++ styles
<?xml version="1.0" encoding="Windows-1252" ?>
<NotepadPlus>
<LexerStyles>
<LexerType name="actionscript" desc="ActionScript" ext="">
<!--
<WordsStyle name="DIRECTIVE" styleID="19" fgColor="A001D6" bgColor="363636" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
-->
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFFFF" bgColor="363636" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="FUNCTION" styleID="20" fgColor="95004A" bgColor="363636" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="363636" fontName="" fontStyle="0" fontSize="" />
@seyhunak
seyhunak / Backbone.View.Autocomplete.js
Created October 26, 2011 15:01 — forked from marksteve/Backbone.View.Autocomplete.js
Backbone View for jQuery UI Autocomplete inputs
var Autocomplete = Backbone.View.extend({
initialize: function(options) {
options = _.extend({}, options);
_.bindAll(this, 'refresh');
// Input element
this.input = options.input;
// Choices collection
this.choices = options.choices;
// Selected collection
this.selected = options.selected;
@seyhunak
seyhunak / dateinput_converter.js
Created October 20, 2011 17:59 — forked from pwim/dateinput_converter.js
Convert Rails style date input to jQuery Tools' dateinput
// Based on http://snipt.net/boriscy/datetime-jquery-formtastic/
$.tools.dateinput.localize("ja", {
months: '1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月',
shortMonths: '1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月',
days: 'ζ—₯ζ›œζ—₯,ζœˆζ›œζ—₯,η«ζ›œζ—₯,ζ°΄ζ›œζ—₯,ζœ¨ζ›œζ—₯,ι‡‘ζ›œζ—₯,εœŸζ›œζ—₯',
shortDays: 'ζ—₯,月,火,ζ°΄,木,金,土'
});
$.tools.dateinput.conf.format = 'yyyy-mm-dd';
@seyhunak
seyhunak / rails_3_1_beta_1_changes.md
Created May 22, 2011 12:16 — forked from ryanb/rails_3_1_rc4_changes.md
The Changelogs for Rails 3.1 Beta 1

Railties 3.1 Beta 1

  • The -j option of the application generator accepts an arbitrary string. If passed "foo", the gem "foo-rails" is added to the Gemfile, and the application JavaScript manifest requires "foo" and "foo_ujs". As of this writing "prototype-rails" and "jquery-rails" exist and provide those files via the asset pipeline. Default is "jquery". [fxn]

  • jQuery is no longer vendored, it is provided from now on by the jquery-rails gem. [fxn]

  • Prototype and Scriptaculous are no longer vendored, they are provided from now on by the prototype-rails gem. [fxn]

  • The scaffold controller will now produce SCSS file if Sass is available [Prem Sichanugrist]