Skip to content

Instantly share code, notes, and snippets.

View Abdurahman-hassan's full-sized avatar
👨‍💻

Abdelrahman hassan hamdy Abdurahman-hassan

👨‍💻
View GitHub Profile
@cyamba
cyamba / .java
Created April 14, 2022 14:57
two_sum
package com.yambacode.sandbox;
import java.util.Arrays;
import java.util.stream.IntStream;
public class Main {
public static Integer[] solve_1(int target, Integer... nums) {
for (int i = 0; i < nums.length - 1; i++) {
for (int j = i + 1; j < nums.length; j++) {
@bradtraversy
bradtraversy / ssh.md
Last active June 22, 2024 22:22
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test