List of latest dofollow backlinks
In this post I want to share a list of dofollow blogs. Maybe it can help other beginner blogger friends, who happen to be still looking for backlinks from several blogs that follow the dofollow system. The number is about 200 blogs. Maybe from all the lists below some have been changed to nofollow. However, there is nothing wrong if you keep commenting there.
Because as we know now, the algorithm in Google search has also made many changes. Where exactly for now and in the future nofollow backli ...
gulp src pattern
Pattern Untuk Mengecualikan Seluruh File Dalam Subfolder (Termasuk Di Dalam Folder Itu Sendiri/Subfiles)
!src/**/*
contoh struktur folder
file.root
file.php
src/file.txt
src/sub/file.txt
hasil pattern
file.root
file.php
Pattern Untuk Mengecualikan Seluruh File Berawalan Dengan Underscore (_)
# including subfolder files
!src/**/_*/**/*
# src subfiles
!src/**/_*/
Contoh
Contoh daftar struktur folder
file.txt
folder
folder/file.txt
folder/_subfolder
folder/_subfolder/file.txt
folder/subfolder
fold ...
Setup node_modules bin on global environtment path
Setup Windows
Setup Linux
sudo gedit ~/.bashrc
add following codes to end of file
if [ -d "./bin" ] ; then
export PATH="$PATH:./bin"
fi
if [ -d "./node_modules/.bin" ] ; then
export PATH="$PATH:./node_modules/.bin"
fi
XAMPP vhosts config full example and guide
Sample configuration for xampp virtual hosts 100% work tested 2022
XAMPP vhosts config full example and guide
important for linux and mac users. Make sure permission of xampp, open etc/httpd.conf change nobody and nogroup with your username and your group
sudo gedit /opt/lampp/etc/httpd.conf
<IfModule unixd_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/grou ...
Cara menghapus direktori path panjang di terminal
Bagaimana cara mempersingkat jalur direktori saat ini yang ditampilkan di terminal?
Pergi ke Home direktori atau ~
Edit .bashrc
change lowercase \w to uppercase \W.
See below image:
Selesai.
Sejak bash 4, untuk mempersingkat direktori path di baris perintah dilakukan dengan menggunakan PROMPT_DIRTRIM di file .bashrc.
PROMPT_DIRTRIM=1
Hasil:
sebelum: bob@bob-ubuntu:~/Desktop/Drop/box/School/20/17/C/A3/$
sesudah: bob@bob-ubuntu:…/A3/$
Baca Bash Manual untuk informasi lebih lanjut.
Cara agar VSCode tidak otomatis membuka subfolder dari file yang kita buka
Buka pengaturan VSCode
Caranya pergi ke File -> Preferences -> Settings (atau pada Mac Code -> Preferences -> Settings)
Cari keyword explorer.autoReveal
Pastikan itu tidak dicentang, atau atur ke false di pengaturan JSON Anda.
Ngomong -ngomong, saya tidak tahu apakah Anda melakukannya, atau Anda tidak tahu harus mencari apa,
tetapi Anda harus mencoba menyelesaikan masalah semacam ini dengan mencari jawaban.
Misalnya, saya tidak tahu jawabannya, tetapi ‘nonaktifkan folder pem ...
Fix ts-node TypeError ERR_UNKNOWN_FILE_EXTENSION Unknown file extension .ts
Error Case
Common case TypeError [ERR_UNKNOWN_FILE_EXTENSION] in typescript ESM with ts-node
TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for /index.ts at new NodeError (node:internal/errors:371:5) at Object.file: (node:internal/modules/esm/get_format:72:15) at defaultGetFormat (node:internal/modules/esm/get_format:85:38) at defaultLoad (node:internal/modules/esm/load:13:42) at ESMLoader.load (node:internal/modules/esm/loader:303:26) at ESMLoader.moduleProvider ...
Make CYGWIN binary as priority in windows
Important syntax to make cygwin as priority
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH";
Example make cygwin as priority in bash script
#!/usr/bin/env bash
#sh -c 'rm -rf node_modules/a* & wait'
# make cygwin bin as priority
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH";
# Your code here
Fix ts-node TypeError ERR_UNKNOWN_FILE_EXTENSION Unknown file extension .ts
Error Case
Common case TypeError [ERR_UNKNOWN_FILE_EXTENSION] in typescript ESM with ts-node
TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for /index.ts at new NodeError (node:internal/errors:371:5) at Object.file: (node:internal/modules/esm/get_format:72:15) at defaultGetFormat (node:internal/modules/esm/get_format:85:38) at defaultLoad (node:internal/modules/esm/load:13:42) at ESMLoader.load (node:internal/modules/esm/loader:303:26) at ESMLoader.moduleProvider ...
Make CYGWIN binary as priority in windows
Important syntax to make cygwin as priority
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH";
Example make cygwin as priority in bash script
#!/usr/bin/env bash
#sh -c 'rm -rf node_modules/a* & wait'
# make cygwin bin as priority
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH";
# Your code here