Skip to content

Instantly share code, notes, and snippets.

View arvilmena's full-sized avatar
:bowtie:
Hi there!

Arvil Meña arvilmena

:bowtie:
Hi there!
View GitHub Profile
@arvilmena
arvilmena / cloudSettings
Last active June 19, 2018 04:37
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-06-19T04:37:20.579Z","extensionVersion":"v2.9.2"}
@arvilmena
arvilmena / .editorconfig
Last active April 17, 2018 16:37
Universal .editorconfig
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
@arvilmena
arvilmena / cloudSettings
Last active November 26, 2018 12:51
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-11-26T12:50:53.510Z","extensionVersion":"v3.2.2"}
<?php
$initial = 'A';
$students = array();
$students[] = array(
'Fornamn' => 'Hanifa',
'Efternamn' => 'Holden',
'Fodelsear' => '',
'Ambitionsniva' => '',
@arvilmena
arvilmena / index.php
Last active October 30, 2018 14:10
Persistent Google Autocomplete places
<!DOCTYPE html>
<html>
<head>
<title>Place Autocomplete Address Form</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
@arvilmena
arvilmena / README.md
Created November 15, 2018 06:26
Chronological composer install on WordPress

Introduction

@arvilmena
arvilmena / cloudSettings
Created November 15, 2018 23:58
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-11-15T23:58:43.521Z","extensionVersion":"v3.2.0"}
@arvilmena
arvilmena / cloudSettings
Created November 16, 2018 00:02
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-11-16T00:02:48.986Z","extensionVersion":"v3.2.0"}
@arvilmena
arvilmena / cloudSettings
Last active January 13, 2019 11:25
2019-01-13 VSCode Settings Xubuntu
{"lastUpload":"2019-01-13T11:24:09.136Z","extensionVersion":"v3.2.4"}
class CompanyEntity implements EntityInterface {
    
    public function get_entity_type() {
        return 'company';
    }
    
}

class ProductEntity implements EntityInterface {