일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 딴지일보 자유게시판 파씽
- 유성
- dataset
- 노은
- swift
- python
- MDB
- Xcode
- VBA
- 달력
- C#
- exifread
- 대전 업힐
- EXIF data
- 자전거
- Exif
- kanna parser
- 대전 자전거
- file move
- insert into
- kanna html parser
- mdb table 합치기
- euc-kr
- html parser
- 대전
- 파이썬
- StreamReader
- 엑셀
- 스위프트
- swift html parser
- Today
- Total
목록프로그래밍 (88)
Fly to the sky & Return
위의 그림과 같은 Sudoku 문제가 있을때 그것을 푸는 코드를 작성해볼것입니다. 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 ..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 using System; using System.Net; using System.IO; using System.Text.RegularExpressions; class Program { static void Main(string[] args) { string url = "https://www.naver.com"; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); StreamReader stream = new StreamRe..
맘에 드는 epub reader가 없어서 직접 만들어볼라고 합니다. 일단 기본은 다음과 같다고 함 An ePub reader is a software application that can display ePub files, which are a popular digital book format. Here is a high-level overview of the steps you can follow to create an ePub reader using C#: Load the ePub file: You will need to find a way to read the ePub file into your application, either by using a library that supports ePub p..
1 2 3 4 5 6 7 if (printDialog1.ShowDialog() == DialogResult.OK) { label7.Text = printDialog1.PrinterSettings.PrinterName.ToString(); StreamWriter sw = new StreamWriter(destFile1, false); sw.WriteLine(label7.Text); sw.Close(); } Colored by Color Scripter cs 1 2 3 4 5 6 7 8 if (System.IO.File.Exists(destFile2)) { string line; System.IO.StreamReader file = new System.IO.StreamReader(destFile2); lin..
To use Anaconda on Ubuntu, you need to first install the Anaconda distribution. Here's a step-by-step guide: Download the Anaconda installation script from the Anaconda website: https://www.anaconda.com/products/distribution Open a terminal window and navigate to the directory where you saved the installation script. Make the script executable with the following command: bashCopy code chmod +x A..
To use the OpenAI GPT API in Python, you can use the openai library, which provides a simple Python interface to interact with the OpenAI GPT API. Here's a basic example of how you could generate text using the GPT API: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 import openai # Set the OpenAI API key openai.api_key = "YOUR_API_KEY" # Define the model and prompt to use model_engine = "..
1 2 3 4 5 6 7 8 9 10 11 12 private Form IsFormAlreadyOpen(Type FormType) { foreach (Form OpenForm in Application.OpenForms) { if (OpenForm.GetType() == FormType) return OpenForm; } return null; } Colored by Color Scripter cs 1 2 3 4 if ((IsFormAlreadyOpen(typeof(Form2)) != null)) { //코 } Colored by Color Scripter cs
텍스트 문서를 dataset으로 만든 후 ..우리가 필요로 하는 컬럼에 조건을 걸어서 원하는 데이터를 추출하는 방법입니다. 1 2 3 DataRow[] result = ds.Tables[0].Select("Co1 = 김말동"); test1 = int.Parse(result[0]["Co3"].ToString()); //나이 데이터로 int cs 요렇게 DataRow로 변환후에 원하는 위치에서 필요한 값을 얻어냅니다..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.IO; namespace txt_dat..
엑셀을 이용하여 데이터베이스에 데이터를 insert 할때 발생하는 에러중에 하나입니다. 1 2 string con_excel = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath + ";Extended Properties='Excel 8.0;HDR=NO'"; Colored by Color Scripter cs 엑셀사용을 위한 provider 옵션 마지막에 HDR 부분(헤더관련)이 NO로 되어있는 경우 발생한다고 알려져있습니다 그래서다음과 같이수정하면 1 2 string con_excel = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath + ";Extended Properties='Ex..