Skip to content

Instantly share code, notes, and snippets.

View dprilutskii's full-sized avatar
🎯
Focusing

Denis Prilutsky dprilutskii

🎯
Focusing
View GitHub Profile
@dprilutskii
dprilutskii / AdbCommands
Created August 2, 2022 17:09 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader

#Adding an existing project to GitHub using the command line

Simple steps to add existing project to Github.

1. Create a new repository on GitHub.

In Terminal, change the current working directory to your local project.

##2. Initialize the local directory as a Git repository.

git init
@dprilutskii
dprilutskii / AbstractToggleTableItem.java
Created September 23, 2020 11:22 — forked from jaakkju/AbstractToggleTableItem.java
Changing JavaFX table view row styling with non-visible property using row level property binding.
import javafx.beans.property.SimpleBooleanProperty;
/**
* Simple abstract class that has active boolean property
*
* @author jaakkju
*/
abstract public class AbstractToggleTableItem {