(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
$ uname -r
void __lpglDrawArrays(GLenum mode, GLint first, GLsizei count); | |
#define glDrawArrays(mode, first, count) \ | |
__lpglDrawArrays(mode, first, count) |
# From http://garmoncheg.blogspot.com/2012/06/pretty-git-log.html | |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --" |
μλ νμΈμ, μμ£Όλνκ΅ λνμ μ»΄ν¨ν°κ³΅νκ³Ό μλ°μ¬ν΅ν©κ³Όμ μΌλ‘ μ¬ν μ€μΈ μ΅μ¬μ([email protected], github: https://github.com/jafffy) μ΄λΌκ³ ν©λλ€.
μ λ 2019λ SW λ§μμ€νΈλ‘ 10κΈ° μ ν μ μ°¨ μ€ AI λ©΄μ μ 보μ΄μ½§ν©λλ€.
μ λ SW λ§μμ€νΈλ‘ μ¬μ μ μ§μνμ¬ μλ₯ μ νμ ν©κ²©νμκ³ , μ μ±κ²μ¬ μ§νμ μν΄ AI λ©΄μ μ μ μνλλ° μμ€ν μ΄ λ§μ΄ν¬μ μΉ΄λ©λΌ μ κ·Ό κΆνμ μμ²νμ΅λλ€.
ν΄λΉ μμ€ν μ΄ μ΄λ€ νλ¨μ μ΄λ»κ² λ΄λ¦΄μ§μ λν΄μλ μ λ μμ§ λͺ»ν©λλ€. νμ§λ§, μ΄λ¬ν privacy μΉ¨ν΄ μμ§κ° λ€λΆν μμ€ν μ λ°μλ€μ΄κ³ μ λ°λ μ¬λλ€μ΄ SW λ§μμ€νΈλ‘μ λͺ©μ μΈ νκ΅ μ΅κ³ μ SW μΈμ¬μ΄κ±°λ νκ΅μ μ€ν°λΈ μ‘μ€κ° λμ§ μμ κ²μ΄λΌκ³ λ―Ώκ³ μκ³ , κ·Έλ μ§ μμμΌλ©΄ μ’κ² μ΅λλ€.
from random import random, seed | |
n = 24 - 1 | |
seed(n) | |
print(int(n * random())) |
#include <stdio.h> | |
int main() | |
{ | |
float f = 3.141592f; | |
printf("%f\n", f); | |
int i = f; | |
printf("%d\n", i); | |