Skip to content

Instantly share code, notes, and snippets.

View acyuta's full-sized avatar
🌐
Digital Nomad

Akim Glushkov acyuta

🌐
Digital Nomad
View GitHub Profile
@acyuta
acyuta / mac-setup-redis.md
Created December 6, 2021 10:19 — forked from tomysmile/mac-setup-redis.md
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@acyuta
acyuta / Test.java
Created January 31, 2014 06:30 — forked from skrb/Test.java
import java.io.IOException;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Test extends Application {