Some notes on how to publish InfoSec and Software Engineering research papers as an independent researcher.
{ | |
"pluginName": "Serum 2", | |
"parameters": [ | |
{ | |
"id": 0, | |
"name": "Main Vol", | |
"value": 0.5, | |
"normalized": 0.5, | |
"display": " 50% [-9.0 dB]" | |
}, |
The following are some notes / insights that I captured from a recent JavaScript Reverse-Engineering email exchange related to forking a GPL licensed project.
This is shared here with the intent of making the more generic aspects of the knowledge shared more reasily accessible to others; and as such, some of the more specific project details have been REDACTED or ..snip..
'd, as they are irrelevant to this goal. I also only included messages from the email thread up to the point where the discussion remained broadly useful in contributing to general knowledge worth sharing / referring back to in future.
Some notes on JavaScript Web App Reverse Engineering, specifically focussing on module / dependency identification.
A quick guide on how to restore multi-touch gestures on macOS after they stop working, without the need to reboot your system. Inspired by personal experience and community solutions, this guide focuses on a practical approach that is quick, effective, and minimally disruptive.
#!/usr/bin/env node | |
// Ref: https://ts-morph.com/navigation/example | |
// https://ts-morph.com/emitting | |
import { Project } from "ts-morph"; | |
import path from "path"; | |
import fs from "fs"; | |
// Function to parse command-line arguments |