Skip to content

Instantly share code, notes, and snippets.

View dickygiancini's full-sized avatar
:atom:
Resting

Dicky Giancini dickygiancini

:atom:
Resting
View GitHub Profile
@dickygiancini
dickygiancini / notelp.php
Created April 7, 2022 08:26
Daftar No Telp Indonesia (From https://gist.github.com/emsifa/23ac71754d3b9c78d273) Clean structure version
<?php
// cleaning structure from https://gist.github.com/emsifa/23ac71754d3b9c78d273
return [
"subulussalam" => "0627",
"kutacane" => "0629",
"aceh tenggara" => "0629",
"langsa" => "0641",
"blang kejeren" => "0642",
"gayo lues" => "0642",
@dickygiancini
dickygiancini / main2.dart
Last active February 5, 2021 09:23
New Ablation. more class, method studies
void main() {
var student1 = Student();
var dataId = student1.id = 1;
var dataName = student1.name = "Tom";
print("The id is ${dataId} and the name is ${dataName}");
print("");
student1.study();
@dickygiancini
dickygiancini / main.dart
Last active February 5, 2021 08:56
My first actual dart only program after doing some Flutter. It's an ablation so you prob don't know much
int below50(int a, int b){
int calc = a + b;
return calc;
}
List somePlanet() => ["Merc", "Ven", "Earth"];
String scoreChecker(int c, int d){