Skip to content

Instantly share code, notes, and snippets.

View PoOwAa's full-sized avatar
🏠
Working from home

Raymund Ács PoOwAa

🏠
Working from home
View GitHub Profile
@PoOwAa
PoOwAa / arcaneCollection.ts
Last active February 9, 2024 09:08
Arcane Collection + Vosfor values
export type ArcaneCollection =
| 'Duviri'
| 'Eidolon'
| 'Holdfasts'
| 'Necralisk'
| 'Ostron'
| 'Solaris'
| 'Steel';
export const arcaneCollection: Record<ArcaneCollection, string[]> = {
@PoOwAa
PoOwAa / .bash_profile
Last active October 2, 2020 11:51
My DeadPool Bash Profile
HOST_NAME=AndyRum
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
txtred='\e[0;31m' # Red
txtgrn='\e[0;32m' # Green
bldgrn='\e[1;32m' # Bold Green
bldpur='\e[1;35m' # Bold Purple
txtrst='\e[0m' # Text Reset
const qs = "http://notworkingurl.com";
fetch(qs)
.then(response => {
return response.json();
})
.then(data => {
// Working code
console.log(data);
})
@PoOwAa
PoOwAa / CurrencyCode.ts
Created October 2, 2018 19:42
A TypeScript enum of ISO 4217 Currency Codes with description
/**
* Copyright 2018, Raymund Ács
*
* Permission is hereby granted, free of charge, to any
* person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the
* Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute,
* sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so,
@PoOwAa
PoOwAa / iptables.sh
Created March 12, 2018 09:31
My simple iptable rules
#!/bin/bash
###############################################################################
# The MIT License
#
# Copyright 2018 Raymund Ács <raycsucsu@gmail.com>.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell