-
Web Dev
Batch Image Loader
2023-08-20
Features lazy load batch (bulk) images zoom in an image on click load more images on every 100 entry skip broken or blocked image source URLs (src) Tech Stack Frameworks: Jekyll (Ruby) & Liquid template Frontend: HTML/CSS/JS & Jquery Data:...
-
Music
100 famous rap lyrics in the world
2023-08-17
1. "I came, I saw, I conquered. Or should I say, I saw, I conquered, I came." - Jay Z, "Izzo (H.O.V.A)" (United States) 2. "If I say I'm going to die today, I'm going to die today." - Eminem,...
-
ebook
6 Useful Hacks for ebook Publish in 2023
2023-07-19
# Choose a legit ebook editing software/program If you plan to write and publish an ebook, it's best practice to pick a robust ebook editing program for your manuscript. There are plenty of ebook editing softwares/programs you can go for...
-
Web Dev
Live CSS trainer v2.0
2023-07-03
validate your css codes LIVE without auto-completion ✔️ write css code manually! ✔️ copy & paste may not work! ✔️ hover or click HTML element on each question to...
-
Web Dev
Live CSS trainer v1.0
2023-06-22
<h1>validate your css codes LIVE</h1> <h1>without auto-completion</h1> <p> ✔️ write css code manually! ✔️ example #1: type * {color: blue;} ✔️ example #2: type html {background-color: grey;} ✔️...
-
Web Dev
what is switch statement?
2023-05-26
what is switch statement? switch statement is a conditional statement in JS (and in most programming languages) to execute a certain action over multiple inner blocks called case. switch takes an expression (input condition) that looks for a match...
-
Web Dev
what is if-else statement?
2023-05-14
if-else statement is one of the most widely used conditional statements in most programming languages to execute a certain action in (a task of) a program. # what is if statement? In JS, you can do a conditional test...
-
Web Dev
Bootstrap Nav, Browser inspection, and Browser rendering process
2023-04-23
# Bootstrap navigation Bootstrap navigation is one of the most widely used navigation templates and there are a lot of practical points that help get familiar with **frontend**. In this post, we are going to have a close look at...
-
Web Dev
what is web and HTML/CSS/JS ?
2023-04-19
# What is Web? Web (World Wide Web; WWW) is a vast online information system you can write, read, watch, or consume resources such as documents, media, etc accessed by web browser on the Internet. You can think like the...
-
Web Dev
What are domain, nameserver, and DNS?
2023-04-12
# domain, nameserver, and DNS When you visit a website, there's a lot going on behind your computer until you actually view the website. In this post, you will learn the process of DNS resolution in detail and will...
-
Web Dev
how to use git
2023-04-09
Git is a version control system where you can upload, update, and track the source code of your project. Also, you can easily deploy codes in your Git repository to a deployment/hosting platform. There are so many benefits from...
-
Web Dev
[JS variables] what is var, let, and const?
2023-04-08
In any script/programming language, variable is a logical storage where you can assign value into, and JS has three types of variables; var, let, and const. Let's get familiar with some of the variable-related terms first. * Declaration is...
-
Network
[Packet Tracer] Configuring a DHCPv4 Server and a Relay Agent
2022-07-14
[Cisco Network Academy](https://www.netacad.com/) provides plenty of learning resources in networking. I will cover how to configure basic DHCPv4 on a router and a DHCPv4 Server, and a DHCP relay agent using [Packet Tracer](https://www.netacad.com/courses/packet-tracer) where you can simulate network topologies and...
-
Web Dev
[Gitpod] 웹에서 코딩하기
2022-07-12
[Gitpod](https://www.gitpod.io/)은 오픈소스 원격 개발 플랫폼이다. 이미 굉장히 많은 사용자들이 있고, 이 블로그 또한 처음부터 Gitpod 사용했다. 개인적으로 생각하는 Gitpod의 가장 큰 장점은 사용자가 본인 컴퓨터에 로컬 개발환경 세팅에 시간을 너무 많이 투자해야 할 필요가 없고, 모든 걸 Gitpod이 제공하는 원격...
-
Web Hack
Insert screenshot into Markdown doc in a second
2022-07-11
# What is Markdown? [Markdown](https://www.markdownguide.org/getting-started/) is a free open-source web-focused markup language that gives you hassle-free writing experiences (indeed, once you get familiar with it). As you can so easily find many of how-to-posts on syntax, structure, and so on...
-
Web Dev
Nelify에 Jekyll 웹사이트 배포하기
2022-07-10
정적 웹사이트나 블로그에 관심이 많다면 [Jekyll](http://Jekyllthemes.org/)에 대해 들어 봤을 것이다. 간단한 구글링만으로도 Jekyll을 사용하여 어떻게 웹사이트나 블로그를 만드는지 쉽게 알 수 있다. 이 블로그 또한 Jekyll 기반이고, [Better Jeong](https://betterjeong.github.io/blog/21042701/)님과 [Jihye Leee](https://www.jihyeleee.com/blog/third-designer-can-make-Jekyll-blog/)님의 블로그 포스트를 참고하여 커스터마이징하였다. # Nelify에 배포하기 Jekyll기반 블로그를...
-
Programming
Image crawling with Python on Chrome browser
2022-07-09
Step by step insturction ## 1. Install selenium and beautiful soup on terminal ```python pip install bs4 pip install pip install selenium ``` ##...