Skip to content

Instantly share code, notes, and snippets.

View Eomerx's full-sized avatar

Ömer Aslanbakan Eomerx

View GitHub Profile
@Eomerx
Eomerx / window-size-print.js
Last active July 30, 2019 13:05
Window Size Print & Browser Variables
(function(window, document, undefined) {
//=============================================
// PRINT WINDOW SIZE =
//=============================================
var isButtonInsertedToBody;
var windowSizePrint = function() {
if (!isButtonInsertedToBody) {
document.body.insertAdjacentHTML("beforeend", '<div id="window-size-info"><div><span class="w"></span> X <span class="h"></span></div><style type="text/css">#window-size-info{z-index:9999999;position:fixed;right:0px;bottom:30px;padding:3px 8px;font-family:"Open Sans","Lato",Tahoma;font-size:15px;color:#fff;background-color:#000;box-shadow:0 0 0 2px#fff;}</style></div>');
isButtonInsertedToBody = true;
}
@Eomerx
Eomerx / validate-tc-id.js
Last active October 13, 2022 17:47
Validate TC ID
//=======================================
// CHECK TC ID =
//=======================================
var checkTcNum = function(value) {
value = value.toString();
var isEleven = /^[0-9]{11}$/.test(value);
var totalX = 0;
for (var i = 0; i < 10; i++) {
totalX += Number(value.substr(i, 1));
}
@Eomerx
Eomerx / less-space.less
Last active March 14, 2018 11:42
Less Space - Responsive CSS Positioning Classes
//====================================
// FOR LOOP =
//====================================
.for(@i, @n) {
.-each(@i)
}
.for(@n) when (isnumber(@n)) {
.for(1, @n)
}
@Eomerx
Eomerx / sass-space.scss
Last active July 26, 2022 14:53
SASS Space - Responsive CSS Positining Classes built with SASS
// change to false if its not imported into bootstrap
$use-bootstrap: false;
// margin and padding values array
$space-values : (
5,
10,
15,
20,
30,
@Eomerx
Eomerx / package.json
Created October 2, 2015 16:36
Packages.json Npm packages
{
"version": "1.0.0",
"name": "blank-less",
"publishConfig": {
"proprietary-attribs": false
},
"description": "Blank Less Template",
"author": "Ömer Aslanbakan",
"repository": {
"type": "git",