'2020/10'에 해당되는 글 91건

  1. 2020.10.15 c# webBrowser control/class IE 버전
  2. 2020.10.15 c# webBrowser + markdig
  3. 2020.10.15 c# 파일 읽어서 string에 넣기
  4. 2020.10.15 markdown 문법 - 체크박스
  5. 2020.10.15 csharp webbrowser ctrl
  6. 2020.10.15 markdown c#용 라이브러리
  7. 2020.10.14 컴퓨터 득템?
  8. 2020.10.14 DHCP hostname
  9. 2020.10.14 kibana
  10. 2020.10.14 grafana
Programming/c# & winform2020. 10. 15. 15:58

기본적으로 IE7으로 작동하기 때문에 css 등이 적용되지 않는 문제가 있다고 한다.

(구버전으로 맞추면 문제 될 건 없을수도 있지만)

 

[링크 : https://stackoverflow.com/questions/18576963/webbrowser-control-no-css-applied]

  [링크 : http://ssamlaeng.blogspot.com/2015/08/c-webbrowser-control-css.html]

  [링크 : https://www.pedautreppe.com/post/How-can-we-render-CSS3-in-a-WebBrowser-Control-.aspx]

 

win10에서 돌리니(2020년 9월 버전) 0x2710 / IE10으로 인식하는 것으로 보인다.

 

[링크 : https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/general-info/ee330730(v=vs.85)#browser-emulation]

[링크 : ]

[링크 : ]

'Programming > c# & winform' 카테고리의 다른 글

c# winform / 버튼클릭 이벤트 호출하기  (2) 2020.10.15
c# webBrowser css 적용하기...?  (0) 2020.10.15
c# webBrowser + markdig  (0) 2020.10.15
c# 파일 읽어서 string에 넣기  (0) 2020.10.15
csharp webbrowser ctrl  (0) 2020.10.15
Posted by 구차니
Programming/c# & winform2020. 10. 15. 15:10

urlrewriter를 이용해서

로컬 파일 + 생성된 html 파일을 원하는대로 표기가 가능하다.

다만 webBrowser control 에서 f5 누르면 날아가버리니 키를 막아야 할 듯?

 

[링크 : https://www.cyotek.com/blog/writing-custom-markdig-extensions]

[링크 : https://github.com/arthurrump/MarkdigExtensions]

'Programming > c# & winform' 카테고리의 다른 글

c# webBrowser css 적용하기...?  (0) 2020.10.15
c# webBrowser control/class IE 버전  (0) 2020.10.15
c# 파일 읽어서 string에 넣기  (0) 2020.10.15
csharp webbrowser ctrl  (0) 2020.10.15
markdown c#용 라이브러리  (0) 2020.10.15
Posted by 구차니
Programming/c# & winform2020. 10. 15. 14:29

와 c# 만세

이 복합한 걸 한줄에 끝내다니

 

string text = System.IO.File.ReadAllText(@"C:\Users\Public\TestFolder\WriteText.txt");

[링크 : https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/file-system/how-to-read-from-a-text-file]

'Programming > c# & winform' 카테고리의 다른 글

c# webBrowser control/class IE 버전  (0) 2020.10.15
c# webBrowser + markdig  (0) 2020.10.15
csharp webbrowser ctrl  (0) 2020.10.15
markdown c#용 라이브러리  (0) 2020.10.15
c# nullable annotation context와 attribute?  (0) 2020.10.14
Posted by 구차니
Programming/web 관련2020. 10. 15. 12:07

체크박스

[ ] [x]

 

이미지

![이미지 대체 텍스트](url)

 

[링크 : https://stackoverflow.com/questions/47344571/]

[링크 : https://jijong.github.io/2016-12-01/markdown/]

 

[링크 : https://commonmark.org/]

 

[링크 : https://www.nuget.org/packages/Markdig.Signed/]

[링크 : https://github.com/lunet-io/markdig]

 

+

확장된 녀석들이 아니면 체크박스나 텍스트박스는 지원을 안해서

HTML로 입력을 해야 할지도?

[링크 : https://stackoverflow.com/questions/24051693/input-form-in-markdown]

[링크 : https://github.com/brikis98/wmd]]

'Programming > web 관련' 카테고리의 다른 글

quirks mode  (0) 2022.08.08
grid와 flex  (0) 2022.07.04
크롬 확장도구 - json viewer  (0) 2019.08.07
resizable table cell  (0) 2019.06.17
web framework  (0) 2019.06.05
Posted by 구차니
Programming/c# & winform2020. 10. 15. 11:06

URI로 로컬 파일에 접근하려면 절대경로로 입력이 되어야 한다.

string appDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase);
webBrowser1.Url = new Uri(Path.Combine(appDir, @"Documentation\index.html"));

[링크 : https://stackoverflow.com/questions/7194851/load-local-html-file-in-a-c-sharp-webbrowser]

 

 

WebBrwoser class의 경우 Document 와 DocumentText 속성을 제공하는데

해당 속성은 WebBrowser 컨트롤에서 변경된 사항 그대로 출력하게 된다(즉, 불러온 파일을 수정하면 수정한대로 획득이 가능하다)

[링크 : https://docs.microsoft.com/.../system.windows.forms.webbrowser.document?view=netcore-3.1]

[링크 : https://docs.microsoft.com/.../system.windows.forms.webbrowser.documenttext?view=netcore-3.1]

 

 

File.WriteAllText(path, browser.Document.Body.Parent.OuterHtml, Encoding.GetEncoding(browser.Document.Encoding));

[링크 : https://stackoverflow.com/questions/2976701/save-webbrowser-control-content-to-html]

 

[링크 : https://www.c-sharpcorner.com/UploadFile/mahesh/webbrowser-control-in-C-Sharp-and-windows-forms/]

'Programming > c# & winform' 카테고리의 다른 글

c# webBrowser + markdig  (0) 2020.10.15
c# 파일 읽어서 string에 넣기  (0) 2020.10.15
markdown c#용 라이브러리  (0) 2020.10.15
c# nullable annotation context와 attribute?  (0) 2020.10.14
mono .net framework 실행  (0) 2020.10.13
Posted by 구차니
Programming/c# & winform2020. 10. 15. 11:04

 

[링크 : https://stackoverflow.com/questions/7304693/how-to-parse-markdown-via-c-sharp]

[링크 : https://code.google.com/archive/p/markdownsharp/]

 

 

[링크 : https://github.com/Knagis/CommonMark.NET] 유지보수 하지 않음

[링크 : https://github.com/lunet-io/markdig] markdownsharp 보다 인기 좋음

'Programming > c# & winform' 카테고리의 다른 글

c# 파일 읽어서 string에 넣기  (0) 2020.10.15
csharp webbrowser ctrl  (0) 2020.10.15
c# nullable annotation context와 attribute?  (0) 2020.10.14
mono .net framework 실행  (0) 2020.10.13
.net core/.net framework 컨트롤 차이  (0) 2020.10.13
Posted by 구차니
개소리 왈왈/컴퓨터2020. 10. 14. 22:26

intel core2duo E5700 

MSI MS-7592

삼성 PC3-10600U 2GB

axle G210 256MB

WD 160GB HDD WD1600AAJS

iptime ncubic usb2.0 (RTL8188CU)

 

앞에 페넘2 스티커가 있어서 조금 기대했고(페넘2 945 쓰던 기억도 났고)

그런데 열어보니 intel 초코파이 쿨러가 있네?

헐... 그래도 DDR3네? 오오

 

했는데 막상 열어보니 E5700 ㅠㅠ

 

어떻게 써먹지?

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

USB 사운드 카드 도착!  (0) 2020.10.19
해외 배송은 갑작스럽다  (0) 2020.10.17
어쩌다 보니 득템?  (0) 2020.10.11
stormbook 14 pro 64GB 모델  (0) 2020.10.05
G840에 이어 G860..  (0) 2020.09.22
Posted by 구차니

호스트 이름을 지정을 해줄순 있는데 MAC 주소에 따라서 설정을 해야 해서 서버댓수가 많으면 무지 귀찮을 수도?

 

[링크 : http://www.iorchard.net/2016/11/03/dhcp_set_hostname.html]

[링크 : http://itwiki.kr/w/리눅스_dhcpd.conf]

[링크 : https://blog.naver.com/namelessda/114773026]

 

The use-host-decl-names statement
use-host-decl-names flag;
If the use-host-decl-names parameter is true in a given scope, then for every host declaration within that scope, the name provided for the host declaration will be supplied to the client as its hostname. So, for example,

    group {
      use-host-decl-names on;

     host joe {
        hardware ethernet 08:00:2b:4c:29:32;
          fixed-address joe.fugue.com;
      }
    }

is equivalent to

     host joe {
        hardware ethernet 08:00:2b:4c:29:32;
          fixed-address joe.fugue.com;
        option host-name "joe";
      }
An option host-name statement within a host declaration will override the use of the name in the host declaration.
It should be noted here that most DHCP clients completely ignore the host-name option sent by the DHCP server, and there is no way to configure them not to do this. So you generally have a choice of either not having any hostname to client IP address mapping that the client will recognize, or doing DNS updates. It is beyond the scope of this document to describe how to make this determination.

[링크 : https://linux.die.net/man/5/dhcpd.conf]

'프로그램 사용 > PXE(네트워크 부트)' 카테고리의 다른 글

pxe boot  (0) 2023.06.21
DHCP / BOOTP / TFTP  (4) 2010.04.27
PXE 부팅하기  (0) 2010.04.25
PXE를 통한 우분투/XP 설치  (0) 2009.12.09
Posted by 구차니

 

Kibana는 Elastic Stack을 기반으로 구축된 오픈 소스 프론트엔드 애플리케이션으로, Elasticsearch에서 색인된 데이터를 검색하고 시각화하는 기능을 제공합니다

[링크 : https://www.elastic.co/kr/what-is/kibana]

 

 

[링크 : https://www.elastic.co/kr/kibana]

[링크 : https://www.elastic.co/kr/downloads/kibana]

'프로그램 사용 > 서버 모니터링' 카테고리의 다른 글

prometheus lustre expoter  (0) 2020.11.16
grafana  (0) 2020.10.14
zabbix  (0) 2020.10.14
prometheus  (0) 2020.10.14
elk - ElasticSearch, LogStash, Kibana  (0) 2019.05.14
Posted by 구차니

prometheus와 이야기가 많이 언급되서 찾아보는 중.

그나저나 다나와 깃 허브 내용이라니.. ㄷㄷㄷ

 

[링크 : https://danawalab.github.io/common/2020/03/17/Common-Dashboard.html]

[링크 : https://www.44bits.io/ko/keyword/grafana]

 

홈페이지 가서 보니 웹이라고 해서 php 이런걸로 된줄 알았는데 deb로 받게 되어있다.

단순 홈페이지가 아니라 WAS와 동적 페이지의 조합인가?

[링크 : https://grafana.com/]

'프로그램 사용 > 서버 모니터링' 카테고리의 다른 글

prometheus lustre expoter  (0) 2020.11.16
kibana  (0) 2020.10.14
zabbix  (0) 2020.10.14
prometheus  (0) 2020.10.14
elk - ElasticSearch, LogStash, Kibana  (0) 2019.05.14
Posted by 구차니