국정화

내가 자라며 배운 교과서는 국정교과서였다. 그 때 배우며 제일 이해가 안가며 어려웠던 과목이 사회, 윤리, 역사 였던듯 하다. 내가 가진 상식으로 맞는 답을 찾는것이 윤리여야 할터인데 너무나 낮은 점수로 간첩이냐는 소리까지 들었던… 그 때를 생각해본다. 그리고 이제 역사 국정화 이야기가 나온다.

어쩌면 너무나 많은 다양성을 받아들이려 했던 지도자들이 문제였는지도 모르겠다. 국민의 수준은 그렇지 못한데.. 다시금 돌아가려는 이 때. 어쩌면 단순화 시키려는 지도자들로 인해 우리 사회는 다시한번 깨우치는 기회가 되리라 생각되어진다.

우리의 아이들에게 갇힌 사고가 얼마나 어려운건지. 그 후 대학이란 공간에서 한없이 열려버린 이데올로기들을 정리할 길이 없어 다시금 길로 나와야 하는 것은 아닐찌.. 지금 길에는 대학생이 없다. 열린 비판도 없다. 닫혀버린 사람들의 아우성 뿐…

[라즈베리파이] 웹을 통한 GPIO 제어

목표 : 라즈베리파이를 이용한 웹을 통한 GPIO제어를 하려한다.

1. 라즈베리파이의 웹서비스 제공.

$sudo apt-get install lighttpd

lighttpd 서비스 설치.

$sudo lighttpd start

하고서 라즈베리파이의 IP를 브라우저에서 보면

스크린샷 2015-08-13 오후 12.03.40

lighttpd 화면을 볼 수 있다.

 

2. 설정변경.

pi@raspberrypi /var/www $ ls -l /usr/bin/python
lrwxrwxrwx 1 root root 9 Jun 6 2012 /usr/bin/python -> python2.7

pi@raspberrypi /var/www $ sudo chmod u+s /usr/bin/python

pi@raspberrypi /var/www $ ls -l /usr/bin/python
-rwsr-xr-x 1 root root 2674528 Mar 17 18:16 /usr/bin/python
python의 실행권한을 변경하고,
$ sudo vi /etc/lighttpd/lighttpd.conf
server.modules = (
“mod_access”,
“mod_alias”,
“mod_accesslog”,
“mod_auth”,
“mod_ssi”,
“mod_cgi”,
“mod_compress”,
“mod_fastcgi”,
“mod_rewrite”,
)
server.modules 에 상기와 같이 변경해주고,
제일 하단에 python 화일을 넣어둘 디렉토리를 지정해준다.
$HTTP[“url”] =~ “^/py/” {
cgi.assign = ( “.py” => “/usr/bin/python” )
}
이후
$ sudo service lighttpd restart
재시작을 하고
test.py 를 /var/www/py 폴더 내에 입력해준다.
#! /usr/bin/python
# bring in the libraries
import RPi.GPIO as G
from flup.server.fcgi import WSGIServer
import sys, urlparse

# set up our GPIO pins
G.setmode(G.BOARD)
G.setup(7, G.OUT)
G.setup(11, G.OUT)
G.setup(13, G.OUT)

# all of our code now lives within the app() function which is called for each http request we receive
def app(environ, start_response):
# start our http response
start_response(“200 OK”, [(“Content-Type”, “text/html”)])
# look for inputs on the URL
i = urlparse.parse_qs(environ[“QUERY_STRING”])
yield (‘ ’) # flup expects a string to be returned from this function
# if there’s a url variable named ‘q’
if “q” in i:
if i[“q”][0] == “a”:
G.output(7, True)   # Turn it on
elif i[“q”][0] == “b”:
G.output(7, False)  # Turn it off
elif i[“q”][0] == “c”:
G.output(11, True)  # Turn it off
elif i[“q”][0] == “d”:
G.output(11, False)  # Turn it off
elif i[“q”][0] == “e”:
G.output(13, True)  # Turn it off
elif i[“q”][0] == “f”:
G.output(13, False)  # Turn it off

#by default, Flup works out how to bind to the web server for us, so just call it with our app() function and let it get on with it
WSGIServer(app).run()

$ chmod +x test.py
python 파일의 실행권한 변경.
/var/www/test.html 입력 내용.
<html>
<head>
<title>Hello from the Pi</title>
<script src=”//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js”></script>
</head>
<body>
<h1>Hello world from the Raspberry Pi</h1>
<form>
<input type=”button” value=”1On” onclick=”go(‘a’)” style=”font-size:200%;”><br />
<input type=”button” value=”1Off” onclick=”go(‘b’)” style=”font-size:200%;”>
<br /><br />
<input type=”button” value=”2On” onclick=”go(‘c’)” style=”font-size:200%;”><br />
<input type=”button” value=”2Off” onclick=”go(‘d’)” style=”font-size:200%;”>
<br /><br />
<input type=”button” value=”3On” onclick=”go(‘e’)” style=”font-size:200%;”><br />
<input type=”button” value=”3Off” onclick=”go(‘f’)” style=”font-size:200%;”>
</form>
<script type=”text/javascript”>
function go(qry) {
new Ajax.Request(‘./py/test.py?q=’ + qry,
{method: ‘GET’}
);
}
</script>
</body>
</html>
GPIO 작업부분은 아래와 같이 7, 11, 13 번에 각각의 LED + 선을 연결하고, GND 선을 연결해준 후…
photo_1439435724
홈페이지 를 열어보시면… 아래와 같은 화면이 보인다.
 photo_1439435723
각각의 ON 을 누르면 아래와 같이 3개의 LED가 들어오는 것을 볼 수 있다.
photo_1439435722
참고 : http://make.bcde.jp/category/16/

apns 사용을 위한 인증서 생성하기.

apns 사용을 위한 인증서 생성하기.

aps_cert.p12 인증서 파일을 생성 키체인의 보내기를 통해 발급 후

Mac OS X의 터미널에서 아래 명령을 입력하여 ~~.pem 키 파일을 생성한다.

Enter Import Password가 나오면 방금 설정한 aps_cert.p12 인증서의 암호를 입력한다.

$ openssl pkcs12 -in aps_cert.p12 -out aps_private.pem -nodes -clcerts
Enter Import Password:
MAC verified OK

필요한 aps_private.pem 파일 생성이 완료된다.

 

from http://pyrasis.com/book/TheArtOfAmazonWebServices/Chapter26/04/03

How to send email from command line?

1. telnet abc.com(useful mail server) 25

2. helo xyz.com(your domain)

3. mail from:your@email.domain

4. rcpt to:destination@email.address

5. data

6. Type your message

7. .(type a period and hit enter)

That’s all!

숙제가 안풀린다~

아아아~~~ 미치겠당…

ssh tunneling 을 통한 mysql 연동을 해야하는데

암흑 속을 헤메이는 듯한 느낌이다…

답을 찾아야 할텐데…

1. mysql 연결 ok

2. ssh 연결 ok

3. tunneling 요게 문제임… 천천히 둘러가더라도 답을 찾아보자…

에구구~~~

2015 청년부 동계수련회

청년부 동계수련회 단체사진
청년부 동계수련회 단체사진

함양 다볕자연학교에서 1월 29일부터 31일까지 정말 청춘을 불태우는 청년동계수련회가 있었다.

남산 청년부 화이팅~~