This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input.date-picker::-webkit-input-placeholder::before { font-family: fontAwesome; content: '\f073 '; color: inherit } | |
input.date-picker::-moz-placeholder::before { font-family: fontAwesome; content:'\f073'; color: inherit } /* firefox 19+ */ | |
input.date-picker:-ms-input-placeholder::before { font-family: fontAwesome; content:'\f073'; color: inherit } /* ie */ | |
input.date-picker:-moz-placeholder::before { font-family: fontAwesome; content:'\f073'; color: inherit } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.filter('daterange', function() { | |
return function(items, startDate, endDate) { | |
var filteredResult = []; | |
// Parse from the filter format 'dd/mm/yyyy' (Turkish culture) | |
function parseDateFromFilter(strDate) { | |
var parts = strDate.split('/'); | |
return new Date(parts[2], parts[1] - 1, parts[0]); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#usage : hi<tab> | |
'.source.gfm': | |
'Highlight Markup': | |
'prefix': 'hi' | |
'body': '{% highlight $1 %}\n{% endhighlight %}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# Author : Turhan Coskun | |
# Name : TCKN Number Verification - TCKN Dogrulama | |
# Usage : ruby tckn_verifier.rb <turkish citizenship number> | |
### | |
raw_id_number = ARGV[0] # Assign the first argument of the program to the variable | |
# Extensions of the String class | |
class String |
NewerOlder