Skip to content

Instantly share code, notes, and snippets.

View MkDierz's full-sized avatar
🏠
Working from home

Syibbran Mulaesyi MkDierz

🏠
Working from home
View GitHub Profile
@MkDierz
MkDierz / atom-php.md
Created February 15, 2020 08:35 — forked from natanfelles/atom-php.md
Atom PHP Environment + CodeIgniter 3 & 4

Atom PHP Environment + CodeIgniter 3 & 4

Atom Editor

Install

Download and install Atom Editor:

cd ~/Downloads
@MkDierz
MkDierz / ARRAY.java
Created December 4, 2019 18:57
java array declaration, find max min and total
public static void main(String[] args) {
int [] data = {3, 2, 0, 8, 10, 15, 13, 6};
int max = 0, min = 0, total = 0;
for(int i = 0; i < data.length; i++)
{
if (max < data[i]) {
max = data[i];
}
if (min > data[i]) {
min = data[i];