Skip to content

Instantly share code, notes, and snippets.

View fatihacet's full-sized avatar
🤙

Fatih Acet fatihacet

🤙
View GitHub Profile
@fatihacet
fatihacet / fire-rainbow.css
Created October 22, 2012 07:00
Color scheme for fire rainbow addon.
.panelNode-script { background-color: #EFEFE7; color: black; cursor: default; font-family: Monaco,Monospace,Courier New !important; font-size: 12px; }
.sourceRow.hovered { background-color: #EEEEEE; }
.sourceLine { background: none no-repeat scroll 2px 0 #EEEEEE; border-bottom: 1px solid #EEEEEE; border-right: 1px solid #CCCCCC; color: #888888; }
.sourceLine:hover { text-decoration: none; }
.scriptTooltip { background: none repeat scroll 0 0 LightYellow; border: 1px solid #CBE087; color: #000000; }
.sourceRow[exeline="true"] { background-color: lightgoldenrodyellow; outline: 1px solid #D9D9B6; }
.js-comment { color: gray; font-size: 11px; }
.whitespace { color: blue; }
.js-variable { color: #7C3A99; font-size: 11px; }
.js-punctuation { color: black; font-size: 11px; }
@fatihacet
fatihacet / numberonly.js
Created October 3, 2012 14:06
number only field
numericField = function (elementId) {
var allowed = [0, 8];
for (var i = 48; i < 58; i++) {
allowed.push(i);
}
$("#" + elementId).keypress(function(e){
if (!(allowed.indexOf(e.which) >= 0)) {
e.preventDefault();
@fatihacet
fatihacet / entity-lookup.txt
Created September 13, 2012 12:44
HTML Entity Chars Lookup Page
http://llizard.etherwork.net/cwc/charactmap.html
@fatihacet
fatihacet / sticky-footer.html
Created September 5, 2012 13:21
sticky footer
@fatihacet
fatihacet / history.js
Created August 29, 2012 23:11
Implementing history navigate in Google Closure Library
var history = new goog.History(false, '', document.getElementById('history_input'));
goog.events.listen(history, goog.history.EventType.NAVIGATE, function() {
console.log(history.getToken());
});
history.setEnabled(true);
@fatihacet
fatihacet / index.html
Created August 25, 2012 15:45
Using html special characters to make some stars
<ul>
<li><a href="#">&#9733</a></li>
<li><a href="#">&#9733</a></li>
<li><a href="#">&#9733</a></li>
<li><a href="#">&#9733</a></li>
<li><a href="#">&#9733</a></li>
</ul>
@fatihacet
fatihacet / Module1.js
Created August 19, 2012 05:17
JavaScript module loading for seperate pages.
var Module1 = function() {
this.message = 'Hello World from Module1';
this.init();
};
Module1.prototype.init = function() {
console.log(this.message);
};
@fatihacet
fatihacet / sample-vhost.conf
Created August 18, 2012 22:19
vhost defination
#dev.site.com
<VirtualHost *:80>
ServerAdmin fatihacet.com
DocumentRoot "/Users/fatih/Sites/dev.site.com/source/public"
ServerName dev.site.com
ServerAlias dev.site.com
SetEnv APPLICATION_ENV "development"
<Directory "/Users/fatih/Sites/dev.site.com/source/public">
Options Indexes FollowSymLinks
AllowOverride All
@fatihacet
fatihacet / base-url.js
Created November 22, 2011 16:20
returns base url from a string url.
var u = 'www.loremipsum.com';
var p = /^(http:\/\/)?([^\/]+)/i
u.match(p)[2]
// http://www.loremipsum.com -> www.loremipsum.com
// www.loremipsum.com -> www.loremipsum.com
// www.loremipsum.com/dolor/sit/amet -> www.loremipsum.com
@fatihacet
fatihacet / code.js
Created October 30, 2011 22:05
Convert number to nearest 10x digit
// Divide by 10 and round it, then multiply by 10.
var x = 136;
console.log(Math.round(x / 10) * 10);