Skip to content

Instantly share code, notes, and snippets.

View neoneo40's full-sized avatar

neo neoneo40

  • Seoul, Korea
View GitHub Profile
@neoneo40
neoneo40 / How_to_write_article_in_euripy.md
Last active August 29, 2015 14:11
How to write article in euripy

How to write article in euripy

각 파일들이 하는 역할

index.html

  • 이 1개의 index.html 에서 나머지 md들을 불러오는 구조
  • index.html만 받은 다음에 모두 로딩되고 난 후 client에서 다시 md들을 받아서 약간 느림. 그래서 만화 뜨는게 느림

navigation.md

@neoneo40
neoneo40 / gist:78cae84e0bb8425a4752
Last active August 29, 2015 14:10
How to install python, ipython and pip in Windows

파이썬 설치

PATH 에 등록

  • 제어판 -> 시스템 -> 고급 시스템 설정 -> 고급 -> 환경변수
  • 맨 뒤에 파이썬 설치한 경로 추가
  • 예) ;C:\Python27\Scripts;C:\Python27

pip 설치

@neoneo40
neoneo40 / gist:705a68bb223e1a4887c1
Last active August 29, 2015 14:09
Python tools

파으리썬 군산대 강의 자료

강의 일정

  • 1주: 파이썬 기초 배우고 발표
  • 2주: 파이썬 기초에서 잘 이해되지 않은 개념 발표
  • 3주: 웹툰 다운로더 작성(동기 부여를 위해 친숙한 웹툰 이용)
  • 4주: 중복 파일 제거
  • 5주: github에 웹툰 다운로더 공개할 예정
  • 웹툰 다운로더(네이버, 다음, 레진코믹스, 탑툰)
@neoneo40
neoneo40 / meta_congnition.md
Last active August 29, 2015 14:09
Meta cognition

메타인지

찾아보게 된 동기

  • ㅇㅇㅇ님이 2014-11-08 15:50 에 작성한 글이 모티브
  • 어제 미팅이 있어서 강남에서 연극보고 저녁은 차이나 팩토리에서 엄청 수다를 떨었습니다. 그런데 전에도 들은 이야기지만 왜 그렇게 외부에서 활동을 하냐는 질문을 들었습니다.
  • 그럴때마다 반 농담삼아 회사에서 억울한 일이 있어서 보상심리에 밖에서 논다고 이야기했는데.. 솔직히 돈이나 명예? 이런것을 바라고 여러 모임에 참석하고 발표한다면 수지타산에 맞지 않습니다.
  • 가족이 힘들어지면(지방 발령이나 잦은야근) 지금 당장이라도 모든 활동 뿐만 아니라 좋다고 자랑하던 지금 직장도 옮길 생각이 있습니다. 지금도 모든 공부는 아기랑 놀고 아기 취침시간인 저녁 8시에 이후에만 합니다. 게다가 와이프가 훨씬 많은 돈을 벌어다주고 있으니;;
  • 그럼에도 개발자 모임이나 스터디 강의 등을 하는 이유는 그런 모임을 통해서 내가 부족한 것을 알고 진짜 고수들로부터 자극을 받기 위하는 것이 첫번째. >- 두번째로 내가 안다고 생각한 것도 직접 남에게 설명해보면 안다고 생각했지만 모르고 있는 것을 파악할 수 있습니다.(메타인지와 학습 피라미드)
import time
import numpy as np
import matplotlib.pyplot as plt
import serial
sr = serial.Serial('/dev/tty.usbmodem1421',9600)
plt.axis([0, 1000, 0, 256])
plt.ion()
plt.show()
@neoneo40
neoneo40 / javascript_resources.md
Last active August 29, 2015 14:08 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@neoneo40
neoneo40 / python_resources.md
Last active August 29, 2015 14:08 — forked from jookyboi/python_resources.md
Python-related modules and guides.

Packages

  • lxml - Pythonic binding for the C libraries libxml2 and libxslt.
  • boto - Python interface to Amazon Web Services
  • Django - Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
  • Fabric - Library and command-line tool for streamlining the use of SSH for application deployment or systems administration task.
  • PyMongo - Tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.
  • Celery - Task queue to distribute work across threads or machines.
  • pytz - pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.4 or higher.

Guides

@neoneo40
neoneo40 / 0_reuse_code.js
Last active August 29, 2015 14:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@neoneo40
neoneo40 / gist:b327465983ab067d0904
Last active August 29, 2015 14:07
New Settings in Mac