#Latihan Batas pengiriman ulang email ini hingga tanggal 30 september, jadi tidak terlalu terburu buru
Beberapa hal yang ingin saya tahu adalah.
-
Tolong tuliskan 1 artikel yang memuat 350 kata dan di bagi dalam 4 paragraf. Kata kunci yang digunakan bisa apa saja. Kata kunci di tulis 1x dalam 1 paragraf dan di tandai dengan bold/underline
-
Tolong buat 2 paragraf yang memiliki beberapa frase seperti yang di cantumkan dalam attachment.
-
Tolong review halaman yang di cantumkan di bawah ini, lalu buat tulisan review lain dengan hal yang sama. Hanya 1 paragraf dan terdiri dari 100-150 kata.
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
wget https://wordpress.org/latest.zip | |
unzip latest.zip | |
cd wordpress | |
mv * ../ | |
cd .. | |
rm latest.zip | |
rmdir wordpress | |
read -p "Database Name : " dbname | |
read -p "Database User : " dbuser | |
read -p "Database Password : " dbpass |
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
id: 1207 | |
name: zerinabanu | |
environments: | |
api: | |
domain: api.zerinabanu.com | |
database: zerinabanu-serverless | |
storage: zerinabanu | |
memory: 1024 | |
cli-memory: 512 | |
build: |
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
const express = require('express') | |
const app = express() | |
app.get('/', function (req, res) { | |
res.send('Hello World') | |
}) | |
app.listen(3000) |
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 | |
$response->body() : string; | |
$response->json() : array|mixed; | |
$response->status() : int; | |
$response->ok() : bool; | |
$response->successful() : bool; | |
$response->failed() : bool; | |
$response->serverError() : bool; | |
$response->clientError() : bool; |
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\Http; | |
// kirim request | |
Http::get('...'); | |
Http::post('...'); | |
Http::put('...'); | |
Http::delete('...'); |
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 | |
// set timeout | |
Http::timeout($second)->get('...'); | |
// retry | |
Http::retry($times, $wait)->post('...'); | |
// throw | |
Http::post('...')->throw()->json(); |
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 | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
class MemberController extends Controller | |
{ | |
// | |
} |
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 | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
class MemberController extends Controller | |
{ | |
public function index() | |
{ |
OlderNewer