- How to start a startup course - Sam Altman
- Why to not not start a startup - Paul Graham
- Why to not not start a startup (short version)
- Do things that don't scale - Paul Graham
- Do things that don't scale - (short version)
- Airbnb: The Growth Story You Didn't Know - Growth Hackers
- To Invent the Future, You Must Understand the Past - Leslie Berlin
- All episode of Silicon Valley from HBO - No, this is not the download link
<?php | |
$data = isset($_POST['data']) ? $_POST['data'] : null; | |
$token = isset($_POST['token']) ? $_POST['token'] : null; | |
if($token === 'the_token_you_get_from_big_flip_dashboard'){ | |
$decoded_data = json_decode($data); | |
print_r($decoded_data); | |
//will print: | |
/** |
"...Sungguh, Allah menyukai orang yang tobat dan menyukai orang yang menyucikan diri" Al-Baqarah-222
- Bangkai
- Darah
- Daging babi
- Muntah
- Kencing
We are using Basic Authentication by including Authorization header in each of your request. You should include your secret key like a usual basic auth request, and use the secret key as the username.
Your secret key is:
HyzioY7LP6ZoO7nTYKbG8O4ISkyWnX1JvAEVAhtWKZumooCzqp41
- Secara bahasa artinya tempat untuk lewat atau jalan. Dikaitkan dengan Fiqih karena para ulama menggunakan jalan/metode tertentu untuk sampai pada hukum syar'i
- Secara istilah, "Apa yang diambil oleh mujtahid dari hukum syar'i yang bersifat furu' ijtihadi, yang dihasilkan dari dalil-dalil yang bersifat dzann(asumtif)"
- Maksudnya adalah seorang ulama mujtahid memiliki atau memilih satu metode dalam berijtihad, dan metode yang digunakan inilah yang disebut sebagai madzhabnya. Metode ini kemudian juga diajarkan kepada murid-murid dan ditulis dalam kitab-kitab sehingga tersebar, tersusun, dan terjaga hingga saat ini
- Cukup umum bagi nama ulama jika diakhiri dengan nisbat kepada madzhab tertentu. Misal, Imam Nawawi As-Syafi'i, atau Ibnu Qudamah Al-Maqdisi Al-Hambali
- Nisbat tersebut menunjukkan bahwa mereka mengikuti madzhab tersebut dalam berijtihad
- impact downtime bisa besar, 1 menit pun besar
- monitoring
- collect. Define what data do you want to collect. Maybe tps, response time. Method can be push or pull
- process. How you use the metric data that you collect. Maybe parse the log, etc
- observatibility. Give you a quick glance at your system.
- monitoring from different perspectives
Have you ever stuck in a condition where you have to restore your mysql database from only an *.frm and *.ibd files? I have.
So what happen is somehow our mysql service is going down and can not be restarted. I try many things to no avail and getting tired of it.
And then I came across this page https://dev.mysql.com/doc/mysql-enterprise-backup/3.11/en/partial.restoring.single.html. I think probably I can just copy the *.frm and *.ibd file, wipe the current mysql data, reset the mysql, and restore those two files. Easy.
So I stupidly remove /var/lib/mysql/[schema_name]
, and also /var/lib/mysql/ib*
file. Restart the mysql, and it start normally. Finally!