-
Description
If you execute "install_git_cspro.sh" script and set the environment variables, git would be installed on a shared host and we finally use Git. "cspro" is the name of Sogang Univ.'s linux server computer.
(Why we download curl)We need to use curl for https, so we also install curl. -
How to execute shell script
$ source install_git_cspro.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configure: Setting lib to 'lib' (the default) | |
configure: Will try -pthread then -lpthread to enable POSIX Threads. | |
configure: CHECKS for site configuration | |
configure: CHECKS for programs | |
checking for cc... cc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o |
I hereby claim:
- I am taeseunglee on github.
- I am taeseunglee (https://keybase.io/taeseunglee) on keybase.
- I have a public key whose fingerprint is 704C DA38 9F20 B8A9 EC14 6FC8 E486 C584 2C6E 9151
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Title : Segmented Sieve of Eratosthenes | |
* | |
* Find all primes between two large numbers and say 'low' and 'high'. | |
* We first find all primes in range [2, sqrt(high)+1]. | |
* Then, we use these for finding all primes in each 'segment sieve' | |
* whose size is sqrt(high) + 1. | |
* */ | |
#include <stdio.h> | |
#include <math.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdbool.h> | |
struct coord{ | |
int x; | |
int y; | |
}; | |
/* structure of parameters for play_sudoku function */ | |
struct __sudoku_param { |
Compute Fast GCD Algorithm.
- Reference
Wikipedia, Euclidean Algorithm - https://en.wikipedia.org/wiki/Euclidean_algorithm
Wikipedia, Binary GCD Algorithm - https://en.wikipedia.org/wiki/Binary_GCD_algorithm#cite_note-11
binary gcd 2 - http://lemire.me/blog/2013/12/26/fastest-way-to-compute-the-greatest-common-divisor/
The Z shell (zsh) is a Unix shell [...]. Zsh can be thought of as an extended Bourne shell with a large number of improvements, including some features of bash, ksh, and tcsh.
Read more about ZSH at An Introduction to the Z Shell.
Choose one of the following options.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obj-m = puzzle.o | |
CC := arm-none-linux-gnueabi-gcc | |
KDIR := /work/achroimx_kernel/ | |
PWD := $(shell pwd) | |
all: | |
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules | |
clean : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <linux/string.h> | |
#include <linux/module.h> | |
#include <linux/fs.h> | |
#include <linux/init.h> | |
#include <linux/platform_device.h> | |
#include <linux/kernel.h> | |
#include <linux/uaccess.h> | |
#include <linux/ioctl.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
height: auto !important; | |
background : radial-gradient(rgb(253, 168, 47) 40%, rgb(203, 183, 182) ); | |
background-repeat : no-repeat; | |
} | |
#board-info #viewers-area .fa-user:before { | |
color: rgba(10, 59, 84, 0); | |
content: url(https://static-cdn.jtvnw.net/badges/v1/ce2ed125-5685-4062-b980-5b4db2d87189/1); | |
} |