convert +append -background black image1.jpg image2.jpg output.jpg
convert -append -background black image1.jpg image2.jpg output.jpg
convert +append -background black -border 1 -bordercolor white -gravity center image1.jpg image2.jpg output.jpg
As a root
:-
rfkill unblock wifi
wpa_supplicant.service
and dhcpcd.service
:-systemctl enable --now wpa_supplicant.service && \
systemctl enable --now dhcpcd.service
wpa_supplicant
:-wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
wpa_supplicant
process should you need to connect to a different network:-killall wpa_supplicant
wpa_supplicant.conf
file:-ctrl_interface=/run/wpa_supplicant
update_config=1
ap_scan=1
fast_reauth=1
country=MY
network={
ssid="MYSSID"
psk="passphrase"
}
Rujukan: wpa_supplicant | ArchWiki
syntax highlighting
with Pygments
is that we do not have to use HTML Escape
in order to display a character/symbol in our codes.&
> symbol with its HTML escape
which is <&
>. In this case, the code behind the symbol used in this example is <⌘
>. So in our code writing, we should type it this way; <&#8984;
>.menuentry 'FreeBSD 11.1' {
insmod ufs2
set root=(hd0,gpt10)
chainloader /boot/boot1.efi
}
hari
pada Kalendar Hijrah
akan berubah kerana pengiraan dibuat berdasarkan kemunculan bulan atau dalam istilah Inggerisnya dipanggil 'lunar calendar
'. Jadi akan ada keperluan untuk menyunting dua fail ini; satu untuk dipamerkan pada [i] conky
dengan konfigurasi dalam bahasa python
dan satu lagi untuk dipamerkan di weblog
ini melalui [ii] skripjava
.hijri.py
dari pakej ummalqura:-#id = mcjdn - UmalqurraArray.ummalqura_dat[index - 1] + 1 # komen baris asal
id = mcjdn - UmalqurraArray.ummalqura_dat[index - 1] + 0 # tambah baris baru
moment-hijri.js
:-//hd = mjdn - ummalqura.ummalquraData[i - 1] + 1 # komen baris asal
hd = mjdn - ummalqura.ummalquraData[i - 1] + 0 # tambah baris baru
submodule
public untuk git
melalui baris perintah berikut, ie.:-git submodule add -b master git@github.com-web:saya/saya.github.io.git public
Cloning into '$HOME/hugo/blog/public'...
Enter passphrase for key '$HOME/.ssh/id_rsa.web':
warning: You appear to have cloned an empty repository.
fatal: 'origin/master' is not a commit and a branch 'master' cannot be created from it
Unable to checkout submodule 'public'
origin
ada ditetapkan dengan menjalankan baris perintah seperti di bawah:-git remote -v
origin git@github.com-blog:saya/blog.git (fetch)
origin git@github.com-blog:saya/blog.git (push)
remote
yang lama dengan baris perintah berikut:-git remote remove origin
remote
yang betul dengan:-git remote add origin git@github.com-blog:saya/blog.git
submodule
:-git submodule add -b master git@github.com-web:saya/saya.github.io.git public
Adding existing repo at 'public' to the index