Skip to content

Instantly share code, notes, and snippets.

@tap52384
tap52384 / README.md
Last active August 25, 2024 01:30
Get SQL Server 2022 Running on macOS via Docker

Get SQL Server 2022 Running on macOS via Docker

These directions are based on this YouTube video. The comments helped with making sure I was able to connect to the Azure SQL Edge (SQL Server) instance running via Docker the first time.

0. Install Homebrew

Homebrew is an open source package manager for macOS and Linux. ALthough we will not need it for these instructions, if you do not have the brew command already, this will install it.

@tap52384
tap52384 / monokai.md
Created October 7, 2021 01:03 — forked from r-malon/monokai.md
Monokai colors in RGB and HEX format, taken from Sublime Text 3

Monokai Colors in RGB and HEX format


  • Background: (46, 46, 46); #2e2e2e
  • Comments: (121, 121, 121); #797979
  • White: (214, 214, 214); #d6d6d6
  • Yellow: (229, 181, 103); #e5b567
  • Green: (180, 210, 115); #b4d273
  • Orange: (232, 125, 62); #e87d3e
  • Purple: (158, 134, 200); #9e86c8
@tap52384
tap52384 / oracle-reference.sql
Created August 26, 2020 14:58
Helpful Oracle SQL queries
-- See what has access to a particular table (direct and inherited):
select Grantee,'Granted Through Role' as Grant_Type, role, table_name
from role_tab_privs rtp, dba_role_privs drp
where rtp.role = drp.granted_role
and table_name = :tablename
union
select Grantee,'Direct Grant' as Grant_type, null as role, table_name
from dba_tab_privs
where table_name = :tablename;
@tap52384
tap52384 / states_hash.json
Created December 25, 2019 13:42 — forked from mshafrir/states_hash.json
US states in JSON form
{
"AL": "Alabama",
"AK": "Alaska",
"AS": "American Samoa",
"AZ": "Arizona",
"AR": "Arkansas",
"CA": "California",
"CO": "Colorado",
"CT": "Connecticut",
"DE": "Delaware",
@tap52384
tap52384 / README.md
Last active August 23, 2024 08:27
Install Windows on External Drive for macOS
@tap52384
tap52384 / .gitconfig
Created October 11, 2018 12:26
.gitconfig
[user]
name = name
email = email
[core]
excludesfile = /Users/username/.gitignore_global
autocrlf = input
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
@tap52384
tap52384 / getgrav.sh
Last active September 25, 2018 15:42
Installs multiple versions of PHP on macOS
#!/bin/bash
APACHE_CONF=/usr/local/etc/httpd/httpd.conf
# Checks whether Homebrew is installed or not
function checkBrew {
installed brew
BREW_INSTALLED=$?
}
@tap52384
tap52384 / index.js
Last active April 22, 2024 03:34
Pre-Request Script for Generating JWTs (Postman)
/*
https://jwt.io/introduction/
In its compact form, JSON Web Tokens consist of three parts separated by dots (.), which are:
Header
Payload
Signature
Therefore, a JWT typically looks like the following.
@tap52384
tap52384 / readme.md
Last active February 18, 2025 11:19
Bootcamp via Virtualbox 5.2 on macOS Mojave
@tap52384
tap52384 / whois.php
Created March 8, 2018 20:52
PHP code to get WHOIS information of a domain
<?php
/*************************************************************************
php easy :: whois lookup script
==========================================================================
Author: php easy code, www.phpeasycode.com
Web Site: http://www.phpeasycode.com
Contact: [email protected]
*************************************************************************/
$domain = $_GET['domain'];