Skip to content

Instantly share code, notes, and snippets.

View od3n's full-sized avatar
🎯
Focusing

Salahuddin Hairai od3n

🎯
Focusing
View GitHub Profile
@od3n
od3n / mobilejd.md
Created September 16, 2021 08:43 — forked from r0lodex/mobilejd.md
Job Description -- Senior Hermo Mobile Developer

Hermo Senior Mobile Application Developer

Job description for Senior Mobile Application Developer

Job Scope

  • 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
@od3n
od3n / hermo-ui-dev.md
Created September 16, 2021 08:42 — forked from r0lodex/hermo-ui-dev.md
UI Developer (React)

Frontend Programmer

Job description for UI Developer

Responsibilities

  • Design, build and maintain efficient, reusable and reliable frontend codes.
  • Write test codes based on requirements given.
  • Ensure best possible performance, quality, security and responsiveness of apps
  • Ensure technical feasibility of UI/UX Designs
  • Collaborate with other team members to evaluate and investigate design approaches and prototypes.
@od3n
od3n / hermo-php-dev.md
Created September 16, 2021 08:42 — forked from r0lodex/hermo-php-dev.md
Job Description -- Senior PHP Developer

Senior Developer

Job description for Senior Developer

Requirement

  • Minimum 3 years development experience
  • Well versed in PHP, Node JS, and query languages e.g MySQL, Postgres
  • Follow development best practices
  • Experienced in MVC frameworks e.g Laravel, Yii2
  • Experienced in e-commerce development or similar
  • Experienced in managing project
@od3n
od3n / Response.php
Created August 11, 2020 09:20 — forked from jeffochoa/Response.php
Laravel HTTP status code
<?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;
@od3n
od3n / MailHog configuration
Created November 21, 2019 04:15 — forked from Propaganistas/MailHog configuration
Laravel MailHog SMTP configuration
# Mailhog
MAIL_DRIVER=smtp
MAIL_HOST=0.0.0.0
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
@od3n
od3n / .php_cs.laravel.php
Created November 11, 2019 10:38 — forked from laravel-shift/.php-cs-fixer.php
PHP CS Fixer - Laravel Coding Style Ruleset
<?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)
#
@od3n
od3n / deploy.sh
Created April 16, 2019 03:32 — forked from BenSampo/deploy.sh
Laravel deploy script
# 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']