일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- data science
- nodeJS
- 빅데이터
- 몽고디비
- c++
- openCV
- Statistics
- 통계
- 김양재 목사
- 우리들교회
- 주일설교
- R
- 데이터 과학
- 인공지능
- 확률
- node.js
- WebGL
- No SQL
- MongoDB
- probability
- 빅 데이터
- Big Data
- Machine Learning
- Artificial Intelligence
- Deep learning
- 김양재 목사님
- 빅 데이타
- 딥러닝
- 김양재
- 빅데이타
- Today
- Total
목록C# (4)
Scientific Computing & Data Science
1System.Diagnostics.Debug.WriteLine("Value : " + my_val);cs
원문 : http://www.ciokorea.com/news/21219 개발자의 채용 기회를 높이는 좋은 전략 중 하나는 새로운 프로그래밍 언어를 학습하는 것이다. 문제는 어떤 언어를 배우느냐는 것이다.개발자 채용 사이트를 들여다보면 수요가 많은 프로그래밍 언어를 파악할 수 있다. 그리고 지금 당장은 자바, C, C++, 오브젝티브(Objective) C 같은 프로그래밍 언어, 파이썬(Python), PHP, 루비(Ruby), 자바스크립트(JavaScript) 같은 스크립트 언어, SQL 데이터베이스 프로그래밍 능력을 갖추고 있는 프로그래머들이 인기다.하지만 미래에 좋은 일자리를 차지하기 위해 한 발 앞서 나가고 싶다면 자바나 파이썬 같은 일반적인 언어 이상을 공략해야 한다.지금 당장은 아니지만, 미래에..
using System;using System.Net; namespace ConsoleApplication4{ class Program { static void Main(string[] args) { IPHostEntry IPHost = Dns.GetHostByName(Dns.GetHostName()); Console.WriteLine(IPHost.AddressList[0].ToString()); } } }
using UnityEngine; using System.Collections; public class RandomNumber : MonoBehaviour { public GUIText myText; System.Random r = new System.Random((int)System.DateTime.Now.Ticks); // Use this for initialization void Start () { int random = r.Next(1, 1000); myText.text = random.ToString(); } // Update is called once per frame void Update () { } }