-
Kalian login dengan akun google yang akan digunakan untuk kirim email
-
Kemudian menuju Halaman ini Setting Account Google
-
Anda ke sidebar sebelah kiri dan pilih Security
-
Kemudian anda harus melakukan 2-Step Verifikasi ,
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am destroylord on github. | |
* I am f1nal1 (https://keybase.io/f1nal1) on keybase. | |
* I have a public key ASBZ8ud1zQOSplYHEKsC9aH2I2BQN8qE4Ypl-D3ksXXoUQo | |
To claim this, I am signing this object: |
This file contains 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
<?php | |
echo "Hello World"; | |
?> |
- Koneksi laptop harus terhubung dengan 1 koneksi
- Buka arduino uno Kemudian buka firmate (file -> examples -> firmata -> firmataPlus)
- Masukkan port usb
- Kemudian ketikkan perintah pada terminal
sudo chmod 666 <nama_port>
- Verify dan upload program pada firmata
- Selesai
- Client side -> jika tidak ada folder node_modules maka di install dulu kemudian dijalankan dengan perintah
npm run start
This file contains 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
<?php | |
use Illuminate\Support\Facades\Storage; | |
public function update(Post $post) | |
{ | |
if ( request()->file('thumbnail')) { | |
Storage::delete($post->thumbnail); | |
$thumbnail = request()->file('thumbnail')->store('images/posts' ); | |
}else{ |