This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you need to add process name then modify the PROCESS_NAMES() value. | |
Step 1: | |
Save the script to a file, for example, stop_processes.sh | |
Step 2: | |
Make the script executable: chmod +x stop_processes.sh | |
Step 3: | |
Run the script whenever your PC slows down: ./stop_processes.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Nested Table Design</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// editor | |
"editor.fontSize": 20, | |
"editor.fontFamily": "Fira Code, Operator Mono", | |
"editor.fontLigatures": true, | |
"editor.wordWrap": "on", | |
"editor.minimap.enabled": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Responsive Images</title> | |
<link rel="stylesheet" href="./style.css" /> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="relative overflow-hidden h-[250px] lg:h-[650px] bg-cover w-full bg-bottom"> | |
<div class="h-full w-full"> | |
<div class="wrapper"> | |
<div id="slider"> | |
<div class="slide"> | |
<div class="slide-wrapper"> | |
<div class="img-wrapper"> | |
<img src="https://wallpapercave.com/wp/wp1808936.jpg" alt=""> | |
</div> | |
<div class="title-wrapper"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="space-y-4"> | |
<div class="flex items-center gap-2"> | |
<h1 class="text-4xl font-bold text-[#1B1D21]"> | |
{{ formatDate2(selectDate.toLocaleDateString()) }} | |
</h1> | |
<DatePicker class="shrink-0" v-model="selectDate"> | |
<template v-slot="{ inputValue, togglePopover }"> | |
<button @click="togglePopover()"> |