Skip to content

Instantly share code, notes, and snippets.

View jsdosanj's full-sized avatar
🏠
ਵਾਹਿਗੁਰੂਜੀਕਾਖਾਲਸਾਵਾਹਿਗੁਰੂਜੀਕੀਫਤਹਿ

Jasvant Singh Dosanjh jsdosanj

🏠
ਵਾਹਿਗੁਰੂਜੀਕਾਖਾਲਸਾਵਾਹਿਗੁਰੂਜੀਕੀਫਤਹਿ
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jsdosanj on github.
  • I am jsinghd (https://keybase.io/jsinghd) on keybase.
  • I have a public key ASDZJKrvaTnafk0akifDl2BnubXUmdaV0eMEO_RopqryOAo

To claim this, I am signing this object:

@jsdosanj
jsdosanj / create-mint-sh
Created October 5, 2019 18:37 — forked from gildas/create-mint-sh
Create Linux Mint USB on Mac OS/X
#! /usr/bin/env bash
# Insert a USB key.
# if needed initialize it with MS/DOS FAT and MBR
# Download the Mint ISO image
# Convert the ISO -> IMG
hdiutil convert -format UDRW -o linuxmint-17.3-cinnamon-64bit linuxmint-17.3-cinnamon-64bit.iso
# Run a diskutil list to know the device for the USB key, e.g.: /dev/disk3
@jsdosanj
jsdosanj / MovementEventsDemo.java
Created October 31, 2018 15:08 — forked from jewelsea/MovementEventsDemo.java
JavaFX sample of moving a shape around on the screen in response to key and mouse presses.
import javafx.animation.TranslateTransition;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.control.Label;
import javafx.scene.input.*;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;