Skip to content

Instantly share code, notes, and snippets.

View parinz1234's full-sized avatar
🍊

Parinya Onsuwan parinz1234

🍊
  • Thailand
View GitHub Profile
@parinz1234
parinz1234 / function.php
Created June 22, 2022 08:56 — forked from swapnilshrikhande/function.php
Send mail with mailgun api by PHP CURL.
<?php
define('MAILGUN_URL', 'https://api.mailgun.net/v3/DOMAIN_NAME');
define('MAILGUN_KEY', 'KEY');
function sendmailbymailgun($to,$toname,$mailfromnane,$mailfrom,$subject,$html,$text,$tag,$replyto){
$array_data = array(
'from'=> $mailfromname .'<'.$mailfrom.'>',
'to'=>$toname.'<'.$to.'>',
'subject'=>$subject,
'html'=>$html,
@parinz1234
parinz1234 / Dockerfile
Created March 22, 2022 03:50
php:8.1.4-cli with Composer
FROM php:8.1.4-cli
# Install Git
RUN apt-get update && apt-get install -y git
# Install PHP extensions
RUN apt-get update && apt-get install -y \
zlib1g-dev \
libzip-dev
RUN docker-php-ext-install zip
@parinz1234
parinz1234 / πŸ“Š Weekly development breakdown
Last active July 13, 2023 02:00
πŸ“Š Weekly development breakdown
PHP 18 hrs 1 min β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘ 81.7%
JavaScript 1 hr 19 mins β–ˆβ–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 6.0%
Vue.js 47 mins β–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 3.6%
JSON 33 mins β–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 2.6%
Other 32 mins β–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 2.5%
// Array = [3,5,-4,8,11,1,-1,6]
// target= 10
// Answer = [11,-1]
const array = [3,5,-4,8,11,1,-1,6];
const target = 10;
// 1 st solution: 2 for loop.
// time: O(N^2)
// space: O(1)
const firstSolTwoArraySum = (array, target) => {