Skip to content

Instantly share code, notes, and snippets.

View engtuncay's full-sized avatar
💭
Coding

Tuncay Orak engtuncay

💭
Coding
View GitHub Profile
@engtuncay
engtuncay / index.html
Created November 14, 2024 12:48
Select Combobox Vanilla Js
<label for="combo2" class="combo-label">Editable Combobox Example</label>
<div class="combo js-combobox">
<input
aria-activedescendant=""
aria-autocomplete="none"
aria-controls="listbox2"
aria-expanded="false"
aria-haspopup="listbox"
id="combo2"
class="combo-input"
@engtuncay
engtuncay / gist:b2f21119ab2368de149ec4e5ea76ce00
Created September 28, 2019 23:46 — forked from itsmattsoria/gistfil1.textile
Mac Terminal Cheat Sheet

SHORTCUTS

Key/Command Description
Tab Auto-complete files and folder names
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + U Clear the line before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + W Delete the word before the cursor
Ctrl + T Swap the last two characters before the cursor
@engtuncay
engtuncay / DatePicker.java
Created March 7, 2018 07:44 — forked from jewelsea/DatePicker.java
Sample DatePicker for JavaFX using jQuery UI
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.beans.property.ReadOnlyStringProperty;
import javafx.beans.property.ReadOnlyStringWrapper;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.event.EventHandler;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEvent;
import javafx.scene.web.WebView;
@engtuncay
engtuncay / Create Cron Job
Created March 7, 2018 07:32
Cron job oluşturmak için
JobDetail job = JobBuilder.newJob(jobclass).withIdentity(name, grupname).build();
Trigger trigger = TriggerBuilder.newTrigger().withIdentity(triggername, grupname)
.withSchedule(CronScheduleBuilder.cronSchedule(cronmask)).build();