Skip to content

Instantly share code, notes, and snippets.

@Pusnow
Pusnow / CS 분야 우수 학술대회 목록.csv
Last active December 12, 2025 04:52
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
@Mohamed3on
Mohamed3on / Claude Code Statusline.md
Last active December 12, 2025 04:46
Claude Code statusline with colors, token usage, cost, and more

Claude Code Statusline

A colorful, informative statusline for Claude Code CLI.

statusline

Features

  • Directory (blue) - Current working directory
  • Node version (green ⬢) - Shows when package.json exists
@BiS-9
BiS-9 / comoEmpiezo.md
Last active December 12, 2025 04:45
Lista de recursos de Hack4u para empezar en Ciberseguridad
{
"apiVersion": "dashboard.grafana.app/v2beta1",
"kind": "Dashboard",
"metadata": {
"name": "claude-code-metrics",
"generation": 12,
"creationTimestamp": "2025-12-10T13:33:56Z",
"labels": {},
"annotations": {}
},
@Trevahok
Trevahok / dsa checklist.md
Last active December 12, 2025 04:43
a checklist for data structures and algorithms

Searching and Sorting


  • insertion sort
  • selection sort
  • bubble sort
  • heap sort
  • Quick Sort - in place
  • Merge Sort
  • Binary Search
@lbssousa
lbssousa / Instructions.md
Last active December 12, 2025 04:40
VSCode + Dev Containers and Toolbx/Distrobox setup for Fedora Silverblue

VSCode + Dev Containers and Toolbx/Distrobox setup for Fedora Silverblue

PLEASE NOTE:

I personally don't use Flatpak VSCode anymore, since I switched from Fedora Silverblue to Universal Blue's project Bluefin-DX. I'll leave the instructions here for those who want them, but be aware that Flatpak VSCode instructions won't be maintained anymore.

Steps

If you prefer VSCode Flatpak

  1. Install VSCode Flatpak from Flathub:
@versedi
versedi / kill-ssh-agents.bat
Created August 30, 2015 10:57
Kill all ssh-agents Windows
taskkill /F /IM ssh-agent.exe /T
@iamnolanhu
iamnolanhu / bolt_mega_prompt.md
Last active December 12, 2025 04:32
Bolt.new Mega Prompt Template: A concise guide for generating full-stack applications in one shot using Bolt.new. Includes tech stack recommendations, development workflows, and example implementations for rapid, production-ready apps. Perfect for developers seeking efficient, scalable solutions. Questions? [email protected]

BOLT.NEW MEGA PROMPT - One-Shot Application Generator

Based on 38,787 words of Bolt.new expert insights and best practices

SYSTEM CONTEXT

You are an expert full-stack developer with deep knowledge of Bolt.new, modern web frameworks, and rapid application development. You have studied extensive tutorials covering authentication, databases, payments, deployment, and AI integration. Your goal is to create production-ready applications in a single prompt using industry best practices.

CORE PRINCIPLES FROM BOLT.NEW EXPERTS

1. ENHANCED PROMPTING STRATEGY

  • Always use the "Enhanced Prompt" feature in Bolt.new before building
@aFewThings
aFewThings / compare_melspectrogram.py
Last active December 12, 2025 04:31 — forked from mthrok/compare_mel_filterbank.py
Compare mel spectrograms of torchaudio and librosa
import librosa
import matplotlib.pyplot as plt
import torch
from torchaudio.transforms import MelSpectrogram
n_fft = 2048
win_len = None
hop_len = 512
n_mels = 128
@yumayanagisawa
yumayanagisawa / Lightning.shader
Last active December 12, 2025 04:30
Unity3D | Lightning Shader
//Code is converted to use in Unity(ShaderLab) from
//Lightining by asti
//on Shadertoy(https://www.shadertoy.com/view/Xds3Rj)
Shader "Custom/Lightning"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
}