Konfigurasi Sublime Text 3 Favorit
Dikumpulkan dengan penuh ❤︎︎ oleh Ian Mustafa.
Bisa diakses melalui Ctrl
+Shift
+P
(atau ⌘
+Shift
+P
di Mac).
{
# Download the source | |
git clone https://github.com/instructure/canvas-lms.git canvas | |
cd canvas | |
git checkout --track -b stable origin/stable | |
rbenv install –keep 1.9.3-p545 | |
rbenv local 1.9.3-p545 | |
brew install xmlsec1 postgresql | |
bundle install | |
# If you get this error: No source for ruby-1.9.3-p545 provided with debugger-ruby_core_source gem. |
SQL Queries : | |
SELECT ( get data from table ) | |
--------------------------------- | |
SELECT <field_list> | |
FROM <schema>.<table_name> AS <alias> | |
<LEFT|RIGHT|FULL|INNER|OUTTER> JOIN <table_join_name> AS <table_join_alias> | |
WHERE <where clause> | |
GROUP BY <group by clause> | |
ORDER BY <order by clause> |
Dikumpulkan dengan penuh ❤︎︎ oleh Ian Mustafa.
Bisa diakses melalui Ctrl
+Shift
+P
(atau ⌘
+Shift
+P
di Mac).
{
This is the method I use to automatically play the audio on the page when I open it
iframe
with empty audio:<iframe src="assets/music/silence.mp3" allow="autoplay" id="audio" style="display:none"></iframe>
You can use this sound: silence
SELECT p.nama AS 'NAMA MANAGER' | |
FROM `pegawai` AS p | |
WHERE p.id_pegawai IN (SELECT id_manager FROM `pegawai`) | |
ORDER BY p.id_pegawai asc; |
SELECT | |
p.nama AS 'NAMA PEGAWAI', | |
( | |
SELECT | |
m.nama | |
FROM | |
pegawai AS m | |
WHERE | |
m.id_pegawai = p.id_manager | |
) AS 'NAMA MANAGER' |
Manage your php version via Laragon PHP UI switcher with help of powershell package manager.
For this sake ill be using https://github.com/mlocati/powershell-phpmanager) package manage to handle multi version instead of download the zip file manually. The reason why i want to using this package manager is because it easy for me to add new extension like how linux and mac do. For example, installing imagick on windows is such a hassle. Not to mention if you keep switching your laptop or pc it could make it hard to just install all back without any semi or automated script laying around.
FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.