This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
{{>head}} | |
{{#user}} | |
<title>Back {{name}} checkout | satsbacker</title> | |
{{/user}} | |
</head> | |
<body> | |
{{>header}} |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<body> | |
Select some text below and then click the button:<br/> | |
<textarea id="myText" rows="5" cols="60" onselect="alert(getTextSelection())"> | |
Lorem ipsum dolor sit amet, | |
consectetur adipiscing elit. | |
</textarea> |
This file contains hidden or 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
import Data.Bits ((.|.),(.&.),shiftL) | |
import Data.Char (chr, isHexDigit, digitToInt) | |
import Data.Text (Text, pack, unpack) | |
{- | |
sources : | |
uri-encode (https://hackage.haskell.org/package/uri-encode-1.5.0.7/docs/src/Network.URI.Encode.html#decodeText) | |
network-uri (https://hackage.haskell.org/package/network-uri-2.6.4.2/docs/src/Network.URI.html#unEscapeString) |
This file contains hidden or 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 | |
apt update | |
apt -y install build-essential # install GCC | |
apt -y install --reinstall software-properties-common # enable add-apt-repository | |
apt-get -y install lshw | |
apt-get clean | |
export DISTRO_UBUNTU=ubuntu2204/x86_64 |
OlderNewer