- HowManyPiecesOfLand?/문보창 . . . . 70 matches
#define MAXDIGITS 100
char digit[MAXDIGITS];
int lastdigit;
lastdigit = 0;
digit[lastdigit++] = n % 10;
digit[lastdigit] = n % 10;
for (i = lastdigit + 1; i < MAXDIGITS; i++)
digit[i] = 0;
for (i = 0; i < MAXDIGITS; i++)
digit[i] = 0;
lastdigit = 0;
for (int i = lastdigit; i >= 0; i--)
cout << (int)digit[i];
char temp[MAXDIGITS];
lastdigit = strlen(temp) - 1;
lastdigit--;
lastdigit--;
for (i = lastdigit + startI; i >= startI; i--)
digit[j++] = temp[i] - '0';
while (n.lastdigit > 0 && n.digit[n.lastdigit] == 0)
- 경시대회준비반/BigInteger . . . . 49 matches
// Number of digits in `BASE'
// Returns Number of digits in the BigInteger
SizeT Digits() const;
TheNumber = new DATATYPE [Digits()];
End = Temp.Digits() - 1;
TheNumber = new DATATYPE [Temp.Digits()];
datacopy(Temp,Temp.Digits());
// Returns number of digits in a BigInteger
SizeT BigInteger::Digits() const
long temp = Digits() - with.Digits();
// Case 3: First One got more digits
// Case 4: First One got less digits
// Now I know Both have same number of digits
of digits
for(SizeT i=0;i<Digits();i++)
BigInteger &Result= *new BigInteger(Big.Digits()+1,0);
long i=Big.Digits() - 1,
j=Small.Digits() -1;
BigInteger& Result = *new BigInteger(Big.Digits()+1,0);
long i = Big.Digits() - 1,
- HowManyFibs?/문보창 . . . . 22 matches
char digit[103];
digit[i] = temp[len-i-1] - 48;
digit[len] = (b.digit[len] + carry) % 10;
carry = (b.digit[len] + carry) / 10;
digit[len] = (a.digit[len] + carry) % 10;
carry = (a.digit[len] + carry) / 10;
digit[len] = (a.digit[len] + b.digit[len] + carry) % 10;
carry = (a.digit[len] + b.digit[len] + carry) / 10;
digit[len++] = carry;
if (digit[i] > a.digit[i])
else if (digit[i] < a.digit[i])
pib[1].digit[0] = 1, pib[1].len = 1;
pib[2].digit[0] = 2, pib[2].len = 1;
if (inA.len == 1 && inB.len == 1 && inA.digit[0] == 0 && inB.digit[0] == 0)
- SmithNumbers/문보창 . . . . 17 matches
int sum_digit_prime_factor(int n);
int sum_digit_number(int n);
if (sum_digit_number(i) == sum_digit_prime_factor(i))
int sum_digit_number(int n)
int sumDigitNumber = 0;
sumDigitNumber += temp % 10;
return sumDigitNumber;
int sum_digit_prime_factor(int n)
int sumDigitPrimeFactor = 0;
sumDigitPrimeFactor += 2;
sumDigitPrimeFactor += sum_digit_number(i);
if (sumDigitPrimeFactor == 0 || n == 2)
sumDigitPrimeFactor += sum_digit_number(temp);
return sumDigitPrimeFactor;
- 새싹교실/2011/Pixar/실습 . . . . 17 matches
Write a program that reads a four digit integer and prints the sum of its digits as an output.
int four_digit_num, sum = 0, i, positional;
scanf("%d", &four_digit_num);
sum += four_digit_num / positional;
four_digit_num %= positional;
int four_digit_num, sum = 0, i, positional, j;
scanf("%d", &four_digit_num);
sum += four_digit_num / positional;
four_digit_num %= positional;
int n_digit_num, sum = 0, positional, n;
scanf("%d", &n_digit_num);
n = log10(n_digit_num);
if((n_digit_num >= pow(10, n)) && (n_digit_num < pow(10, n+1))){
sum += n_digit_num / positional;
n_digit_num %= positional;
- LoveCalculator/zyint . . . . 15 matches
int make1digit(int a);
float digit1,digit2;
digit1 = (float)make1digit(getValue(*(i+1)));
digit2 = (float)make1digit(getValue(*(i+0)));
cout << (digit1 > digit2? digit2/digit1 : digit1/digit2)*100 << " %" << endl;
int make1digit(int a)
return make1digit(sum);
- 데블스캠프2011/네째날/이승한 . . . . 15 matches
== 이승한/Git ==
* [http://keedi.pe.kr/presentations/just_do_git/ 발표 자료]
* [http://code.google.com/p/msysgit/downloads/list msysgit download page] - download {{{Git-1.7.4-preview20110204.exe}}}
* [http://code.google.com/p/tortoisegit/downloads/list tortoise git download page] - download {{{Tortoisegit-1.6.5.0-32bit.msi}}}, 32bit
* setup git and github - http://help.github.com/win-set-up-git/
* github repository address - https://github.com/beonit/devils2011GitSeminar
* git cheat sheet - http://ktown.kde.org/~zrusin/git/git-cheat-sheet-medium.png
- 데블스캠프2011/넷째날/Git . . . . 15 matches
== 이승한/Git ==
* [http://keedi.pe.kr/presentations/just_do_git/ 발표 자료]
* [http://code.google.com/p/msysgit/downloads/list msysgit download page] - download {{{Git-1.7.4-preview20110204.exe}}}
* [http://code.google.com/p/tortoisegit/downloads/list tortoise git download page] - download {{{Tortoisegit-1.6.5.0-32bit.msi}}}, 32bit
* setup git and github - http://help.github.com/win-set-up-git/
* github repository address - https://github.com/beonit/devils2011GitSeminar
* git cheat sheet - http://ktown.kde.org/~zrusin/git/git-cheat-sheet-medium.png
* [데블스캠프2011/넷째날/Git/권순의]
- AutomatedJudgeScript/문보창 . . . . 14 matches
bool setString(char * s, char * sDigit);
char answerDigit[MAX];
char replyDigit[MAX];
if (!setString(answer, answerDigit) || !setString(reply, replyDigit))
if (strcmp(answerDigit, replyDigit) != 0)
bool setString(char * s, char * sDigit)
int nDigit, nChar, nReturn;
nDigit = nChar = nReturn = 0;
sDigit[nDigit++] = c;
sDigit[nDigit] = '\0';
- HowManyZerosAndDigits/임인택 . . . . 13 matches
private HowManyZerosAndDigits object;
object = new HowManyZerosAndDigits(0, 0);
object = new HowManyZerosAndDigits(0, 0);
// object = new HowManyZerosAndDigits(120, 16);
// object = new HowManyZerosAndDigits(120, 10);
== {{{~cpp HowManyZerosAndDigits.java }}} ==
public class HowManyZerosAndDigits {
public HowManyZerosAndDigits(int n, int b) {
System.out.println(howManyZeros() + " " + numDigit());
public int numDigit() {
HowManyZerosAndDigits h = new HowManyZerosAndDigits(n, b);
[HowManyZerosAndDigits]
- LC-Display/문보창 . . . . 13 matches
struct Digit // 숫자
int inAnaloge(Digit * d);
void makeDisplay(Digit * d, const int line);
void toDigital(char pd[][MAX_COL], int row, int col, int index, char c);
Digit digits[MAX_LINE]; // 입력받을 Analoge 숫자
int line = inAnaloge(digits); // 처리해야 될 줄 수
makeDisplay(digits, line);
int inAnaloge(Digit * d)
void makeDisplay(Digit * d, const int line)
char display[MAX_ROW][MAX_COL]; // display에 담길 Digital 숫자
toDigital(display, row, col, j, d[i].num[j]);
void toDigital(char pd[][MAX_COL], int row, int col, int index, char c)
- MatrixAndQuaternionsFaq . . . . 11 matches
to spherical coordinates ie. Longitude, Latitude and Rotation angles
coordinates ie (longitude/latitude).
(latitude and longitude) and a rotation angle
sin_long = sin( longitude )
cos_long = cos( longitude )
longitude = 0;
longitude = atan2( tx, tz ) * RADIANS;
if ( longitude < 0 )
longitude += 360.0;
via quaternions and spherical rotation angles (ie. longitude, latitude
Once the interpolated coordinates are known (latitude, longitude and
- ReverseAndAdd/김회영 . . . . 10 matches
long inverseDigit(long num);
number[i]=number[i]+inverseDigit(number[i]);
long inverseDigit(long num)
int arrayOfDigit[10];
arrayOfDigit[++count]=num%10;
returnValue+=arrayOfDigit[i]*pow(10,count-i);
int arrayOfDigit[10];
arrayOfDigit[++count]=num%10;
while(arrayOfDigit[i]==arrayOfDigit[j])
- CleanCode . . . . 9 matches
* [http://dogfeet.github.io/progit/progit.ko.pdf git 사용과 관련된 pro git이라는 책의 한국어 번역본. 상당히 자세히 나와 있다고 하네요]
* [http://alblue.bandlem.com/2011/02/gerrit-git-review-with-jenkins-ci.html 참고 데모 동영상]
* [https://gist.github.com/benelog/2922437 버전관리가 필요한 이유를 깨닫는 어떤 사람]
* next : git과 연동
* Git + Gerrit + Jenkins 전체 결합을 통해 코드 버그를 줄여보자
*[https://github.com/styleguide/ruby Ruby StyleGuide] - 코딩 스타일 자체보다 왜 그런 스타일을 선택했는지에 대해 생각해 보는 것이 중요함.
- WikiTextFormattingTestPage . . . . 9 matches
Aside: I wonder if any wikis provide multilevel numbering -- I know that Wiki:MicrosoftWord, even back to the Dos 3.0 version, can number an outline with multiple digits, in "legal" or "outline" style numbering. I forget which is which -- one is like 2.1.2.4, the other is like II.A.3.c., and I think there is another one that includes ii.
ISBN:0137483104 -- ISBN followed by colon, followed by 10 digits (Wiki:InterWiki style)
ISBN: 0-13-748310-4 -- ISBN followed by optional colon, followed by 10 digits with optional hyphens
[ISBN 0-13-748310-4] -- ISBN, no colon, followed by 10 digits with optional hyphens, entire string surrounded by square brackets
[ISBN: 0-13-748310-X] -- ISBN, with colon, entire string surrounded by square brackets, followed by 10 digits with optional hyphens, last digit an X ''"X" is the "digit" ten (the roman numeral, actually), which is a possible value for the checksum (last) digit.''
(For engines which hide HTML tags, I enclosed the "alt" within angle brackets as a prefix to "nnn" (or "real" digits).)
- 정규표현식/스터디/메타문자사용하기 . . . . 9 matches
||{{{[:digit:]}}} ||{{{[0-9]}}} ||
||{{{[:xdigit:]}}} ||모든 16진수 숫자 {{{[a-fA-F0-9]}}}와 같다 ||
* {{{#[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]}}}
* 주의할 점은 대괄호가 두번 들어간다. posix 표현은 [:xdigit:] 이기 때문에 문자집합을 정의하려면 대괄호를 한번 더 써줘야 한다.
- HowManyZerosAndDigits/문보창 . . . . 8 matches
시간제한이 1분짜리 문제다. Digits의 개수를 세는 것은 로그를 이용하면 간단히 해결되나, Zeros의 개수를 세는 방법이 딱히 떠오르지 않는다.
// no10061 - How many zeros and how many digits?
double nDigit; // how many digits?
nDigit = 0.0;
nDigit += log(i) / log(B);
cout << nZero << " " << int(nDigit) + 1 << endl;
[HowManyZerosAndDigits] [문보창]
- ISBN_Barcode_Image_Recognition . . . . 8 matches
=== Check Digit ===
* EAN-13은 13자리 숫자(Check Digit 포함)로 생성하거나 해석할 수 있는 바코드이다.
* Right Characters의 마지막 한 자리는 Check Digit 이다.
=== Check Digit ===
* EAN-13의 Check Digit는 마지막 한 자리이며, 나머지 12자리로 부터 생성된다.
* 각 12자리 숫자에 가중치를 곱하여 다 합하고, 합한 값을 10으로 나눈 나머지를 10에서 빼면 Check Digit가 나온다.
def generate_isbn_check_digit(numbers): # Suppose that 'numbers' is 12-digit numeric string
- Ones/송지원 . . . . 8 matches
int digits[ARRBOUND]; // 0000~9999
pns->digits[i] = 0;
pns->digits[j] = 1111;
pns->digits[j] = 1;
pns->digits[j] = 11;
pns->digits[j] = 111;
pns->digits[i] += (rem * 10000);
rem = pns->digits[i] % divisor;
- 정규표현식/스터디/반복찾기 . . . . 8 matches
* RGB 값은 {{{#99FFAA}}} 처럼 {{{[:xdigit:]}}}가 정확하게 6번 나와야 한다.
* 기존 : {{{#[:xdigit:][:xdigit:][:xdigit:][:xdigit:][:xdigit:][:xdigit:]}}}
* 개선 : {{{#[:xdigit:]{6}}}}
- Linux/RegularExpression . . . . 7 matches
여기에서 "문자클래스"에는 alpha, blank, cntrl, digit, graph, lower,
print, space, uppper, xdigit가 있다.
예를 들어 [:digit:]는 [0-9]와 [:alpha:]는 [A-Za-z]와 동일하다.
[[:digit:]] ([0-9]와 동일)
- givenPattern이 "(패턴)"으로 묶인 문자열들을 포함하고 있으면, replacementPattern에는 이에 대응하는 "\\digit(문자열)" 형태의 문자열들을 포함하고 있어야 한다(digit는 0, 1, ... ,9 중 하나). 그리고 givenString은 "(패턴)"을 이용해 찾은 결과들을 "\\digit(문자열)"에 있는 "문자열"들로 대체하게 된다. "\\0" 는 givenString 전체에 대해 "(패턴)"의 결과를 적용할 때 이용된다.
- 데블스캠프2013/첫째날/후기 . . . . 7 matches
= 안혁준 / GIT =
* 더 심화된 내용쪽(특히 blame, ignore)이 마음에 들어서 잘들었습니다. 다만 처음에 그냥 git commit을 하니 vim이 떠서 명령어를 몰라 맨붕해서 방황하다가 git commit -m "원하는 메세지"를 하니 core editor를 쓸필요가 없음을 깨달아서 허무한 기억이...흑...ㅠ. - [김윤환]
+ git에 대해 완전히 알 수는 없었어도 오늘 배운 정도만 되어도 충분히 쓸 수 있을 정도로 설명 잘 해주섰더군요 - [이봉규]
* 버전 관리 프로그램이라는 점에 대해서는 작년에도 SVN(이 맞나요?)을 했던 것 같던데, 올해 git을 배워가네요! 근데, 이건 제가 git을 공부를 해야 될 것 같습니다. 이해는 머리속에서 잘 하는데, 사용을 못하겠네요ㅠ_ㅠ. 확실히 저는 습득속도가 느린가봐요ㅠ..어어ㅡㅠㅓ.. - [김해천]
* 많은 도움이 되는 시간이었습니다. 사실 버전을 따로 관리 하지 않아서 오히려 완성된 코드에 손을 대기 꺼져질 때도 있었는데 Git을 사용하면 이런 부단 없이 코드를 수정 할 수 있을것 같습니다. -[백주협]
* git 좋아요~! 저녁 약속 때문에 git_ignore 설명할 때 가야했다는게 아쉬웠습니다... 뒷 부분을 들었어야 했는데 ㅜㅜ. - [박성현]
* GIT으로 누가 멍청한 코드를 짰는지 좋은 예시를 든답시고 while문을 집어넣었는데 세션 진행에 방해가 되었었네요. 조금 조심해야겠다는 생각이 들었어요. -[김태진]
* GIT이 코드 줄 단위로 수정자를 확인할 수 있는건 진짜 좋은 기능인듯. SVN에도 있었을려나?? - [장혁수]
- 조영준 . . . . 7 matches
* [https://github.com/SkywaveTM 깃허브]
* [AngelsCamp/2015] - 제로병, 피보나치킨 - https://github.com/SkywaveTM/zerobot
* Titan Project (2015년 1학기 소프트웨어공학 팀프로젝트) - https://github.com/ZeroPage/team6-titan-2015
* 설계패턴 TeamProejct https://github.com/SkywaveTM/wiki-path-finder
* 2015년 설계패턴 팀 프로젝트의 기반 프로젝트가 됨. https://github.com/SkywaveTM/wiki-path-finder
* PicManager - 2014년 객체지향프로그래밍 팀 프로젝트 - https://github.com/ZeroPage/PicManage
* GDG pre devfest 2013 seoul - 징격의 안드로이드. 그리고 밤샘. - https://github.com/ZeroPage/MorningTypeHuman
* PROGIT 읽기
- 한자공/시즌1 . . . . 6 matches
* [https://github.com/ZeroPage/zp13-javastudy github]를 사용하고 있습니다.
* github를 사용하기 시작하였습니다. 주소는 위에.
* 7월 9일에 github에 올린 서로의 코드를 보며 이야기를 나누고, 책에서 읽어왔으나 다루지 못한 내용을 기존 코드에서 살을 붙여서 만들 계획입니다.
* Github에서 한글 안 깨지게 Eclipse 설정하기
* Github 관련
* 메모장에서 *.txt 파일을 만들 때에도 UTF-8로 저장을 해야 github에서 깨지지 않음.
* github에 만들고 있는 / 만든 코드를 올려 피드백을 요청할 수 있습니다
- Emacs . . . . 5 matches
* Emacs의 확장 기능은 .el(Emacs Lisp 확장자) 파일을 읽어오는 방법으로 이루어진다. 따라서 .el 파일만 있으면 확장 기능을 사용할 수 있는데, ELPA 이전까지는 통일된 .el 파일의 배포 방법이 없었기 때문에 기능을 추가하려면 직접 파일을 (EmacsWiki나 github이나 다양한 방식으로) 다운받아야 하는 불편함을 감수해야 했다. ELPA는 이러한 흩어진 파일(= 확장 기능)들을 통합해서 받을 수 있는 기능을 제공하고 있다.
* [https://github.com/technomancy/package.el/blob/master/package.el package.el]을 컴퓨터에 저장한다. 저장 위치는 아무 곳이나 상관 없지만 되도록이면 HOME 디렉토리에 .emacs.d 디렉토리를 만들어서 그 안에 넣어 주도록 하자.
1. cedet github에 들어가서 압축파일을 받는다.([http://sourceforge.net/projects/cedet/])
2. 현제 emacs의 최신버젼은 24.*대이다. 그리고 이 버젼대의 emacs는 내부적으로 cedet이 설치되어있다고 한다. 이 cedet의 버젼과 ecb의 버젼 사이에 버그때문에 ecb 환경설정을 하려하면 어려움이 많다. 열심히 삽질해서 알아본 결과 어떤 외국 신사분이 버그 fix후 report하기전에 반영이 늦을것같기에 미리 github에 올려두신 수정 버전이 있다.([https://github.com/alexott/ecb/]) 여기에서 ecb의 압축파일을 받는 것부터 시작을 한다.
- HowManyZerosAndDigits . . . . 5 matches
== About[HowManyZerosAndDigits] ==
|| [문보창] || C++ || ? || [HowManyZerosAndDigits/문보창] ||
|| [임인택] || Java || ? || [HowManyZerosAndDigits/임인택] [[BR]] 주의 : 일단 10진법 이상의 진법도 10진수로 표현한다고 가정하고 문제를 풀었음 [[BR]] (예를 들어 A0 대신 10 0 이라고 표현한다고 가정) ||
|| [김회영] || C++ || ? || [HowManyZerosAndDigits/김회영] ||
|| [허아영] || C++ || 1시간 30분 || [HowManyZerosAndDigits/허아영] ||
- MultiplyingByRotation/문보창 . . . . 4 matches
int nDigit;
nDigit = 2;
cout << nDigit << endl;
nDigit++;
- OurMajorLangIsCAndCPlusPlus/ctype.h . . . . 4 matches
|| int isdigit(int c) || 주어진 문자가 숫자인지 검사한다. 0-9 ||
|| int isxdigit(int c) || 16진수 를 표한할 수 있는 문자인지 확인한다. 0-9 a-f A-F ||
|| int iswdigit(wint_t) || 주어진 문자가 숫자인지 검사한다.||
|| int iswxdigit(wint_t) || 16진수 를 표한할 수 있는 문자인지 확인한다. ||
- PrimaryArithmetic/Leonardong . . . . 4 matches
def carry( *digits ):
for digit in digits:
result += digit
- SmithNumbers/이도현 . . . . 4 matches
int digit_separation(int, int, int*);
k = digit_separation(k, arr_prime[k], arr_separation_prime);
digit_separation(0, j, arr_separation);
int digit_separation(int start_index, int num, int *array)
- TheTrip/황재선 . . . . 4 matches
movedMoney = convertToTwoDigits(movedMoney);
sum = convertToTwoDigits(sum);
average = convertToTwoDigits(sum / money.length);
public double convertToTwoDigits(double aNum) {
- 자리수알아내기/나휘동 . . . . 4 matches
numDigit 0 base = 0
numDigit n base = 1 + numDigit (div n base) base
numDigit n base = ceiling (logBase base n) + 1
- 2학기파이선스터디/모듈 . . . . 3 matches
['_StringTypes', '__builtins__', '__doc__', '__file__', '__name__', '_float', '_idmap', '_idmapL', '_int', '_long', 'ascii_letters', 'ascii_lowercase', 'ascii_uppercase', 'atof', 'atof_error', 'atoi', 'atoi_error', 'atol', 'atol_error', 'capitalize', 'capwords', 'center', 'count', 'digits', 'expandtabs', 'find', 'hexdigits', 'index', 'index_error', 'join', 'joinfields', 'letters', 'ljust', 'lower', 'lowercase', 'lstrip', 'maketrans', 'octdigits', 'printable', 'punctuation', 'replace', 'rfind', 'rindex', 'rjust', 'rstrip', 'split', 'splitfields', 'strip', 'swapcase', 'translate', 'upper', 'uppercase', 'whitespace', 'zfill']
- DataCommunicationSummaryProject/Chapter4 . . . . 3 matches
* Digital Cellular - 가장 선호. Text-only.
== Digital Celluar ==
* 미국에서 사용하는 anlog AMPS에서 digital로 업그레이드
- JavaScript/2011년스터디/3월이전 . . . . 3 matches
* [jQuery], [http://sizzlejs.com/ Sizzle], [https://github.com/douglascrockford/JSON-js JSON-js] 중 고민하다 간단한 JSON-js를 분석하기로 함
* [https://github.com/douglascrockford/JSON-js/blob/master/json2.js json2.js] 소스 끝까지 읽어오기 : 어떤 기능들이 있는지 파악할 것
* [https://github.com/douglascrockford/JSON-js/blob/master/json2.js json2.js] 소스 끝까지 읽어오기 : 어떤 기능들이 있는지 파악할 것
- MajorMap . . . . 3 matches
It's related ProgrammingLanguage, DigitalLogicDesign(, and...)
= DigitalLogicDesign =
A Gray code is a binary numeral system where two successive values differ in only one digit. --from [http://en.wikipedia.org/wiki/Gray_code]
- StructuredText . . . . 3 matches
* A paragraph that begins with a sequence of digits followed by a white-space character is treated as an ordered list element.
* A paragraph that begins with a sequence of sequences, where each sequence is a sequence of digits or a sequence of letters followed by a period, is treated as an ordered list element.
* Text enclosed in brackets which consists only of letters, digits, underscores and dashes is treated as hyper links within the document. For example:
- 간단한C언어문제 . . . . 3 matches
if(isdigit(ss[i])) puts("숫자");
옳지않다. ss[]의 "문자"란 단어는 isdigit로 확인 할 수 없다. (확장코드이므로.) 이것을 isdigit로 확인 하려면 unsigned char형으로 선언 하면 된다. 기본 char형은 signed형이다. - [이영호]
- 영호의해킹공부페이지 . . . . 3 matches
The code is a combination of the SP code (5 digit) and phone IMEI (15 digit)
XXXXXXXXXX (master code) is a 10 digit code, based on the IMEI number of your
- ArsDigitaUniversity . . . . 2 matches
학부생 수준의 전산 전공을 일년만에 마칠 수 있을까. 그런 대학이 있다(비록 지금은 펀드 문제로 중단했지만). 인터넷계의 스타 필립 그리스펀과 그의 동료 MIT 교수들이 만든 학교 ArsDigitaUniversity다. (고로, Scheme과 함께 NoSmok:StructureAndInterpretationOfComputerPrograms 를 가르친다)
자신의 전산학 지식을 전체적으로 정리하거나, 밑바닥부터 새로 공부하고 싶은 사람들에게 많은 참고가 된다 -- 모든 수업이 한 달이면 끝난다. ArsDigitaUniversity의 "하면서 배우는"(learn by doing) 교육 모델(날마다 구체적인 Problem Set이 주어지고 오전에 수업이 끝나면 오후에 Recitation을 하며, 매 주 NoSmok:교육적인시험 을 친다)도 흥미롭다. 모든 수업에 대해 VOD와 문제, 해답, 수업 노트가 제공된다.
- OekakiMacro . . . . 2 matches
[[OeKaki(digit)]]
[[OeKaki(digit)]]
- OpenGL스터디_실습 코드 . . . . 2 matches
* '''이곳에 소스는 저의 github에도 올릴 예정이니 일일히 복붙하기 귀찮으신분들은 "https://github.com/skyLibrary/OpenGL_Practice"에서 받아가세요.'''
- OurMajorLangIsCAndCPlusPlus/locale.h . . . . 2 matches
char frac_digits; CHAR_MAX LC_MONETARY
char int_frac_digits; CHAR_MAX LC_MONETARY
- RSSAndAtomCompared . . . . 2 matches
=== Digital Signature/Encryption ===
and [http://www.w3.org/TR/xmldsig-core/ XML Digital Signature] on entries are included in Atom 1.0.
- SmallTalk/강좌FromHitel/강의2 . . . . 2 matches
digitalClockProcess := [[
digitalClockProcess terminate. ¬
- SmallTalk/강좌FromHitel/강의3 . . . . 2 matches
digitalClockProcess := [[
digitalClockProcess terminate.
- html5/geolocation . . . . 2 matches
"경도 :" + position.coords.longitude);
||longitude||경도||
- 고한종 . . . . 2 matches
||{{{github}}} ||https://github.com/rino0601 ||
- 대학원준비06 . . . . 2 matches
Upload:digital.zip
Upload:DigitalLogic2003.tar.gz
- 새싹교실/2012/새싹교실강사교육/4주차 . . . . 2 matches
http://rogerdudler.github.com/git-guide/index.ko.html
- 임베디드방향과가능성/정보 . . . . 2 matches
한가지 예를 든다면 님 말씀대로라면 가정에서는 주로 게임기로 쓰이는 pc가 게임시장에서는 임베디드 기기(플스,x-box)에 ko패를 당했습니다. 결국 앞으로 pc가 같는 기능은 대부분 임베디드 기기로 옮겨 갈 것입니다.(pda,smart phone..등등) 더욱이 지금까지 PC가 쓰인 분야(별로 없죠)말고 다른 분야에 이미 많은 임베디드 기기가 쓰이고 있고, 앞으로 더 많이 쓰일 겁니다.(각종 robotics분야, 무인분야, 다시말해 digital이 쓰이는 거의 모든 분야.. digital world=embedded)
- .bashrc . . . . 1 match
xtitle The $(basename $1|tr -d .[:digit:]) manual
- 10학번 c++ 프로젝트/소스 . . . . 1 match
char arr[10][8][16]={ // digit 노가다
- AOI/2004 . . . . 1 match
|| [HowManyZerosAndDigits] || . || O || X || . || . || . ||
- AcceleratedC++/Chapter6 . . . . 1 match
using std::isdigit;
- CCNA/2013스터디 . . . . 1 match
* DSU (Digital Service Unit)와 CSU (Channel Service Unit)
- EffectiveSTL/Container . . . . 1 match
= Item11. Understand the legitimte uses of custom allocators. =
- HowManyZerosAndDigits/허아영 . . . . 1 match
//HowManyZerosAndDigits
- JTD 야구게임 짜던 코드. . . . . 1 match
user = JOptionPane.showInputDialog(null,"write in a three digit number");
- JavaScript/2011년스터디/JSON-js분석 . . . . 1 match
* [https://github.com/douglascrockford/JSON-js JSON-js] 코드 분석하기
- Karma . . . . 1 match
[http://karma-runner.github.io/0.10/index.html]
- LogicCircuitClass . . . . 1 match
* 2006 년 - Digital Design(3rd) by M.Morris Mano
- LogicCircuitClass/Exam2006_1 . . . . 1 match
* Digital signal 이 Analog signal 에 비해 갖는 장점 세가지를 쓰시오.
- MoinMoinBugs . . . . 1 match
+ if letter not in (string.letters + string.digits):
- MultiplyingByRotation . . . . 1 match
입력은 텍스트파일이다. 진수,첫번째 숫자의 마지막 숫자(the least significant digit of the first factor)와 두번째 숫자(second factor)로 구성된 3개의 수치가 한줄씩 입력된다. 각 수치는 공백으로 구분된다. 두번째 숫자는 해당 진수보다 적은 숫자이다. 입력파일은 EOF로 끝난다.
- OurMajorLangIsCAndCPlusPlus/print/김상섭 . . . . 1 match
if(isdigit(*++list))
- OurMajorLangIsCAndCPlusPlus/print/이도현 . . . . 1 match
if(isdigit((int)arg[arg_index]))
- OurMajorLangIsCAndCPlusPlus/print/이상규 . . . . 1 match
if(isdigit((int)*c))
- OurMajorLangIsCAndCPlusPlus/print/하기웅 . . . . 1 match
if(isdigit(*n))
- SoftwareCraftsmanship . . . . 1 match
* wiki:Wiki:LegitimatePeripheralParticipation
- Spring/탐험스터디/wiki만들기 . . . . 1 match
* MarkdownJ, MarkdownPapers는 문서가 부실하고 남은 두 구현체 중 [https://github.com/sirthias/pegdown Pegdown]이 위키 제목을 통한 페이지 링크를 더 간편하게 지원해서.
* 위키의 문법을 구현하기로 하였는데 직접 파서를 구현하기보다 Markdown의 파서를 사용하면(Markdown 문법을 사용해야 하지만) 편리할 것 같아(명백해서 증명할 필요가 없다!) Markdown 파서중 pegdown을 쓰기로 경정. Java 언어 기반의 파서중 그나마 문서화(GitHub의 소개페이지)가 잘되어있어서....
- SystemEngineeringTeam . . . . 1 match
* github.com
- TFP예제/WikiPageGather . . . . 1 match
safe = string.letters + string.digits
- UsenetMacro . . . . 1 match
if (preg_match('/[[:xdigit:]]+/', $thread))
- WIBRO . . . . 1 match
음.. 기존 CDMA 는 그대로 두고 따로 가는건가..? 만약 [WIBRO]에 VoIP 가 올라가면... 기존의 CDMA 망이 너무 아까운걸... (퀄컴에 돈 가져다 바치는것도 아깝진 하지만). DigitalConvergence 가 이루어지는 세상에 CDMA와 [WIBRO]가 각자의 길을 간다는것도 조금 안맞는것 같기도 하고.. 이래저래 아깝기만하네..-_-;; - [임인택]
- WebGL . . . . 1 match
http://greggman.github.io/webgl-fundamentals/webgl/lessons/webgl-how-it-works.html
- ZeroPageServer/Log . . . . 1 match
''일단 쉘에서 직접 실행해 보고, {{{~cpp tail -f /etc/httpd/logs/error.log }}}를 해놓고 웹으로 실험해 보길. 그리고 cgi-handler 설정 확인해 볼 것. python이라면 cgitb를 써볼 것. --JuNe''
- ZeroPageServer/set2005_88 . . . . 1 match
* 하드 디스크 추가. WesternDigital 60GB (7200rpm) : 이정직(00)님께서 제공
- ZeroPage_200_OK . . . . 1 match
* 영 느리면 조만간 여유가 있을 때 [https://github.com/ajaxorg/cloud9/ Cloud9]을 ZeroPage 서버에 설치해볼 생각입니다.
- ZeroPagers . . . . 1 match
* 이혜영 : ["cogitator"]
- [Lovely]boy^_^/Diary/2-2-9 . . . . 1 match
* I'll never type smalltalk digital clock example again.
- 고슴도치의 사진 마을처음화면 . . . . 1 match
▷Mother's Digital Camera
- 고한종/업적/WinAPI로만든학과주점포스기 . . . . 1 match
= GITHUB =
결과물 찾고, github 프라이빗 계정 등록 성공하면 public으로 올릴 예정(...)
- 권영기/web crawler . . . . 1 match
* http://git-scm.com/ - Git.
- 김수경/StickyWall . . . . 1 match
* [https://github.com/Linflus/StickyWall Repository]
- 노스모크모인모인 . . . . 1 match
1. 일전에 창준이 형이 말씀하신 cgitb 를 적용해 본다.
- 데블스캠프2012/둘째날/후기 . . . . 1 match
* [김태진] - 상민선배님이 오셔서 웹 전반에 관한 이야기를 해주신건 작년 성년식때도 그렇고(그땐 아이폰이었지만) 참 유익한 배경지식들을 많이 얻을 수 있는 기회인거 같아요. 후반부에 git에 관한 이야기를 따로 잠깐 해주신거도 꽤나 유용한 정보였구요. 다들 이런식으로 각 세션에 대해 후기를 작성해주면 된답니다.
- 데블스캠프계획백업 . . . . 1 match
NoSmok:SituatedLearning 의 Wiki:LegitimatePeripheralParticipation 을 참고하길. 그리고 Driver/Observer 역할을 (무조건) 5분 단위로 스위치하면 어떤 현상이 벌어지는가 실험해 보길. --JuNe
- 병역문제어떻게해결할것인가 . . . . 1 match
* 가장 좋은 깃헙 저장소로 [https://github.com/sesang06/awesome-alternative-military-service Awesome Alternative Military Service]를 추천합니다. 해당 저장소를 만든 사람은 현역 대학생으로 재배정 TO를 받으신 분입니다.
- 새싹교실/2012/개차반 . . . . 1 match
* binary digit를 비롯한 컴퓨터 시스템의 기초적인 개념 또한 설명
- 새싹교실/2012/주먹밥 . . . . 1 match
Git을 공부해서 Repository를 만들고 Readme파일을 올려서 다음주에 보여주기.
* GitHub : https://github.com
- 서지혜 . . . . 1 match
1. [https://github.com/Rabierre/my-calculator my calculator]
- 송치완 . . . . 1 match
* [https://github.com/bethesirius/ChosunTruck]
- 수업평가 . . . . 1 match
||DigitalEngineeringClass || 1 || 1 || 1 || 2 || 5 || 3 ||1.66||
- 안혁준 . . . . 1 match
* 개인용위키 - [http://github.com/HyeokJun/WikiNote wikinote]
- 알고리즘3주숙제 . . . . 1 match
The (2n)-digit decimal representation of the product x*y = z
- 압축알고리즘/수진&재동 . . . . 1 match
if(isdigit(c) != 0){
- 정규표현식/스터디/메타문자사용하기/예제 . . . . 1 match
1. {{{.[:digit:]........}}}
- 정모/2012.11.26 . . . . 1 match
* [윤종하]학우의 Digital Bandpass-Filter Modulation
- 정모/2013.9.4 . . . . 1 match
* 클린 코드 : SRP(Single Responsibility Principle), DIP(Dependency Inversion Principle) 방식을 공부하였고 디자인패턴 중 템플릿 메소드에 대해서 공부하였습니다.그리고 스레드에 대해서 공부 하였습니다. trello와 github연동하는 방법이 있습니다.상당히 유용할 것같으므로 관심있으신분들은 조금만 찿아보시면 쉽게 하실수있습니다.
- 포항공대전산대학원ReadigList . . . . 1 match
“Digital Design”, Morris Mano, Prentice Hall, 3-rd Ed, 2002.
- 프로그래밍 . . . . 1 match
* 2005.11.18 [프로그래밍/DigitGenerator]
- 프로그래밍/DigitGenerator . . . . 1 match
public class DigitGenerator {
Found 103 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.