RIAEvangelist/node-ipc is malware / protestware
The RIAEvangelist/node-ipc
module contains protestware peacenotwar.
Excerpt from RIAEvangelist/node-ipc:
as of v11.0.0 & v9.2.2 this module uses the peacenotwar module.
The RIAEvangelist/node-ipc
module contains protestware peacenotwar.
Excerpt from RIAEvangelist/node-ipc:
as of v11.0.0 & v9.2.2 this module uses the peacenotwar module.
I've been debating for weeks whether or not I was going to write any of this down. I'm a dad with two kids and a house to take care of and a business to run. Adding story-telling like this to my plate is exhausting.
Until yesterday, I had decided to forget about the whole thing, until I received the email that broke the camels back, as it were.
The best way I can describe why I'm writing this email is for the same reason why you might spend two hours dealing with an uncooperative mobile phone carrier to get them to remove that $5 charge on your bill that shouldn't be there. Some combination of the feeling of frustration and injustice that really pushes my proverbial buttons.
In this particular case, the "$5 charge on my phone bill" turned out to be literally hundreds of recurring subscription invoices that Stripe disabled collection for because, apparently, those subscriptions required "location inputs".
Generally speaking, I don't blog much anymore, and the last thing I wa
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React vs others https://gist.github.com/tkrotoff/b1caa4c3a185629299ec234d2314e190
https://insights.stackoverflow.com/trends?tags=flutter%2Creact-native
import React from 'react'; | |
import Jumbotron from 'react-bootstrap/Jumbotron'; | |
import Alert from 'react-bootstrap/Alert'; | |
import Button from 'react-bootstrap/Button'; | |
import { FallbackProps } from 'react-error-boundary'; | |
interface AEFProps extends FallbackProps { |
import { BroadcastChannel, createLeaderElection } from 'broadcast-channel' | |
import React from 'react' | |
const channels = {} | |
export function useBroadcastLeader(id = 'default') { | |
const [isBroadcastLeader, setIsBroadcastLeader] = React.useState(false) | |
React.useEffect(() => { | |
if (!channels[id]) { |
/* Copyright (c) 2021 Dan Q; released under the MIT License. */ | |
const Puppeteer = require('puppeteer'); | |
getAvatar = async (twitterUsername) => { | |
const browser = await Puppeteer.launch({args: ['--no-sandbox', '--disable-setuid-sandbox']}); | |
const page = await browser.newPage(); | |
await page.goto(`https://twitter.com/${twitterUsername}`); | |
await page.waitForSelector('a[href$="/photo"] img[src]'); | |
const url = await page.evaluate(()=>document.querySelector('a[href$="/photo"] img').src); |
// same as `yarn esbuild index.ts src/**/*.ts --platform=node --format=esm --tsconfig=./tsconfig.json --outdir=dist --watch` | |
// but with respawn server on change | |
import esbuild from 'esbuild'; | |
import fg from 'fast-glob'; | |
import { spawn } from 'child_process'; | |
const entryPoints = await fg(['index.ts', 'src/**/*.ts']); | |
const dev = process.env.NODE_ENV !== 'production'; |
If you want to use the node:
prefixes for builtin modules on repl.it, then (as of May 2021) you need to do a few things:
.replit
, add the [packager]
section with the ignoredPackages
configuration seen in the example file below. This will disable the automatic installation on repl.it of these packages..replit
, change the start script to yarn start
package.json
, add a scripts
section with the start
script as seen in the example file below. This will transpile away the node:
prefixes for the older Node v12 version using @upleveled/babel-plugin-remove-node-prefix
.yarn add --dev @babel/core @babel/node @upleveled/babel-plugin-remove-node-prefix
Example repl here: https://replit.com/@karlhorky/node-prefix-babel-demo#index.js
export default async function tryCatch<Data>( | |
promise: Promise<Data>, | |
): Promise<{ error: Error } | { data: Data }> { | |
try { | |
return { data: await promise }; | |
} catch (error) { | |
return { error }; | |
} | |
} |
Looking for the First Job
This is a very common state for people in college, people before/after a bootcamp, or people from another area.
The first job will be the hardest one to get, but it will get easier over time.
The interview will be harder than the job itself