This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# The following commands should install openvpn3 successfully on Kali Linux as of 2023-04-17 | |
# PM me if broken and I will update | |
# Thanks to the following for bug reports / additions | |
# asingh-lp, Pyr0technicien | |
# update packages | |
sudo apt update | |
# too slow for our usecase of fast installation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ----------------------------------------------------------------------------- | |
# Info: | |
# author: Santhosh veer | |
# file: youtube-dl.sh | |
# created: 18.09.2018 | |
# revision: 18.09.2018 | |
# version: 0.3 | |
# ----------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="table table-responsive table-classic"> | |
<table> | |
<tbody> | |
<tr> | |
<th> | |
<h6><span>Typ</span></h6> | |
</th> | |
<th><span>Sání l/min</span></th> | |
<th><span>Výtlak l/min</span></th> | |
<th><span>Vzdušník</span></th> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const makesOrder = ['32', "1", '2', '31', '26'] | |
const makesList = [ | |
{ | |
"id": "0", | |
"name": "Santana" | |
}, | |
{ | |
"id": "1", | |
"name": "Audi" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const oneToFive = (number, arrayOfTranslations) => { | |
if (number === 1) { | |
return arrayOfTranslations[0] | |
} else if (number > 5) { | |
return arrayOfTranslations[2] | |
} | |
return arrayOfTranslations[1] | |
} | |
export const car = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const mediaBreakpointBetween = (sizeA, sizeB) => { | |
const mediaBreakpoints = { | |
xs: { | |
name: 'xs', | |
value: 0, | |
}, | |
sm: { | |
name: 'sm', | |
value: 576, | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin> | |
<link rel="preconnect" href="https://fonts.googleapis.com/" crossorigin> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&subset=latin-ext" rel="stylesheet"> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run in console on loremflicker.com | |
class ScriptLoader { | |
constructor(scriptUrl) { | |
this.script = document.createElement('script'); | |
this.script.src = scriptUrl; | |
// this.head = document.querySelector('head'); | |
this.firstScriptTag = document.getElementsByTagName('script')[0]; | |
} |