Skip to content

Instantly share code, notes, and snippets.

View coolaj86's full-sized avatar
😎
🐹 Go 🦎 Zig πŸ“¦ Node 🐧 POSIX πŸͺŸ PowerShell

AJ ONeal coolaj86

😎
🐹 Go 🦎 Zig πŸ“¦ Node 🐧 POSIX πŸͺŸ PowerShell
View GitHub Profile
@coolaj86
coolaj86 / addMonth.js
Created December 8, 2022 18:16
Add `n` month to the current date, using the last day of the target month rather than rolling over to following month.
/**
* Add `n` months to the current date.
* If the target month as fewer days than the source month
* (i.e. 28 or 29 vs 30, or 30 vs 31) then go to the last
* day of the month.
*/
function addMonth(d, n) {
let d1 = d.getUTCDate();
let m1 = d.getUTCMonth();
@coolaj86
coolaj86 / irs-efile-eservices-jargon.md
Last active December 8, 2022 00:10
IRS e-File & e-Services Jargon

High-level Overview

  1. Very few people at the IRS have training on this. You'll have several phone calls and you'll have to explain what you're trying to do several times and be on hold a lot.
  2. A legal officer of the company must:
    • Create his personal account first
    • Apply for API or e-File, doesn't matter what - just needs to create the organization
    • Add himself as a Delegated user
  3. The developer can create an account
  4. The legal officer must add the developer as a Delegated User
  5. ???
@coolaj86
coolaj86 / zen-of-java.md
Last active November 29, 2022 19:22
The Zen of Java

The Zen of Java

Turgid verbosity is better than brevity.
Multiple lines of code are better than concise simplicity.
Mid-1980’s software techniques are better than modern adaptable technology.
Many legacy libraries are better than clean organization.
Slow, costly development with large overhead is better than agility.
It’s better to type lots of soul-deadening crap having the grace of four-day old road kill than to quickly solve a problem.

~ Zen of Java

Node.js request

Same as

curl -X POST https://api.mercury.com/api/v1/submit-onboarding-data \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -d '@./application.json'
{
"Header": {
"Time": "2022-09-14T12:20:17-07:00",
"ReportName": "ProfitAndLoss",
"ReportBasis": "Accrual",
"StartPeriod": "2022-06-01",
"EndPeriod": "2022-09-30",
"SummarizeColumnsBy": "Total",
"Currency": "USD",
"Customer": "1",
SHOW INDEXES FROM `room`;
--ALTER TABLE `room` DROP INDEX room_code_restriction_idx;
--ALTER TABLE `room` DROP INDEX room_user_restriction_idx;
ALTER TABLE `room` DROP FOREIGN KEY room_code_restriction_foreign;
ALTER TABLE `room` DROP FOREIGN KEY room_user_restriction_foreign;
ALTER TABLE `room` DROP COLUMN `code_restriction`;
ALTER TABLE `room` DROP COLUMN `user_restriction`;

JSDoc tsc Function Workaround

There's no documentation for this, but it just so happens that if you use the @callback alias some extra machinery kicks in and you can type functions as you would have expected.

/**
- * @typedef {Function} PersonGreet
+ * @callback PersonGreet
 * @param {String} name - other's name
 * @returns {String} - the greeting
function escapeHtml(str) {
// TODO more
return str
.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/>/g, '&lt;')
.replace(/'/g, '&#39;')
.replace(/"/g, '&quot;')
;
}