What are Metro style apps?
Windows 8 apps Development Windows 8 apps Fundamentals In .net 4.5 we have new features such as asynchronous programming , faster asp.net , modern access to […]
Windows 8 apps Development Windows 8 apps Fundamentals In .net 4.5 we have new features such as asynchronous programming , faster asp.net , modern access to […]
24시간 열정의 앱 개발, MS ‘윈도우 8 앱 스타-해커톤 코리아’ 개최 http://www.microsoft.com/ko-kr/events/2012/hackathon/register.aspx
Setting up PTR’s (aka Reverse DNS) Reporting-MTA: dns;yourt.jp Received-From-MTA: dns;your.jp Arrival-Date: Thu, 23 Aug 2012 10:14:11 +0900 Final-Recipient: rfc822;***@mail.ru Action: failed Status: 5.5.0 Diagnostic-Code: smtp;550 […]
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Declare @sTable table ( nIndex int , sName varchar(16) , sID varchar(16)) Insert @Table values(1,'1','1') Insert @Table values(2,'2','2') Insert @Table values(3,'3','3') Insert @Table values(4,'4','4') Insert @Table values(5,'5','5') --values=> --Select* --From sTest --Where Index = 45 Select * From @sTable |
type __ 정확도_ 필요 저장공간 datetime ___1/100초 8바이트 smalldatetime 1분 ___4바이트
|
1 2 3 4 5 6 7 8 |
Dim sVal as string --중간 생략-- sVal = IIf(IsNull(rs("Modi_Date")), "", rs("Modi_Date")) //mssql query : isNull(컬럼, '변경할문자') |
MS SQL isNUL 로 처리 해도 1900-01-01 로 나오는 경우 또는 01 1 1900 12:00AM
|
1 2 3 4 5 6 7 |
CancelDate = CASE WHEN CancelDate = '01 1 1900 12:00AM ' THEN '' ELSE CONVERT(varchar, CancelDate, 120) END FROM Product_List |
참조 : https://www.mssqltips.com/sqlservertip/1145/date-and-time-conversions-using-sql-server/
|
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 |
<style type=”text/css”> <!– .solid1{ border-color:#999999; background-color:#FFFFFF; border-style:solid; border-top-width:1px; border-right-width:1px; border-bottom-width:1px; border-left-width:1px; color:#FF0000; } .solid2 { border-color:#999999; background-color:#FFFFFF; border-style:solid; border-top-width:0px; border-bottom-width:1px; border-left-width:0px; border-right-width:0px; color:#0000FF; } .dashed1 { border-color:#999999; background-color:#FFFFFF; border-style:dashed; border-top-width:1px; border-bottom-width:1px; border-left-width:1px; border-right-width:1px; color:#FF0000; } .dashed2 { border-color:#999999; background-color:#FFFFFF; border-style:dashed; border-top-width:0px; border-bottom-width:1px; border-left-width:0px; border-right-width:0px; color:#0000FF; } –> </style> |
|
1 2 3 |
Stopping sshd: [FAILED] |
debug 참조 :http://www.thegeekstuff.com/2011/06/iptables-rules-examples/ Ubuntu // ssh 없을시 1. 설치 $ sudo apt-get install ssh 2. 포트 변경 $ sudo vi /etc/ssh/sshd_config # port 22 […]
> ntsysv 부팅시 자동 시작 : chkconfig vsftpd on
참조 : https://google-developers.appspot.com/chart/interactive/docs/gallery Here’s a simple example of a page that displays a pie chart:
참조: http://webtecker.com/2008/06/12/10-free-chart-scripts/ This week I’ve been working on a project that required data to be shown visually. I needed a Chart Script that was attractive yet […]
Free Download : http://www.fusioncharts.com/goodies/fusioncharts-free/ 공짜와 유료가 차이가 있습니다. flash만 써야 되고 rendering 에서 차이가 납니다.♣ FusionCharts Free free website analysis tools is an open-source Flash […]
cat /etc/shells —- shells 보기 /bin/sh – 본쉘 /bin/bash – Bourne Again shell /bin/tcsh – TC쉘 /bin/csh – C쉘 /bin/ksh – 콘쉘 1. […]
‘영문 숫자만 입력가능 하게 만든 함수 (일일이 적기 귀찮아서 만들었음) Public Function CharacterMode(KeyAscii As Integer, Mode As Integer, Optional CharacterCode1 As Integer, Optional CharacterCode2 As […]
파일경로+파일명에서 파일명 또는 경로 알아내기 Function GetFind(What As String, Optional division As String = “\”, Optional privious As Boolean) As String Dim Length As Integer, […]
Public Function gGet_Nember(strData As String) As String ‘ 내 용 : 숫자외에 모든문자를 제거한다.Dim i As Integer Dim strNum As String Dim strTmp As String […]
참조 : https://learn.microsoft.com/en-us/windows/win32/api/iphlpapi/nf-iphlpapi-getipaddrtable c++ 에서
iptables -L command not found => su 사용하지 말고 su – 로 root 계정로그인 su 는 root 권한에 포함되어 있는 환경변수는 하나도 가져오지 않습니다. 엄청난 […]
Copyright © 2026 | WordPress Theme by MH Themes