본문 바로가기
  • Seizure But Okay Developer

전체 글216

raspberryPi 개발 팁 정리노트2 20180316파이썬에서 DB 접속해서 쿼리문 삽입 하는 방법 :http://pythonstudy.xyz/python/article/202-MySQL-%EC%BF%BC%EB%A6%AC라즈베리파이에서 GET Request 보내기 :http://dgkim5360.tistory.com/entry/python-requestshttps://www.geeksforgeeks.org/get-post-requests-using-python/20180317GrovePi를 사용해 초음파센서로 측정을 하기 위해 아래 url에서 지시한 대로 작업을 하였다 https://www.dexterindustries.com/GrovePi/get-started-with-the-grovepi/setting-software/ 설치 후 초음파센.. 2018. 7. 25.
raspberryPi 개발 팁 정리노트1 How to edit rasp file in root directories : https://elmoslapatop.wordpress.com/2014/01/29/raspberry-pi-cant-open-file-to-write-error-message/ How to set wifi(WPA-EAP, PEAP) in RASP : http://zelkun.tistory.com/entry/018-Raspberry-Pi-%EB%9D%BC%EC%A6%88%EB%B2%A0%EB%A6%AC-%ED%8C%8C%EC%9D%B4-%ED%95%99%EA%B5%90-WiFi-%EC%82%AC%EC%9A%A9-%EC%84%A4%EC%A0%95-WPA-EAP-PEAP How to install Raspberry OS : https.. 2018. 7. 25.
우분투 사용시 팁들 20180112우분투에서 외부 접속을 허용하기 위한 방법 :https://blog.naver.com/atm007/220109914861https://blog.naver.com/hwangs88/20165014828http://abc1211.tistory.com/289같은 공유기를 사용하고 있는 내부 네트워크에서는 포트 포워딩 까지 해줄 필요가 없다. lael 블로그를 따라 방화벽 설정을 해주니 접속이 안되는 거였다. iptables -F 로 초기화를 해주고 다시 접속을 해보니 잘 되었다. 20180118USB로 우분투 설치하는 방법 :http://sergeswin.com/1178https://medium.com/ics-lab/%EC%9A%B0%EB%B6%84%ED%88%AC-ubuntu-%EB%A1%9C-.. 2018. 7. 25.
Socket 개념 What Is a Socket?Normally, a server runs on a specific computer and has a socket that is bound to a specific port number. The server just waits, listening to the socket for a client to make a connection request.On the client-side: The client knows the hostname of the machine on which the server is running and the port number on which the server is listening. To make a connection request, the cli.. 2018. 7. 25.
Git 설치 및 지킬 세팅 시 참조한 사이트 Git 초기 설치시 세팅 때 나오는 instructions에 대한 번역 : http://dev-gabriel.tistory.com/21 Github.io 블로그 커스터마이징 때 쓰는 지킬 사용법에 대한 블로그 : http://recoveryman.tistory.com/323?category=635733 Github.io 사용하기 어렵다..다른 사람들은 어떻게 만들어서 운영하고 있는건지.. 2018. 7. 25.
Intellij_Spring 초기 세팅시 참고한 사이트들 초기설치(JAVA도 안깔려 있는 상태일 때)시 JAVA 환경 변수 설정에 도움이 된 블로그 : http://limkydev.tistory.com/61 Intellij 에 tomcat 세팅하는 방법 : http://godahye.tistory.com/entry/intellij%EC%97%90%EC%84%9C-tomcat%EC%97%B0%EB%8F%99%ED%95%98%EA%B8%B0 Intellji 에서 SpringMVC 생성하는 방법 : http://meaownworld.tistory.com/17(여기서 마지막 단계쯤 Put into Output Root 설정을 할 때 file - project structure - Artifacts 로 들어가서 해당 작업을 수행해야한다, 블로그 설명이 조금 잘못된듯) 2018. 7. 25.
Spanish 표현 정리 Amiga Yo escuchar música Amiga - I listen to music Hoy trabajo mi cuerpo - I work my body today me encuentro con mi amigo - I meet my friend Fui a Seúl - 서울로 가고 있다 Estudié el TOEIC en la academia inglesa - 토익 영어 시험을 학원에서 공부하고 있다 Hoy ha sido una sesión de ejercicios en casa - Today was a workout at home Hablo muy poco español - 에스파뇰 잘 못한다 Como estás? - how are you? Estoy bien. Gracias! ¿tu cómo e.. 2018. 7. 25.
블로그 시작 드디어..나만의 블로그 ㅠ 커스터마이징 할 수 있는 블로그를 개설하기 위해 처음엔 깃허브.io 블로그를 사용하려고 했지만 의외의 진입장벽(지킬 --> Ruby 언어, 그외 변경사항 적용이 느린점) 으로 인해 결국 tistory 블로그를 개설하게 되었다. 깃허브에 올렸던 자료들을 정리할 예정이며 남들보단 내가 더 블로그를 애용하게 될 듯..ㅎ 2018. 7. 25.
Problem 10 문제출처 : http://euler.synap.co.kr/prob_detail.php?id=10 첨으로 오일러 문제들 중 정리하게 된 문제 이백만 이하의 소수들을 모두 더해 출력하는 문제이다 브루트 포스로 풀게 될 경우 약 14분 이라는 시간을 잡아먹게 되므로 시간적으로 비효율적인 방법이다. 이를 수학적으로 접근하게 되면 빨리 풀 수 있게 되는데 에라토스테네스의 체라는 방법을 이용할 수 있다. 기본적으로 그 방법에 대해 알고는 있지만 제대로 사용해본 적이 없어서 다른 블로그의 글을 통해서 제대로 이해할 수 있었다. https://m.blog.naver.com/PostView.nhn?blogId=leejuesong&logNo=220398206365&proxyReferer=https%3A%2F%2Fwww.g.. 2018. 7. 25.