Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View LarryEitel's full-sized avatar

Larry Eitel LarryEitel

View GitHub Profile
@LarryEitel
LarryEitel / whatsapp-web-emoji-keywords.txt
Created February 8, 2021 18:49 — forked from hkan/whatsapp-web-emoji-keywords.txt
Emoji shortcut keywords for Whatsapp Web
0⃣ 0, keycap, zero
1⃣ 1, number, one
🕜 1, 30, clock, time, one, thirty, 1:30, one-thirty
🕐 1, clock, time, one, 00, o’clock, 1:00, one o’clock
2⃣ 2, number, two
🕝 2, 30, clock, time, two, thirty, 2:30, two-thirty
🕑 2, clock, time, two, 00, o’clock, 2:00, two o’clock
3⃣ 3, keycap, three
🕞 3, 30, three, clock, time, thirty, 3:30, three-thirty
🕒 3, three, clock, time, 00, o’clock, 3:00, three o’clock
@LarryEitel
LarryEitel / 01.md
Created August 21, 2018 21:37 — forked from nasrulhazim/01.md
Laravel Default API Login

Setup

Migration

Create new migration script:

php artisan make:migration add_api_token --table=users
@LarryEitel
LarryEitel / PDO v.1.0.4dev
Created April 14, 2018 13:49
PDO v.1.0.4dev
<?php
// Start of PDO v.1.0.4dev
/**
* Represents an error raised by PDO. You should not throw a
* <b>PDOException</b> from your own code.
* @see http://php.net/manual/en/language.exceptions.php Exceptions in PHP
* @link http://php.net/manual/en/class.pdoexception.php
*/
@LarryEitel
LarryEitel / autoview-syntax.txt
Created March 30, 2018 23:37 — forked from tranzium/autoview-syntax.txt
TradingView can now become automated trading.
---------- Usage
The syntax created by these parameters is placed in an alert's description on TradingView
to be utilized by Autoview, a Chrome Extension.
Autoview: https://chrome.google.com/webstore/detail/autoview/okdhadoplaoehmeldlpakhpekjcpljmb
> Website: https://autoview.with.pink
> Help: https://use.autoview.with.pink
> Discord: https://discordapp.com/invite/BFz8VPn
TradingView: https://tradingview.go2cloud.org/aff_c?offer_id=2&aff_id=1187
#!/bin/bash
# log into your server
ssh root@[server ipaddress]
# change root password
passwd
# update all packages and operating system
apt-get update && apt-get --yes upgrade
@LarryEitel
LarryEitel / gist:3073589
Created July 9, 2012 00:45
cs:AngularJS:factor:test
module.factory "GoogleMap", ($rootScope, $location, $compile) ->
ROOTSCOPE = $rootScope
COMPILE = $compile
SJO = {lat: 9.993552791991132, lng: -84.20888416469096}
initPosition = SJO
initZoom = 16
mapOptions =
compile: $compile
rootScope: $rootScope
@LarryEitel
LarryEitel / gist:3073583
Created July 9, 2012 00:43
AngularJS factory
module.factory "GoogleMap", ($rootScope, $location, $compile) ->
ROOTSCOPE = $rootScope
COMPILE = $compile
SJO = {lat: 9.993552791991132, lng: -84.20888416469096}
initPosition = SJO
initZoom = 16
mapOptions =
compile: $compile
rootScope: $rootScope