Skip to content

Instantly share code, notes, and snippets.

View oguzhankircali's full-sized avatar

Oguzhan Kircali oguzhankircali

View GitHub Profile
@jtiala
jtiala / alfred_iterm_new_window.applescript
Last active March 24, 2021 15:58
Open new iTerm window for each Alfred terminal command
-- open new iTerm window for each Alfred terminal command
-- for iTerm 3.1.1+
-- based on script by Sinan (https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred)
on alfred_script(q)
if application "iTerm2" is running or application "iTerm" is running then
run script "
on run {q}
tell application \"iTerm\"
activate
@pmkay
pmkay / top-brew-packages.txt
Last active May 18, 2024 16:15 — forked from r5v9/top-brew-packages.txt
Top homebrew packages
node: Platform built on V8 to build network applications
git: Distributed revision control system
wget: Internet file retriever
yarn: JavaScript package manager
python3: Interpreted, interactive, object-oriented programming language
coreutils: GNU File, Shell, and Text utilities
pkg-config: Manage compile and link flags for libraries
chromedriver: Tool for automated testing of webapps across many browsers
awscli: Official Amazon AWS command-line interface
automake: Tool for generating GNU Standards-compliant Makefiles
@yasinkuyu
yasinkuyu / daterangepicker.tr.js
Created June 30, 2016 21:19
Daterangepicker Turkish
//daterangepicker.js
$(function() {
function cb(start, end) {
$('#reportrange span').html(start.format('MMMM D') + ' - ' + end.format('MMMM D'));
}
cb(moment().subtract(29, 'days'), moment());
$('#reportrange').daterangepicker({