Skip to content

Instantly share code, notes, and snippets.

View realyukii's full-sized avatar
👀
Observing the pattern

ReYuki realyukii

👀
Observing the pattern
View GitHub Profile
@realyukii
realyukii / ringkasan.md
Last active September 27, 2023 10:24
UI UX Summarize

Pardon me for the paper that isn't well formed. Please feel free to add additional information.

default setup UI UX design system guideline:

  • typography | max 2 font style (common base style combination are serif (for the content) and sans-serif (for the heading/title)
  • color scheme & color theory like gradient | max ?
  • icon | max 1 style icon, pick your best!
  • consistent components property like:
    • rounded in the shape like card
    • size of headline, content, and etc...
@realyukii
realyukii / hello.c
Created August 19, 2023 02:56
Hello World in C
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
@realyukii
realyukii / maxBinary.go
Created May 27, 2023 06:01
Get max decimal of binary in golang
package main
import (
"fmt"
"math"
)
func main() {
binaryLength := 8
var maxValueInDecimal float64 = 0