Skip to content

Instantly share code, notes, and snippets.

View fatso83's full-sized avatar
🐢
Two toddlers. Very little time for OSS after work hours. File a PR!

Carl-Erik Kopseng fatso83

🐢
Two toddlers. Very little time for OSS after work hours. File a PR!
View GitHub Profile
@fatso83
fatso83 / PublicPlanData.php
Created January 19, 2022 11:54
A fixture example for Symfony where a hardcoded connection is made between a local entity and the Stripe id.
class PublicPlanData extends AbstractFixture implements OrderedFixtureInterface
{
public function load(ObjectManager $manager)
{
$planUnlimitedFree = new PlanInfo();
$planUnlimitedFree->setName('FREE UNLIMITED PLAN')
->setAmount(0)
->setCurrency('USD')
->setDescription('Special plan for users that should never pay for using the service')
@fatso83
fatso83 / NOTES.md
Created October 9, 2021 07:31
Installing Vagrant on Apple Silicon Macs (M1, M1X, etc)

VirtualBox only supports the x86 platform, so the default installation instructions for Vagrant does not work on Apple silicon. Thankfully Vagrant has a VMWare Provider (more on providers here), and so if I can get VMWare running on my M1 MacBook, I should be able to run Vagrant as well!

These are my notes during figuring this out.

Get the VMWare Tech Preview released in September 2021!

We are in luck, as VMWare released this just a few weeks ago.

  • See [their blog entry][1]
@fatso83
fatso83 / StepForm.tsx
Last active August 15, 2021 15:44
Pay bananas, get monkeys 🤯
/*
This is a typical example of a codebase I inherited 😭
I mean, where do I even start ...
- direct DOM manipulation
- toggling display: none instead of not rendering, ...
- unclear data paths and constant heavy lookups
Oh, are you surprised that this stinking pile of shit is full of bugs? Me neither.
#kilowott #ninestack
@fatso83
fatso83 / state.not.found.error.page.template.html
Created March 9, 2021 19:35
Velocity template for state.not.found.error.page.template in PingFederate
<!-- This is just to get syntax highlighting:
https://support.pingidentity.com/s/question/0D51W00008BoxciSAB/how-to-customise-page-expired-handling
-->
<!-- So the middle part of the velocity template would look like this -->
<div class="ping-body-container">
<div class="ping-messages">
<div>
The page you are trying to access is no longer available.
</div>
</div>
Rename kebab-case files to PascalCase and vice versa
----------------------------------------------------
- Check the `require()` calls for what to `npm install`
- If you need to modify something else than `*.js` files, just modify the `find` command somewhat
@fatso83
fatso83 / True Group Hacks.md
Last active March 30, 2021 11:57
Oslo Kommune Barnehager TrueGroups: merk alle beskjeder som lest

True Group Hacks

Hvor mange har ikke irritert seg grønn over at det er 317 uleste meldinger i TrueGroups når man logger inn, vel vitende om at man allerede har lest disse på epost? Det finnes jo dessverre ingen "Merk alle som lest" funksjonalitet, så da må man lage det sjøl :)

Dette skriptet finnes nå som eget prosjekt her: https://github.com/fatso83/truegroupshacks

if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
export VISUAL='vim'
export EDITOR='vim'
export PYTHONSTARTUP="$HOME/.pystartup"
@fatso83
fatso83 / gist:85a4934f6fe25ff34af389c4104ad14c
Created September 17, 2020 17:02
jq to csv with newlines
# based on https://medium.com/@henatyokotraveler/convert-json-file-with-line-break-to-csv-with-jq-command-577fe88c5bc1
# but cleaned non-copy-paste friendly ligatures and injected spaces
jq '.some.filter | @csv' | sed 's/\\\\/\\/g' | sed 's/\\\"/\"/g' | sed 's/^"//g' | sed 's/"$//g'
[Unit]
Description=Teamcity agent full
[Service]
Type=simple
User=carlerik
Environment=JAVA_HOME=/home/carlerik/.sdkman/candidates/java/12.0.0-open
ExecStart=/home/carlerik/apps/teamCityBuildAgentFull/bin/agent.sh run
ExecStop=/home/carlerik/apps/teamCityBuildAgentFull/bin/agent.sh stop
#!/usr/bin/env node
/* eslint-disable no-console */
const appInfoFile = `${__dirname}/../src/appinfo.js`;
const async = require('async');
const cp = require('child_process');
const fs = require('fs');
const exec = cmd => cb => cp.exec(cmd, (err, stdout, _stderr) => cb(err, ('' || stdout).trim()));