start new:
tmux
start new with session name:
tmux new -s myname
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
#!/bin/sh -e | |
# Dependencies | |
apt install -y v4l2loopback-dkms v4l2loopback-utils gstreamer1.0-plugins-good | |
apt install -y gstreamer1.0-plugins-bad # h264parse | |
apt install -y gstreamer1.0-libav # H.264 | |
# Reset module state | |
modprobe -r v4l2loopback | |
modprobe v4l2loopback |
I'm stuck on OpenWRT 18.06, and these info may soon be obsoleted by newer versions, and/or the more detailed ACL scheme in LuCI2.
The motivation So i have this server at home, that serves http://hq.strfry.org , which i sometimes switch off at night.
So, you've probably gotten the new desktop client's UI if you're reading this and wondering how to revert the UI back to the classic look of Discord. | |
This is pretty easy if followed properly, For context, this new UI is called the "Desktop Visual Refresh" and was experimented with by Discord from May 2024. | |
Anyway, back to the actual guide. | |
1. Download Vencord's installer from https://vencord.dev (This is the only official Vencord link!) | |
2. Open the installer, install Vencord (It should show your Discord install path) | |
3. Once installed, relaunch your Discord client and go to settings, you should see a "Vencord" category. | |
4. Go to plugins, search for the plugin called "Experiments" and restart the Discord client. | |
5. Go back to settings, scroll down in the menu and you should see alot of new options in the category "Developer Only" |
😉 Não sei exatamente como você chegou aqui, mas vou compartilhar um pouco sobre mim.
Meu nome é [Seu Nome Aqui] (também conhecido(a) como [Seu Nickname]). Atualmente, moro em [Cidade, País] e meu objetivo é ajudar outros desenvolvedores a alcançar seus sonhos e metas. 🚀
No meu tempo livre, gosto de participar de comunidades de programação, onde aprendo e compartilho conhecimento sobre diversos tópicos. Desde [Ano] venho me envolvendo em projetos e iniciativas que impulsionam o crescimento da comunidade tecnológica. 🤝
export const sidebarLinks = [ | |
{ | |
imgURL: "/assets/icons/home.svg", | |
route: "/", | |
label: "Home", | |
}, | |
{ | |
imgURL: "/assets/icons/wallpaper.svg", | |
route: "/explore", | |
label: "Explore", |
import os, sys, hashlib, stat | |
import deftree, configparser | |
PROJECT_FILE = "game.project" | |
def all_files(ending): | |
# Generator to get files | |
for root, folders, files in os.walk(project_root): | |
for f in files: | |
if f.endswith(ending): |
// Source: http://allenchou.net/2015/04/game-math-precise-control-over-numeric-springing/ | |
public void Spring(ref float x, ref float v, float xt, float zeta, float omega, float h) | |
{ | |
float f = 1.0f + 2.0f * h * zeta * omega; | |
float oo = omega * omega; | |
float hoo = h * oo; | |
float hhoo = h * hoo; | |
float detInv = 1.0f / (f + hhoo); | |
float detX = f * x + h * v + hhoo * xt; | |
float detV = v + hoo * (xt - x); |