I hereby claim:
- I am kosalvann on github.
- I am ko_sal (https://keybase.io/ko_sal) on keybase.
- I have a public key ASCoN7i5Ri7UFvVzdc7VPN8-cdaD5o-L-vVATaC7gYvEwwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="description" content="A random password generator tool"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Random Password Generator</title> | |
<link href="https://fonts.googleapis.com/css2?family=Material+Icons&PT+Mono&Roboto:wght@400;700&display=swap" rel="stylesheet"> | |
<style id="jsbin-css"> | |
*, :after, :before { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Custom dropdown menu written in Javascript"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Custom DropDown</title> | |
<style id="jsbin-css"> | |
*, :after, :before { | |
-moz-osx-font-smoothing: grayscale; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="A donation app written in Javascript"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Donation App</title> | |
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&family=Poppins:wght@600;700&family=Material+Icons&display=swap" rel="stylesheet"> | |
<style id="jsbin-css"> | |
*, :after, :before { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Using regex to identify a specific message variable"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Parse Message Variable</title> | |
<style id="jsbin-css"> | |
html, body { | |
padding: 20px; |
/** | |
* The data source | |
*/ | |
var groceries = [ | |
'Take out the garbage', | |
'Buy milk and eggs', | |
] | |
/** | |
* Run the todo methods on page load |
<?php | |
/** | |
* Render a simple table with headers and columns | |
*/ | |
class TableRenderer | |
{ | |
/** | |
* Declare properties | |
* | |
* @var array $headers A list of table heading |
<?php | |
/** | |
* Remove duplicates found in a list of array | |
*/ | |
class RemoveDuplicates | |
{ | |
/** | |
* Declare properties | |
* | |
* @var array $data_array The list of array |
console.log('Loading event'); | |
// Twilio Credentials | |
var accountSid = ''; | |
var authToken = ''; | |
var fromNumber = ''; | |
var https = require('https'); | |
var queryString = require('querystring'); |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |