본문 바로가기

Oracle SQL 구루비 오라클 누적합계 - 퀴즈 형식과 기본 개념 설명 충실 http://www.gurubee.net/lecture/2955 분석 함수 월별 누적합계 - 예제가 매우 상세함 https://crasony.tistory.com/241
Developer, Study, Attitude 프로그래머로서의 성장을 도왔던 태도들 - 경험을 토대로 쓰여진 개발자의 성장에 대한 글 https://ahnheejong.name/articles/becoming-better-programmer/
Java, Spring, JSP, JSTL Servlet과 JSP와의 관계 - Servlet과 JSP의 기본 개념과 차이. 실제 쓰이는 구조 등을 상세히 다루고 있음 https://gmlwjd9405.github.io/2018/11/04/servlet-vs-jsp.html javascript에서 JSTL 혼용 실사례 https://epthffh.tistory.com/entry/JSTL-%EA%B3%BC-Javascript-%ED%98%BC%EC%9A%A9-%EC%82%AC%EC%9A%A9%EC%9D%98-%EC%8B%A4%EC%A0%9C%EC%82%AC%EB%A1%80 javascript에서 JSTL 주의 사항 https://epthffh.tistory.com/entry/Javascript-%EC%97%90%EC%84%9C-JSTL-%EC%82%..
How long will you be staying? How long will you be staying? For six weeks. Where will you be staying? At the Plaza hotel. What's the purpose of your visit? I'm here on business. / I'm here for pleasure. / I'm here for sightseeing.
자바 스프링 기본 환경 세팅 기본은 돌아가는 프로젝트를 인계 받았을 때의 경우임. 1. 먼저 jdk버전과 톰캣 버전을 확인하고 그에 맞게 설치 후 포트 안겹치게 설정. 2. text encoding 체크. (S머기업 10년차 이상인데 왜 UTF-8지정 안해놔서 한글 다 깨지게 할까 하...) 3.
ML lec 5-1: Logistic Classification의 가설 함수 정의 Spam Detection: Spam(1) or Ham(0)Facebook feed: show(1) or hide(0)Credit Card Fraudulent Transaction detection: legitimate(0) or fraud(1) 유튜브, 페이스북, 주식 등에 사용 가능하다 Pass(1)/Fail(0) based on study hours Logisitic HyphthesisH(x) = 1 / 1 + e ^ -W ^ T - X
ML lab 04-2: TensorFlow로 파일에서 데이타 읽어오기 (new) ### Loading data from fileimport numpy as np xy = np.loadtxt('data.csv', delimiter=',', dtype=np.float32)x_data = xy[:, 0: -1]y_data = xy[:, [-1]] print(x_data.shape, x_data, len(x_data))print(y_data.shape, y_data) ### Queue Runnersfilename_queue = tf.train.string_input_producer( ['data1.csv','data2.csv',...], shuffle = False, name = 'filename_queue') reader = tf.TextLineReader()key, value = rea..
test using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using NUnit.Framework; namespace RandomValue.Library.Tests{ [TestFixture] public class RandomValueCreatorTests { [Test] public void Creator_WhenDefault_Return0or1() { int output = RandomValueCreator.GetZeroOrOne(2); Assert.AreEqual(0, output, 1); Assert.AreEqual(1, output, 1); } [Test] ..