Skip to content

Instantly share code, notes, and snippets.

View zachary's full-sized avatar

Zachary - Full Stack & DevOps & ML zachary

View GitHub Profile
/* Reset some default styles and provide a clean slate */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Apply a simple, elegant font to the entire page */
body {
font-family: 'Arial', sans-serif;
}
// Variable Declarations
let x;// Declares a block-scoped variable
const y = 10; // Declares a block-scoped. read-only constant
// Functions
function myFunction() {
//Function declaration
}
const myFunction = () = {
//Arrow unction exeression
}
/*** ES6 Features ***/
// Let and Const
let variableName = "value"; // Block-scoped, can be reassigned
const constantName = "value"; // Block-scoped, cannot be reassigned
// Arrow Functions
const myFunction = (param) => {
return param * 2;
}
// Template Literals
const greeting = `Hello, $(name)!` // Embedded expressions
//*** Document Methods ***
document.getElementById('id'); // Returns the element with the specified id
document.getElementsByTagName ('tag');
// Returns a live HTMLCollection of elements with the specified tag name
document.getElementsByClassName ('class');
// Returns a live HTMLCollection of elements with the specified class name
document.createElement('tag'); // Creates and returns a new element of the specified type
document.createTextNode( 'text'); // Creates a new text node with the specified text
document.setAttribute('attr', 'value');
// Sets the value of an attribute on the specified element
@zachary
zachary / bag-of-word-vectors.py
Created February 28, 2024 19:11 — forked from edubey/bag-of-word-vectors.py
Code to generate bag of word vectors in Python
# import statments
import numpy
import re
'''
Tokenize each the sentences, example
Input : "John likes to watch movies. Mary likes movies too"
Ouput : "John","likes","to","watch","movies","Mary","likes","movies","too"
'''
def tokenize(sentences):
@zachary
zachary / LaravelWhereLikeMacro.php
Created November 26, 2023 18:09 — forked from MrPunyapal/LaravelWhereLikeMacro.php
Laravel Custom 'whereLike' Macro for Dynamic 'LIKE' Searches including relationships
<?php
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Arr;
class AppServiceProvider extends ServiceProvider
{
// ...
@zachary
zachary / cheatsheet.ps1
Created August 26, 2023 03:41 — forked from pcgeek86/cheatsheet.ps1
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
@zachary
zachary / vimrc
Created December 28, 2022 15:47
vimrc supports old version for vim
"--------------------------------------------------------------------------
" $maintainer: zachary<zachary@ohyeap.com>
" $Last change: 2007 July 27
"
" $for MS-DOS and Win32: $VIM\_vimrc
" $for UNIX, Linux and BSD: $VIM\.vimrc
" $detail: When started "gvim" or "vim" it will
" already have done these settings.
"--------------------------------------------------------------------------
@zachary
zachary / installNeovim.sh
Created May 1, 2022 17:21 — forked from darcyparker/installNeovim.sh
Build and install neovim for Debian
#!/usr/bin/env bash
#Build and install neovim for Debian
#See: https://neovim.io/
#See: https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start
#See: https://gist.github.com/darcyparker/153124662b05c679c417
#Save current dir
pushd . > /dev/null || exit
@zachary
zachary / macos_big_sur_homebrew_apache_php_mariadb_2020.md
Created September 22, 2021 23:42 — forked from karlhillx/macos_big_sur_homebrew_apache_php_mariadb_2020.md
macOS Big Sur 11.0 Setup: Homebrew + Apache + PHP + MariaDB (Regularly updated)

macOS Big Sur 11.0 Setup: Homebrew + Apache + PHP + MariaDB

This document helps get your macOS development environment up and running with the latest versions of Homebrew, Apache, PHP, and MariaDB.