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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Scrolling Graph Effect</title> | |
<style> | |
:root { |
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
func b64Bitwise(str string) string { | |
bytes := []byte(str) | |
var builder strings.Builder | |
for i := 0; i < len(bytes); i += 3 { | |
first := bytes[i] >> 2 | |
builder.WriteByte(b64Table[first]) | |
if i+1 >= len(bytes) { | |
second := (bytes[i] & 0b11) << 4 |
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
version: '3.9' | |
services: | |
OracleDB: | |
image: container-registry.oracle.com/database/express:21.3.0-xe | |
volumes: | |
- db:/opt/oracle/oradata | |
environment: | |
- ORACLE_PWD=hello | |
ports: |
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
#include <bitset> | |
#include <iostream> | |
#include <queue> | |
#include <vector> | |
constexpr size_t n_vertex = 6; | |
enum class Vertex { S, A, B, C, D, G }; | |
char VertexToString(Vertex vertex) { |