Skip to content

Instantly share code, notes, and snippets.

@yclim95
yclim95 / javaMultiTreadingPart1.md
Last active January 4, 2024 05:36
Java Multi-Threading Part I

#Java Multi-Threading Part I

##Lesson1 : Basic Threads ###1. Extends Thread

/*
 * Basic Threads
 * Run Concurently(Simultaneously)
 */
@yclim95
yclim95 / javaMultiTreadingPart2.md
Last active November 5, 2023 18:13
Java Multi-Threading Part II

#Java Multi-Threading Part II

##Lesson4 : Thread Pools

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

/*
 * Thread Pools => Managing Lock Threads @ same time 
@yclim95
yclim95 / android-remove-apps-without-rooting.md
Last active August 2, 2023 03:19
Android remove pre-installed apps without ROOTING
@yclim95
yclim95 / README.md
Last active May 30, 2023 12:05
42KL
@yclim95
yclim95 / README.md
Created April 28, 2022 02:49
42 Shell00

Ex00

mkdir ex00
cd ex00
vim z
enter "Z"

Ex01

@yclim95
yclim95 / README.md
Last active April 30, 2023 09:01
For Teaching (FrontEnd)

Console (JS)

document.querySelector('img')
const ourImage = document.querySelector('img');
ourImage.setAttribute('src', '');
ourImage.setAttribute('width', '100');
@yclim95
yclim95 / README.md
Last active April 9, 2023 11:26
C00

Ex00

main.c

/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   main.c                                             :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
@yclim95
yclim95 / level0.md
Last active February 12, 2023 15:23
42 Practice Test - Level0

1. Level 0-1

Assignment name  : aff_a
Expected files   : aff_a.c
Allowed functions: write
--------------------------------------------------------------------------------

Write a program that takes a string, and displays the first 'a' character it
encounters in it, followed by a newline. If there are no 'a' characters in the
@yclim95
yclim95 / javaMultiThreading.md
Last active October 20, 2022 14:12
Java MultiThreading
@yclim95
yclim95 / README.md
Last active June 23, 2022 03:22
C01

Ex00

main.c

/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   main.c                                             :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: lyao-che <lyao-che@student.42kl.edu.my>    +#+  +:+       +#+        */