I hereby claim:
- I am sh7dm on github.
- I am sh7dm (https://keybase.io/sh7dm) on keybase.
- I have a public key whose fingerprint is 3F48 3A2A 9EB3 49A5 13B2 8761 471F D32E 15FD 8473
To claim this, I am signing this object:
From ca3036f6a5f834ea5502689cb9b10c5c38a3b657 Mon Sep 17 00:00:00 2001 | |
From: Dmitrii Sharshakov <[email protected]> | |
Date: Fri, 2 May 2025 15:10:32 +0200 | |
Subject: [PATCH] Revert "runtime: use vDSO for getrandom() on linux" | |
eb6f2c24cd17c0ca1df7e343f8d9187eef7d6e13 | |
--- | |
src/crypto/rand/rand_test.go | 3 - | |
src/internal/syscall/unix/getrandom.go | 11 --- | |
src/runtime/os_linux.go | 9 -- |
# Install docker or podman package on your distro (podman doesn't need a daemon like dockerd to work). All args are exactly same, just replace ``podman`` with ``docker`` in command if you want to. | |
sudo pacman -S podman | |
# Run an archlinux container with dbus and wayland sockets. | |
sudo podman run \ | |
--volume "$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY":/tmp/wayland-0 \ | |
--device /dev/dri \ | |
--volume /run/user/1000/bus:/tmp/bus \ | |
--rm -it archlinux /bin/bash |
#include <Arduino.h> | |
#include <esp_camera.h> | |
#include <ESPAsyncWebServer.h> | |
#include <AsyncUDP.h> | |
#include <stdint.h> | |
AsyncUDP vid_udp; | |
IPAddress client_ip; | |
uint16_t client_port; | |
// MTU for data in packets |
[/] | |
alphabetize-all-programs=true | |
application-shortcuts-list=[['Settings', 'preferences-system-symbolic', 'gnome-control-center.desktop'], ['Tweaks', 'org.gnome.tweaks-symbolic', 'org.gnome.tweaks.desktop'], ['Terminal', 'utilities-terminal-symbolic', 'org.gnome.Terminal.desktop'], ['Activities Overview', 'view-fullscreen-symbolic', 'ArcMenu_ActivitiesOverview']] | |
arc-menu-placement='DTP' | |
available-placement=[false, true, false] | |
border-color='rgb(63,62,64)' | |
color-themes=[['ArcMenu Theme', 'rgba(28, 28, 28, 0.98)', 'rgba(211, 218, 227, 1)', 'rgb(63,62,64)', 'rgba(238, 238, 236, 0.1)', 'rgba(255,255,255,1)', 'rgb(63,62,64)', '9', '0', '0', '0', '0', 'false'], ['Dark Blue Theme', 'rgb(25,31,34)', 'rgb(189,230,251)', 'rgb(41,50,55)', 'rgb(41,50,55)', 'rgba(255,255,255,1)', 'rgb(41,50,55)', '9', '1', '5', '12', '24', 'true'], ['Light Blue Theme', 'rgb(255,255,255)', 'rgb(51,51,51)', 'rgb(235,235,235)', 'rgba(189,230,251,0.9)', 'rgba(89,89,89,1)', 'rgba(189,230,251,0.9)', '9', '1', '5', '12', '24', 'true'], ['NordSu |
import plistlib | |
import sys | |
import os | |
import json | |
import base64 | |
from pathlib import Path | |
name = ".".join(sys.argv[1].split(".")[:-1]).split("/")[-1] | |
if sys.argv[1].split(".")[-1] != "heic": |
var Vue = (function (exports) { | |
'use strict'; | |
// Patch flags are optimization hints generated by the compiler. | |
// when a block with dynamicChildren is encountered during diff, the algorithm | |
// enters "optimized mode". In this mode, we know that the vdom is produced by | |
// a render function generated by the compiler, so the algorithm only needs to | |
// handle updates explicitly marked by these patch flags. | |
// runtime object for public consumption | |
const PublicPatchFlags = { |
// Patch flags are optimization hints generated by the compiler. | |
// when a block with dynamicChildren is encountered during diff, the algorithm | |
// enters "optimized mode". In this mode, we know that the vdom is produced by | |
// a render function generated by the compiler, so the algorithm only needs to | |
// handle updates explicitly marked by these patch flags. | |
// runtime object for public consumption | |
const PublicPatchFlags = { | |
TEXT: 1 /* TEXT */, | |
CLASS: 2 /* CLASS */, | |
STYLE: 4 /* STYLE */, |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"math/rand" | |
"strconv" | |
"github.com/go-redis/redis" | |
"github.com/kataras/iris" |
import axios from 'axios' | |
Vue.prototype.$http = axios | |
// or | |
Vue.prototype.$http = axios.create({ baseURL: '//path/to/your/api/root' }) |