Skip to content

Instantly share code, notes, and snippets.

View HussainDerry's full-sized avatar

Hussain Al-Derry HussainDerry

View GitHub Profile
@HussainDerry
HussainDerry / update-postman.sh
Created June 3, 2018 07:58 — forked from Jekis/update-postman.sh
Download and install the latest version of Postman for Ubuntu. Create .desktop file.
#!/bin/bash
INSTALL_DIR=/opt/postman
if [ "$(whoami)" != "root" ]
then
echo "Sorry, you are not root. Use sudo!"
exit 1
fi
@HussainDerry
HussainDerry / PasswordDialog.java
Last active November 6, 2017 11:20 — forked from drguildo/PasswordDialog
JavaFX password dialog.
import javafx.application.Platform;
import javafx.geometry.Insets;
import javafx.scene.control.ButtonBar.ButtonData;
import javafx.scene.control.ButtonType;
import javafx.scene.control.Dialog;
import javafx.scene.control.PasswordField;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
public class PasswordDialog extends Dialog<String> {
@HussainDerry
HussainDerry / API.md
Created January 24, 2016 05:56 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method: