This file contains hidden or 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
[ | |
{ | |
"bookTitle": "হাবলুদের জন্য প্রোগ্রামিং", | |
"bookAuthor": "ঝংকার মাহবুব", | |
"bookPrice": "TK. 300", | |
"offerPrice": "TK. 225", | |
"authorImage": "https://i.imgur.com/gYfE1O8.jpg", | |
"bookCover": "https://ds.rokomari.store/rokomari110/ProductNew20190903/130X186/00ea58560_112222.jpg" | |
}, | |
{ |
This file contains hidden or 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
[ | |
{ | |
"id": 1, | |
"coverImage": "https://i.imgur.com/KFPqtc4.jpg", | |
"userImage": "https://i.imgur.com/6bWEcgc.png", | |
"userName": "Mehedi Hasan", | |
"postDate": "Mar 14", | |
"title": "Introduction to JavaScript", | |
"tags": ["#JavaScript", "#Programming", "#WebDev"], | |
"readingTime": 10 |
This file contains hidden or 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
[ | |
{ | |
"id": 1, | |
"name": "Watch", | |
"price": "$19.99", | |
"brand": "Rolex" | |
}, | |
{ | |
"id": 2, | |
"name": "Sunglasses", |
This file contains hidden or 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
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |
This file contains hidden or 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
#!/bin/bash | |
echo "LC_ALL=en_US.UTF-8" | sudo tee -a /etc/environment | |
echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen | |
echo "LANG=en_US.UTF-8" | sudo tee -a /etc/locale.conf | |
sudo locale-gen en_US.UTF-8 |
This file contains hidden or 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
#!/bin/bash | |
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 0 | |
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0 | |
gsettings set org.gnome.desktop.screensaver idle-activation-enabled false | |
gsettings set org.gnome.settings-daemon.plugins.power idle-dim false |
This file contains hidden or 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
deb [arch=amd64] http://deb.debian.org/debian testing main contrib non-free-firmware | |
deb-src [arch=amd64] http://deb.debian.org/debian testing main contrib non-free-firmware | |
deb [arch=amd64] http://security.debian.org testing-security main contrib non-free-firmware | |
deb-src [arch=amd64] http://security.debian.org testing-security main contrib non-free-firmware | |
This file contains hidden or 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
## FIRST LINE/ROW: Info & Status | |
# First param ─┌ | |
[username] | |
format = " [╭─$user]($style)@" | |
style_user = "bold green" | |
style_root = "bold red" | |
show_always = true | |
# Second param | |
[hostname] |
This file contains hidden or 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
"use strict"; | |
module.exports = { | |
config: { | |
updateChannel: "stable", | |
fontSize: 16, | |
fontFamily: '"JetBrainsMonoNL Nerd Font Mono", monospace', | |
fontWeight: "normal", |
This file contains hidden or 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
"use strict"; | |
module.exports = { | |
config: { | |
updateChannel: "stable", | |
fontSize: 36, | |
fontFamily: '"JetBrainsMono Nerd Font Mono", "FiraCode NFM", monospace', | |
fontWeight: "normal", |