Work (67) 썸네일형 리스트형 [C#, CSharp] Web method : 자바스크립트단에서 서버단 코드 호출해서 쓰기. **csharp code** using System.Web.Services; public partial class YourPage : System.http://m.Web.UI.Page{ [WebMethod] public static string YourMethodName(string param) { // Your logic here return "Hello from the server! You sent: " + param; } } **javascript code** ************** 만약 파라미터를 두 개 보내고 싶은 경우 ************** **csharp code** using System.Web.Services; publi.. [JAVA] GENERIC 타입이 뭐야? ㅇ 클래스, 함수, 인터페이스 등이 다양한 자료형들과 함께 동작할 수 있도록 정의하는 방법.> 말이 어려운데, 더 쉽게 표현하자면 사용자가 원하는 자료 형식으로 정의한 클래스,인터페이스,함수 등을 쓸 수 있게 하는 것. 정도로 이해하면 됨. In Java, **Generics** allow you to write classes, interfaces, and methods that can operate on any data type while providing type safety at compile time. It enables code reuse and flexibility without compromising type safety, as it lets you define a placeholder .. [JAVA] REST API가 뭐야? ㅇ REST API는 REST 아키텍쳐 스타일의 원칙을 따르는 웹서비스.ㅇ 즉, 플랫폼에 한정되지 않고 모바일, 웹브라우저 등 HTTP protocol을 사용하는 다양한 시스템과 상호작용할 수 있게끔 구현하는 기술 A **REST API (Representational State Transfer Application Programming Interface)** is an architectural style and set of principles for designing networked applications, often used to interact with web services. It allows different systems to communicate over the web, typicall.. [C#, CSharp] IIS에서 TLS 1.2 버전 활성화 방법 To enable **TLS 1.2** on IIS (Internet Information Services) and disable older, insecure protocols like TLS 1.0 and TLS 1.1, you typically need to modify the Windows Server registry and ensure that the necessary updates are installed. Here's a step-by-step guide: ### 1. Check for Windows Updates First, make sure your Windows Server has the necessary updates installed to support TLS 1.2. - **Win.. TLS 가 뭐야? 요약 : 두 어플리케이션(예를 들어 웹서버랑 웹브라우저) 간 통신할 때 데이터들을 안전하게 주고 받을 수 있게 하는 암호화 통신 규약 (기술) 아래는 자세한 영어 원문 설명. TLS (Transport Layer Security) is a cryptographic protocol designed to provide secure communication over a computer network. It is widely used to protect the privacy and integrity of data transmitted between two communicating applications, such as a web browser and a web server. TLS ensures that.. [JAVA] Interface (인터페이스) - 개념, 왜 쓰는지? 결론 먼저 요약 :* 추상화* 다형성* 재사용성* 클래스 간 느슨한 결합을 위해 쓴다. 아래는 Interface 관련 자세한 설명 부분.항상 느끼는 것이지만 프로그래밍 관련 설명은 한글로 번역하면 더 어려운 것 같아 원문 그대로가 이해하기 오히려 더 쉬운 느낌.예시로, 다형성...쉽게 생각하면 우리나라 '사과' 의 경우에도 단어는 '사과' 하나이지만 뜻은 과일 의미로 쓰일 때도 있고, 잘못한 것을 사과한다는 의미로도 쓰인다. 하나의 '단어(프로그래밍의 경우 변수,함수 등)'가 여러가지로 확장돼서 쓰일 수 있음을 뜻하는 것인데 '다형성' 이라고 너무 어렵게 표현되어 있어 거리감 느껴짐. 이런 여러 가지 이유 등으로 웬만하면 영어 원문으로 찾아보고 이해하는 게 더 빠른 느낌... In Java, an i.. 기획 툴 정리 ㅇ Sketchㅇ Figmaㅇ Adobe XDㅇ Zeplin 자기 검열 ㅇ 1개 이상의 언어 학습- 본인이 하나 이상의 개발언어를 잘 다룰 수 있는가? ㅇ 1개 이상의 프레임워크 학습- 본인이 학습한 언어에 맞는 하나 이상의 프레임워크를 잘 다룰 수 있는가? ㅇ 개발 프로젝트 진행- 내가 능동적으로 참여해 주도했는가?- 내가 이 프로젝트를 왜 진행했는지 잘 설명할 수 있는가?- 내가 무엇을 배웠는지 잘 설명할 수 있는가? ㅇ 포트폴리오- 이 포트폴리오가 '나'라는 사람에 대해 잘 보여주고 있는가?- 이 포트폴리오가 내가 했던 것들을 잘 보여주고 있는가? ㅇ 알고리즘 공부- 본인이 학습한 언어로 매일 알고리즘 공부를 한 문제씩 풀고 있는가? 책 참고. 이전 1 2 3 4 ··· 9 다음