posted by 네코냥이 2013. 5. 28. 13:19


SQLiteSpy_1.9.3.zip


SQLiteSpy_1.9.1.zip


posted by 네코냥이 2013. 5. 26. 10:53
별도의 메일서버없이 gmail을 이용해서 메일을 보내자..한호정평점: 없음조회: 779

필수 : using System.Net.Mail;

 

SmtpClient client = new SmtpClient("smtp.gmail.com", 587); // 희안하게 465는 않되네요...-_-;;
                client.UseDefaultCredentials = false; 
                client.EnableSsl = true;  // SSL 쓴다는 소리
                client.DeliveryMethod = SmtpDeliveryMethod.Network; GMAIL 인증
                client.Credentials = new System.Net.NetworkCredential("구글 아이디", "구글비밀번호");

                MailAddress from = new MailAddress("보낼사람표시", "보낼사람 이름", System.Text.Encoding.UTF8);
                MailAddress to = new MailAddress("받을 사람 이메일 주소 ");
                MailMessage message = new MailMessage(from, to);
                
                message.Subject = "제목";
                message.Body = "본문";
                message.SubjectEncoding = System.Text.Encoding.UTF8;

                message.BodyEncoding = System.Text.Encoding.UTF8;

                try
                {
                    // 동기로 메일을 보낸다.
                    client.Send(message);
                    
                    MessageBox.Show("전송되었습니다", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    // Clean up.
                    message.Dispose();
                }

이곳에 가입해서 처음쓴 글이네요..^^
이제 막 고등학교 입학하는 학생입니다. 잘부탁드려요.


posted by 네코냥이 2013. 5. 23. 09:08

1. 윈도우 서버 2008 개요


2-1. vmware 설치 및 운영체제 설치


2-2 초기구성작업

- 시간, 업데이트, 서버 이름 설정

- 텔넷 설치

- 원격접속 사용자 당 세션늘리기

- 방화벽 설정 (개인, 공용, 도메인 차이점)

- 역할,기능 설치


# SID, sysprep

# 서버관리자>구성>고급 보안이 포함된 Window 방화벽


4 파일시스템

- 파일시스템 보안관리

- 공유폴더 관리

- 할당량 지정

- 파일 시스템 리소스 관리자


posted by 네코냥이 2013. 5. 12. 22:38


MS c#, ASP.NET 


사용자 편의를 많이 신경써주었다.


편하게 코딩을 하고 편하게 결과를 낼 수 있다고 생각됬지만,


완전히 배우기 전까지는, 자동으로 처리해주는 부분에 대하여 무지하기 때문에


어디서 잘못됬는지 알기가 힘들다.


 코딩 외에 결과를 내면서 붙닥치는 문제에 시간소모가 크다.

posted by 네코냥이 2013. 5. 7. 09:01



MVVM: an architectural pattern used in software engineering that originated from Microsoft that is specialized in the Presentation Model design pattern. It is based on the Model-View-Controller pattern (MVC), and is targeted at modern UI development platforms (WPF and Silverlight) in which there is a UX developer who has different requirements than a more "traditional" developer. MVVM is a way of creating client applications that leverage core features of the WPF platform, allows for simple unit testing of application functionality, and helps developers and designers work together with less technical difficulties.

VIEW: A View is defined in XAML and should not have any logic in the code-behind. It binds to the view-model by only using data binding. 

MODEL: A Model is responsible for exposing data in a way that is easily consumable by WPF. It must implement INotifyPropertyChanged and/or INotifyCollectionChanged as appropriate. 

VIEWMODEL: A ViewModel is a model for a view in the application or we can say as an abstraction of the view. It exposes data relevant to the view and exposes the behaviors for the views, usually with Commands.


posted by 네코냥이 2013. 5. 5. 22:40

[출처] http://hsjeong106.blog.me/90167324809


HTML_테이블만들기.pdf


3페이지로 구성된 블로그 포스팅입니다.

posted by 네코냥이 2013. 2. 7. 12:06

sp_help 테이블

posted by 네코냥이 2013. 2. 7. 10:16


Math.random()

=> 실행 결과 0이상 1미만의 실수



var num = 101 ;

Math.floor(Math.random()*num)

=> 실행 결과 0~100 랜덤 생성

posted by 네코냥이 2013. 2. 7. 09:01

함수

프로시저

테이블 반환

1개만 가능. SQL문장 안에서 활용이 가능하다

다수의 테이블을 반환할 수 있다.

외부 개체 접근

다른 테이블의 내용을 갱신할 수 없다.

가능

독립성

독립적으로 실행이 불가능.

SQL 구문의 재료로서 이용되어야 관찰이 가능

독립적으로 실행가능

exce 써주고, 변수 넘기면 끝

posted by 네코냥이 2013. 2. 6. 10:49

본 글은 아래의 책에서 참고된 내용입니다. 

Sams Teach Yourself iOS 6 Application Development in 24 Hours, 4th Edition




전 강좌에서는 코코아 터치가 iOS에서 어떠한 위상을 차지하는지 배웠다.


이번에는 코코아터치 레이어가 다루는 클래스에 대해서 알아보고자 한다.


$$ Cocoa Fundamentals  



코코아 터치는 다음과 같은 클래스들로 이루어져 있다.



$ Core Application Classes   


$  Data Type Classes  


$  Interface Classes   



---------------------------------------------------------------------------------------------


각각의 클래 집합들은 아래와 같다.


$ Core Application Classes   


  When you create a new application with even the most basic user interaction, you’ll be taking 

advantage of a collection of common core classes. Many of these you won’t be touching, but 

they still perform an important role. Let’s review several of these classes now.   


 - The Root Class (  NSObject  )   


 - The Application Object (  UIApplication  )   


 - Window Objects (  UIWindow  )   


 - Views (  UIView  )   


 - Responders (  UIResponder  )   


  - Onscreen Controls (  UIControl  )   

 

  - View Controllers (  UIViewController  )   



$  Data Type Classes   


  An object can potentially hold data. In fact, most of the classes we’ll be using contain a number 

of properties that store information about an object. There are, however, a set of Foundation 

classes that you use throughout this book for the sole purpose of storing and manipulating infor-

mation


-  Strings (  NSString/NSMutableString  )   



-  NSMutableString 



-  Arrays (  NSArray/NSMutableArray)   


 

-  Dictionaries (  NSDictionary/NSMutableDictionary  )   



-  Numbers (  NSNumber/NSDecimalNumber  )   


  

-  Dates (  NSDate  )   


 

-  URLs (  NSURL  )   




$  Interface Classes   


  Part of what makes the iPhone and iPad such fun to use are the onscreen touch interfaces that 
you can create. As we explore Xcode’s IB in the next hour, you’ll get your first hands-on experi-
ence with some of these interface classes. Something to keep in mind as you read through this 
section is that many UI objects can take on very different visual appearance based on how they 
are configured—so there is quite a bit of flexibility in your presentation. 

- Labels (  UILabel )   

- Buttons (  UIButton )   
 
- Switches (  UISwitch )         

- Segmented Control (  UISegmentedControl )   

- Sliders (  UISlider )   
     
- Steppers (  UIStepper )   
 
- Text Fields (  UITextField/UITextView )   
  
- Pickers (  UIDatePicker/UIPicker )   
    
- Popovers (  UIPopoverController)   



--------------------------------------------------------------------------------------------

자세한 내용은 애플 개발자 싸이트에서 Cocoa Fundamentals Guide 에 대한 설명을 읽어보길 바란다.