I hereby claim:
- I am mathisve on github.
- I am mathisve (https://keybase.io/mathisve) on keybase.
- I have a public key whose fingerprint is BBBB E77F DD61 2E0E F4F5 2FE4 8DAF 8B0A FA8E CCAB
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Ollama Chat</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/9.1.2/marked.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.js"></script> | |
<style> | |
@import url('https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css'); |
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": { | |
"type": "grafana", | |
"uid": "-- Grafana --" | |
}, | |
"enable": true, |
--DROP MATERIALIZED VIEW tick1mcagg, tick10mcagg, tick30mcagg, tick1hcagg, tick6hcagg, tick12hcagg, tick1dcagg, tick7dcagg, tick14dcagg, tick30dcagg; | |
--DROP MATERIALIZED VIEW fl1mcagg, fl10mcagg, fl30mcagg, fl1hcagg, fl6hcagg, fl12hcagg, fl1dcagg, fl7dcagg, fl14dcagg, fl30dcagg; | |
--tickcaggs | |
CREATE MATERIALIZED VIEW tick1mcagg WITH (timescaledb.continuous) AS | |
SELECT time_bucket('1m', time) as time, avg(price) as price, symbol | |
FROM crypto_ticks | |
GROUP BY time_bucket('1m', time), symbol WITH NO DATA; | |
CREATE MATERIALIZED VIEW tick10mcagg WITH (timescaledb.continuous) AS |
## works for ubuntu | |
## source: https://www.linuxtechi.com/install-kubernetes-on-ubuntu-22-04/ | |
sudo swapoff -a | |
sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab | |
sudo tee /etc/modules-load.d/containerd.conf <<EOF | |
overlay | |
br_netfilter | |
EOF |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
aws ec2 describe-addresses \ | |
--filters "Name=tag-key,Values=Static" | jq -r '.Addresses[] | .PublicIp' |
name: React publish | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 |
#!/usr/bin/env bash | |
# https://elinux.org/Bringing_CAN_interface_up | |
# Installing can-utils | |
sudo sudo apt-get install can-utils | |
# Creating vcan0 interface | |
sudo ip link add dev vcan0 type vcan | |
sudo ip link set up vcan0 |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func main() { | |
var acceleration, velocity, displacement, time float64 |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
type rectangle struct { | |
width float64 | |
height float64 |