Skip to content

Instantly share code, notes, and snippets.

View YacineDeghaies's full-sized avatar

Yasine Deghaies YacineDeghaies

View GitHub Profile
@YacineDeghaies
YacineDeghaies / gist:62f2d146c2ee4736107d59ea55c6a43b
Created July 12, 2021 11:11 — forked from speric/gist:6096965
vimtutor Lesson Summaries
Lesson 1 SUMMARY
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes.
@YacineDeghaies
YacineDeghaies / OverlayIt.java
Created May 17, 2021 01:54 — forked from jewelsea/OverlayIt.java
Generates lots of shapes off of the JavaFX thread then composites them in a JavaFX Scene
import javafx.animation.FadeTransition;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.concurrent.Service;
import javafx.concurrent.Task;
import javafx.concurrent.WorkerStateEvent;
import javafx.event.ActionEvent;