Skip to content

Instantly share code, notes, and snippets.

View kkkapuq's full-sized avatar

Joon kkkapuq

View GitHub Profile
🌞 Morning 77 commits ██░░░░░░░░░░░░░░░░░░░ 9.9%
🌆 Daytime 331 commits ████████▉░░░░░░░░░░░░ 42.4%
🌃 Evening 366 commits █████████▊░░░░░░░░░░░ 46.9%
🌙 Night 7 commits ▏░░░░░░░░░░░░░░░░░░░░ 0.9%
@kkkapuq
kkkapuq / 210119_androidError_3.java
Created January 19, 2021 08:37
210119_androidError_3.java
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
@kkkapuq
kkkapuq / 210119_androidError_2.java
Created January 19, 2021 08:36
210119_androidError_2.java
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-v4:22.1.1'
dependencies {
implementation 'com.baoyz.swipemenulistview:library:1.3.0'
}
@kkkapuq
kkkapuq / 210112_split.py
Created January 12, 2021 06:12
210112_mediumpost
def Odd(a,b):
if (a % 2) == 1:
print(a, end=' ')
if a == b:
return
else:
a += 1
Odd(a,b)
a, b = map(int, input().split(','))
@kkkapuq
kkkapuq / 210112_split.py
Created January 12, 2021 06:10
210112_mediumPost
def Odd(a,b):
if (a % 2) == 1:
print(a, end=' ')
if a == b:
return
else:
a += 1
Odd(a,b)
a, b = map(int, input().split())
@kkkapuq
kkkapuq / 210112_split.py
Created January 12, 2021 06:08
210112_medium post
#Find Odd value program with input 2 values
def Odd(a,b):
if (a % 2) == 1:
print(a, end=' ')
if a == b:
return
else:
a += 1
Odd(a,b)
@kkkapuq
kkkapuq / AAPTerror.xml
Created December 10, 2020 07:18
[Error] AAPT Error, Android resource linking failed
<TextView
android:id="@+id/tvHour"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textcolor="00" />
@kkkapuq
kkkapuq / C++
Created December 10, 2020 05:25
How to use Gist in medium easily? - test
#include <iostream>
#using namespace std;
int main(void){
cout << "hello, Gist!";
}