Skip to content

Instantly share code, notes, and snippets.

View Accieo's full-sized avatar

Accieo

  • Netherlands
  • 22:15 (UTC +02:00)
View GitHub Profile
package cheatsheet.java;
// Imports
import java.util.function.Supplier;
import java.util.stream.Stream;
// This is the basic class of a Java program.
public class Main {
// Classes can hold values, these values are called fields.
@bradp
bradp / setup.sh
Last active August 19, 2024 10:09
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install