Skip to content

Instantly share code, notes, and snippets.

View chrisvoo's full-sized avatar
🎸
hard as a rock

Christian Castelli chrisvoo

🎸
hard as a rock
View GitHub Profile
@chrisvoo
chrisvoo / VirginRadioReducer.user.js
Last active September 19, 2019 13:10
Removes unnecessary parts from virginradio.it
// ==UserScript==
// @name VirginRadio Reducer
// @namespace http://tampermonkey.net/
// @version 0.6
// @description Removes unnecessary parts from virginradio.it
// @author Christian Castelli <voodoo81people@gmail.com>
// @match https://www.virginradio.it/*
// @grant none
// ==/UserScript==
@chrisvoo
chrisvoo / IntelIJTrialReset.bat
Created February 17, 2020 13:57
How to Reset InteIIiJ IDEA Evaluation Key in Windows
cd "C:%HOMEPATH%\.IntelliJIdea*\config"
rmdir "eval" /s /q
del "options\other.xml"
reg delete "HKEY_CURRENT_USER\Software\JavaSoft\Prefs\jetbrains\idea" /f
:: This will work for idea 2018.3 and later
::
:: It is Highly Advised to Purchase the JetBrain Softwares
:: This is only for the case You just want to Extend the
:: Trial Period and Evaluate the IDE for some more Time
@chrisvoo
chrisvoo / removeDuplicatesFromArray.js
Created June 8, 2020 09:51
Removes duplicates from an array, regardless of its depth or content
const removeDuplicatesFromArray = arr =>
[...new Set(arr.map(el => JSON.stringify(el)))].map(e => JSON.parse(e))
@chrisvoo
chrisvoo / pre-commit
Created May 5, 2021 12:24
Avoit to commit tests with `only`
# Redirect output to stderr.
exec 1>&2
# prevent it.only or describe.only commited
if [ "$allowonlytests" != "true" ] &&
test $(git diff --cached | grep -E "\b(it|describe).only\(" | wc -l) != 0
then
cat <<\EOF
Error: Attempt to add it.only or describe.only - which may disable all other tests
@chrisvoo
chrisvoo / discogs_search_example.ts
Created May 10, 2021 06:21
An example on how to retrieve an artist's discography with Discogs
/* The API returns way too much results: the example below is the best approximation
* to get a discography. Anyway, there are some errors:
* - another group is present
* - Cheshire cat's album is missing
*/
import { Client } from 'disconnect';
import dotenv from 'dotenv';
import { envSchema } from './utils';
import { showResult } from './utils/terminal';
@chrisvoo
chrisvoo / lastfm_search_discography.ts
Created May 10, 2021 09:12
Retrieving artist's top albums
/* 57034 results for 1141 pages! */
import dotenv from 'dotenv';
import LastFM from 'last-fm';
import { envSchema } from './utils';
import { showResult } from './utils/terminal';
const result = dotenv.config();
if (result.error) {
console.error(result.error.message);
@chrisvoo
chrisvoo / solution.md
Last active July 5, 2021 16:39 — forked from lgg/solution.md
JetBrains intellij idea + NVM + nodejs + WebStorm

NVM + WebStorm

If you get error:

run npm command gives error "/usr/bin/env: node: No such file or directory

Modify the Desktop icon ~/.local/share/applications/jetbrains-webstorm.desktop with:

@chrisvoo
chrisvoo / how-to-start-colima-automatically-on-macos.md
Last active April 7, 2023 14:46 — forked from fardjad/how-to-start-colima-automatically-on-macos.md
[How to start Colima automatically on macOS] Instructions for starting Colima automatically on macOS similar to Docker Desktop #macos #colima #docker

Steps

  1. Create an executable script to run in foreground and manage colima:
cat <<-EOF | sudo tee /usr/local/bin/colima-start-fg
#!/bin/bash

export PATH="/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"