Skip to content

Instantly share code, notes, and snippets.

View agisrh's full-sized avatar
:atom:
Focusing

Agis R Herdiana agisrh

:atom:
Focusing
View GitHub Profile
@agisrh
agisrh / function_helper.dart
Last active March 17, 2023 03:29
Flutter Function Library
/*** 1. Regex Validation Email ***/
String email = '[email protected]';
bool isValidEmail = RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+").hasMatch(email);
/*** 2. Hide Partial Email Address ***/
String email = "[email protected]";
int leftChar = 1; // num of left character to show
int rightChar = 2; // num of right character to show
int hideChar = email.split("@")[0].length - rightChar;
String result = email.replaceRange(leftChar, hideChar, '*' * (hideChar-leftChar));
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps JavaScript API v3 Example: Directions Waypoints (LatLng)</title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?key="></script>
<script type="text/javascript">
var directionDisplay;
var directionsService = new google.maps.DirectionsService();
@agisrh
agisrh / Googlemaps.php
Last active November 27, 2021 14:58
Google Maps Codeigniter library for PHP version 7 or higher file modified from https://github.com/BIOSTALL/CodeIgniter-Google-Maps-V3-API-Library
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter Google Maps API V3 Class
*
* Displays a Google Map
*
* @package CodeIgniter
* @subpackage Libraries
* @category Libraries