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 / 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;