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:
| var WebSocketServer = require('uws').Server; | |
| var wss = new WebSocketServer({ port: 3000 }); | |
| var Redis = require('ioredis'); | |
| var redis = new Redis('localhost', 6379); | |
| var pub = new Redis('localhost', 6379); | |
| redis.subscribe('msg', function (err, count) { | |
| // Now we are subscribed to the 'msg' channel. | |
| // `count` represents the number of channels we are currently subscribed to. |
| const lscache = require('lscache') | |
| // This is your plugin object. It can be exported to be used anywhere. | |
| const MyPlugin = { | |
| // The install method is all that needs to exist on the plugin object. | |
| // It takes the global Vue object as well as user-defined options. | |
| install (Vue, options) { | |
| // We add $ls for lscache | |
| Vue.prototype.$ls = { | |
| get: lscache.get, |
| import axios from 'axios' | |
| Vue.prototype.$http = axios | |
| // or | |
| Vue.prototype.$http = axios.create({ baseURL: '//path/to/your/api/root' }) |
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "strconv" | |
| "github.com/go-redis/redis" | |
| "github.com/kataras/iris" |
I hereby claim:
To claim this, I am signing this object:
| // 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 */, |
| 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 = { |
| 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": |
| [/] | |
| 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 |
| #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 |