프로그래밍

프로그래밍

Galaxy Tab S9 Series: Official Introduction Film I Samsung

Galaxy Tab S9 Series: Official Introduction Film I Samsung https://www.youtube.com/watch?v=ggfA3ltufPk https://www.marketingdive.com/news/samsung-interns-galaxy-tab-s9-campaign-trail/693598/

프로그래밍

직장 업무 3분의2가 자동화 된다

생산성 혁명이란 기술 혁신과 제도 개선을 통해 경제 생산성이 급격히 증대하는 현상을 가리키는데요. 예를 들어 18세기 후반의 산업혁명, 1920~1970년대의 포드주의, 1990년대 IT 혁명 등이 대표적입니다. 한 몇 년 간 우리는 4차산업 혁명이라는 용어를 즐겨썼습니다. 4차 산업혁명이란 초연결성(Hyper-connectivity)과 초인텔리전스(Super-intelligence) 테크를 기반으로 생산성을 극대화하는 혁명을 가리킵니다. 주요 특징은? 4차산업의 주요 특징들 디지털 기술: 사물인터넷(IoT) 빅데이터 인공지능과 같은 디지털 기술이 융합하고 발전한다. 메타버스: 사이버 물리 시스템(CPS)이 등장하면서 물리적 세계와 디지털 세계가 혼합이된다. 플랫폼: 플랫폼을 토대로 한 새로운 비즈니스 ..

프로그래밍/Python

[python] algorithm, 알고리즘

[한빛미디어] "이것이 취업을 위한 코딩 테스트다 with 파이썬" 전체 소스코드 저장소입니다 https://github.com/ndb796/python-for-coding-test Types of Algorithm Searching Sorting Recursive Backtracking Greedy Randomized Divide & Conquer Dynamic Programing https://www.instagram.com/p/CxZgarwyv_2/?igshid=MjNiZGVkZTJkZQ%3D%3D https://www.geeksforgeeks.org/python-data-structures-and-algorithms/

프로그래밍/Script

[javascript] Slider - swiper

https://swiperjs.com/demos Swiper Demos Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. swiperjs.com

프로그래밍/Script

[JavaScript] 브라우저에서 뒤로가기 했을때, 자바스크립트 실행하기

[JavaScript] 브라우저에서 뒤로가기 했을때, 자바스크립트 실행하기 // javascript window.onpageshow = function(event){ if( event.persisted ){ console.log("BFCache로부터 복원됨"); }else{ console.log("새로 열린 페이지"); } } // jquery $(window).bind("pageshow", function(event){ if( event.originalEvent.persisted ){ console.log("BFCache로부터 복원됨"); }else{ console.log("새로 열린 페이지"); } });

프로그래밍

[넥스트이지] 제주에서 2019년도 개발 참여 프로젝트

http://www.nextez.co.kr/contents/index.php?mid=0105 사업실적 - About - 다음 세상을 여는 개척자 - 넥스트이지 www.nextez.co.kr

프로그래밍/Python

[python] GUI 비밀번호 자동 생성기

##### """https://copyassignment.com/password-generator-in-python-gui-application/""" ##### # importing the tkinter module from tkinter import * # importing the pyperclip module to use it to copy our generated # password to clipboard import pyperclip # random module will be used in generating the random password import random # initializing the tkinter root = Tk() # setting the width and height o..

프로그래밍/Python

[python] pyperclip

pyperclip 1.8.2 >> pip install pyperclip A cross-platform clipboard module for Python. (Only handles plain text for now.) https://pypi.org/project/pyperclip/ pyperclip A cross-platform clipboard module for Python. (Only handles plain text for now.) pypi.org >>> import pyperclip >>> pyperclip.copy('The text to be copied to the clipboard.') >>> pyperclip.paste() 'The text to be copied to the clipb..

홍반장水_
'프로그래밍' 카테고리의 글 목록