Skip to content

Instantly share code, notes, and snippets.

@jaykodeveloper
jaykodeveloper / interpreter.rkt
Created October 19, 2017 21:36 — forked from gjorgiev/interpreter.rkt
MUPL interpreter in racket
#lang racket
(provide (all-defined-out)) ;; so we can put tests in a second file
;; definition of structures for MUPL programs
(struct var (string) #:transparent) ;; a variable, e.g., (var "foo")
(struct int (num) #:transparent) ;; a constant number, e.g., (int 17)
(struct add (e1 e2) #:transparent) ;; add two expressions
(struct ifgreater (e1 e2 e3 e4) #:transparent) ;; if e1 > e2 then e3 else e4
(struct fun (nameopt formal body) #:transparent) ;; a recursive(?) 1-argument function
(struct call (funexp actual) #:transparent) ;; function call

텐서플로우 시작하기

글쓴이: 김정주(haje01@gmail.com)

이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.


소개

텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.

@jaykodeveloper
jaykodeveloper / MergeSortAlgorithm.cs
Created January 29, 2017 05:07 — forked from valiyo/MergeSortAlgorithm.cs
C# interpretation of the top-down implementation of Merge Sort from Wikipedia: http://en.wikipedia.org/wiki/Merge_sort
using System;
using System.Collections.Generic;
using System.Linq;
/* Write a program that sorts an array of integers
* using the merge sort algorithm (find it in Wikipedia). */
class MergeSortAlgorithm
{
public static int[] MergeSort(int[] array)
@jaykodeveloper
jaykodeveloper / i3-cheat-sheet.md
Created September 26, 2016 23:37 — forked from JeffPaine/i3-cheat-sheet.md
i3 Window Manager Cheat Sheet

i3 Window Manager Cheat Sheet

$mod refers to the modifier key (alt by default)

General

  • startx i3 start i3 from command line
  • $mod+<Enter> open a terminal
  • $mod+d open dmenu (text based program launcher)
  • $mod+r resize mode ( or to leave resize mode)
  • $mod+shift+e exit i3