Skip to content

Instantly share code, notes, and snippets.

View cagatayyigit's full-sized avatar
🎯
Focusing

Çağatay Yiğit cagatayyigit

🎯
Focusing
View GitHub Profile
# apt-get install
sudo apt-get update
# For ubuntu 14.04
sudo apt-get install -y xserver-xorg-video-dummy-lts-trusty
# For ubuntu 16.04
sudo apt-get install -y xserver-xorg-video-dummy-lts-willy
# Copy the xorg.conf to `/etc/X11/xorg.conf`.
wget -P /etc/X11 https://gist.githubusercontent.com/mangoliou/ba126832f2fb8f86cc5b956355346038/raw/b6ad063711226fdd6413189ad905943750d64fd8/xorg.conf
@dhammikamare
dhammikamare / Contest_Guide.md
Last active April 15, 2024 05:35 — forked from shashank21j/Contest_Guide.md
Tutorial for create your own contest on HackerRank.
@jewelsea
jewelsea / Main.java
Last active March 13, 2024 22:49
Small JavaFX framework for swapping in and out child panes in a main FXML container. Code is for Java 8+.
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
import java.io.IOException;
/**
* Main application class.