I hereby claim:
- I am TyeolRik on github.
- I am tyeolrik (https://keybase.io/tyeolrik) on keybase.
- I have a public key whose fingerprint is FADF 0600 D598 6E00 ACEE 10B4 2BD6 88FB 5D17 1F06
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include <iostream> | |
#include <cstdlib> | |
#include <ctime> | |
double makeRandomDouble() { | |
return (double)rand() / RAND_MAX; | |
} | |
int main() | |
{ |
PHP is a popular general-purpose scripting language that is especially suited to web development. | |
Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world. | |
Download | |
7.1.33·Release Notes·Upgrading | |
7.2.24·Release Notes·Upgrading | |
7.3.11·Release Notes·Upgrading | |
31 Oct 2019 | |
PHP 7.4.0RC5 released! |
#!/bin/sh | |
sudo useradd test | |
sudo passwd test | |
sudo yum install iptables-services git openssl-devel pam-devel zlib-devel autoconf automake libtool -y | |
sudo git clone https://github.com/anilgulecha/shellinabox.git |
#!/bin/sh | |
sudo wget https://gist.githubusercontent.com/TyeolRik/61516b992e9188dc0ace842f3832dfe1/raw/c0221cbae3a8101d3f148ba5b615e713ef31ace1/auto.sh | |
sudo chmod 777 auto.sh | |
expect <<EOF | |
set timeout -1 |
Public Sub SaveAttachments() | |
Dim objOL As Outlook.Application | |
Dim objMsg As Outlook.MailItem 'Object | |
Dim objAttachments As Outlook.Attachments | |
Dim objSelection As Outlook.Selection | |
Dim i As Long | |
Dim lngCount As Long | |
Dim strFile As String | |
Dim strFolderpath As String | |
Dim strDeletedFiles As String |
#!/usr/bin/env ruby | |
=begin | |
--- HOW TO USE --- | |
In Windows, | |
> ruby newpost "Category Title" | |
Only First word is regarded as category. After second word, all is substring of title. | |
This Ruby Script look up your blog posts (./_posts/*.md) and count how many article with same category. | |
This returns YYYY-MM-DD-category-number-title.md file. | |
=end |
// This tasks.json is for C++. | |
// In *.cpp, Just Press "Ctrl + Shift + B" for Compile, Run, Delete Compiled Binary File AT ONCE. | |
{ | |
"version": "2.0.0", | |
"type": "shell", | |
"tasks": [ | |
{ | |
"label": "save and compile for C++", | |
"command": "g++", | |
"args": [ |
#-*- coding:utf-8 -*- | |
# Python 3.8 | |
# need Libraries: beautifulsoup4, requests | |
""" | |
This python file is for getting problem number and making .cpp files automatically in one page | |
This Programs Returns | |
─ FolderName | |
├─ 1234.cpp | |
├─ 2345.cpp |
# example Dockerfile | |
FROM ubuntu:20.04 | |
RUN cd /etc/apt && \ | |
sed -i 's/archive.ubuntu.com/ftp.kaist.ac.kr/g' sources.list | |
RUN apt-get update && apt upgrade |