Skip to content

Instantly share code, notes, and snippets.

@rxaviers
rxaviers / gist:7360908
Last active March 14, 2025 05:05
Complete list of github markdown emoji markup

People

:bowtie: :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:
@sebastiandotdev
sebastiandotdev / vscode-settings.json
Last active March 14, 2025 05:04
My config for VSCode
{
"telemetry.telemetryLevel": "off",
"zenMode.fullScreen": false,
"zenMode.centerLayout": false,
"files.enableTrash": false,
"zenMode.showTabs": "none",
"diffEditor.wordWrap": "on",
"breadcrumbs.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"markdown.preview.fontFamily": "Input Mono, monospace",
@terremoth
terremoth / gui-example.c
Last active March 14, 2025 05:04
Simple input and button with pure C + Win32 API
#include <windows.h>
#include <uxtheme.h>
#include <commctrl.h>
#define ID_EDITBOX 1001
#define ID_BUTTON_OK 1002
void DrawCustomButton(LPDRAWITEMSTRUCT lpDrawItem) {
COLORREF bgColor = RGB(255, 165, 0); // orange
@Pusnow
Pusnow / CS λΆ„μ•Ό 우수 ν•™μˆ λŒ€νšŒ λͺ©λ‘.csv
Last active March 14, 2025 05:02
CS λΆ„μ•Ό 우수 ν•™μˆ λŒ€νšŒ λͺ©λ‘
μ•½μž ν•œκ΅­μ •λ³΄κ³Όν•™νšŒ (2024) BK21ν”ŒλŸ¬μŠ€ IF (2018) KAIST CS (2022) SNU CSE (2024.4) POSTECH CSE (2024.9) 평균 (μ •κ·œν™”) ν•™νšŒλͺ… DBLP Key
AAAI 졜우수 4 O O 졜우수 1.00 AAAI Conference on Artificial Intelligence (AAAI) conf/aaai
AAMAS 우수 2 0.20 International Conference on Autonomous Agents and Multiagent Systems (AAMAS) conf/ifaamas
ACCV 우수 1 우수 0.25 Asian Conference on Computer Vision (ACCV) conf/accv
ACL 졜우수 4 O O 졜우수 1.00 Annual Meeting of the Association for Computational Linguistics (ACL) conf/acl
ACL Findings 우수 우수 0.20 Findings of ACL series/findacl
ACNS 우수 0.10 International Conference on Applied Cryptography and Network Security (ACNS) conf/acns
ACSAC 우수 2 우수 0.30 Annual Computer Security Applications Conference (ACSAC) conf/acsac
AIED 우수 0.10 International Conference on Artificial Intelligence in Education (AIED) conf/aied
AISTATS 우수 1 우수 0.25 International Conference on Artificial Intelligence and Statistics (AISTATS) conf/aistats
@mixalbl4-127
mixalbl4-127 / VNC_Server_On_Ubuntu_22.04LTS.md
Last active March 14, 2025 05:00 — forked from indyfromoz/VNC_Server_On_Ubuntu_22.04LTS.md
VNC+xfce4 setup on Ubuntu server 22.04 LTS

Setup

Install xfce4

sudo apt update
sudo apt install xfce4 xfce4-goodies

Install TigerVNC -

@bddicken
bddicken / Contour.html
Last active March 14, 2025 04:53
Contour Images
<html>
<head>
<script is:inline defer src="https://cdn.jsdelivr.net/npm/img-comparison-slider@8/dist/index.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/img-comparison-slider@8/dist/styles.css" />
<style>
.slider {
width: 70%;
@paulirish
paulirish / what-forces-layout.md
Last active March 14, 2025 04:50
What forces layout/reflow. The comprehensive list.

What forces layout / reflow

All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.

Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.

Element APIs

Getting box metrics
  • elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent
@gnehs
gnehs / index.js
Created August 29, 2021 11:35
Using MetaMask with Puppeteer
/*
Get MetaMask here: https://github.com/MetaMask/metamask-extension/releases
*/
const puppeteer = require('puppeteer')
let extId
async function main() {
const metamaskPath = path.join(__dirname, '/metamask-chrome-10.0.2')
@mrpeardotnet
mrpeardotnet / PVE-host-backup.md
Created December 17, 2019 18:03
Proxmox PVE Host Config Backup Script

Proxmox PVE Host Config Backup Script

This script can be used to backup essential configuration files from the Proxmox Virtual Enivronment (PVE) host.

The script will create backups using tar with specified backup prefix and date and time stamp in the file name. Script will also delete backups that are older then number of days specified.

Create backup script file

To create backup script that will be executed every day we can create backup script in /etc/cron.daily/ folder. We need to make it writeable by root (creator) only, but readable and executable by everyone:

touch /etc/cron.daily/pvehost-backup