Job description for Senior Mobile Application Developer
- Develop Hermo mobile application for iOS and Android using React Native
- Unit testing codes
- Bug fixing and Patching
- Integrate Third-Party solutions
- Review pull requests
Job description for UI Developer
Job description for Senior Developer
<?php | |
// This can be found in the Symfony\Component\HttpFoundation\Response class | |
const HTTP_CONTINUE = 100; | |
const HTTP_SWITCHING_PROTOCOLS = 101; | |
const HTTP_PROCESSING = 102; // RFC2518 | |
const HTTP_OK = 200; | |
const HTTP_CREATED = 201; | |
const HTTP_ACCEPTED = 202; |
# Mailhog | |
MAIL_DRIVER=smtp | |
MAIL_HOST=0.0.0.0 | |
MAIL_PORT=1025 | |
MAIL_USERNAME=null | |
MAIL_PASSWORD=null | |
MAIL_ENCRYPTION=null |
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', | |
'operators' => ['=>' => null] |
kiva presentation | |
https://www.kiva.org/ | |
https://www.kiva.org/about/how | |
https://en.wikipedia.org/wiki/Kiva_(organization) | |
https://www.kiva.org/blog/feeling-the-impact-of-kivas-work-in-indonesia |
# | |
# REQUIRES: | |
# - server (the forge server instance) | |
# - site_name (the name of the site folder) | |
# - sudo_password (random password for sudo) | |
# - db_password (random password for database user) | |
# - event_id (the provisioning event name) | |
# - callback (the callback URL) | |
# |
# Change to the project directory | |
cd /home/forge/domain.com | |
# Turn on maintenance mode | |
php artisan down | |
# Pull the latest changes from the git repository | |
git pull origin master | |
# Install/update composer dependecies |
<?php | |
if ($_SERVER['REQUEST_METHOD']=='POST') | |
{ | |
if (isset($_POST['Type'])) // check jika $_POST['Type'] ada set | |
{ | |
$eType=$_POST['Type']; | |
} else { | |
$eType="Input empty"; | |
} | |
echo $eType; // keluarkan output $_POST['Type'] |