Skip to content

Instantly share code, notes, and snippets.

@ObserverOfTime
ObserverOfTime / BDLinux.md
Last active May 17, 2024 15:45
Install BetterDiscord on Linux

Install BetterDiscord on Linux

This Gist contains simple instructions on how to install, update, and uninstall BetterDiscord on Linux.

For more thorough documentation, take a look at betterdiscordctl's README.

Do NOT submit issues here as I don't check the comments. You should submit them here instead.

@Klerith
Klerith / instalaciones-next.md
Last active May 17, 2024 15:44
Instalaciones recomendadas para el curso de Next.js 13 >
@nyancodeid
nyancodeid / README.md
Last active May 17, 2024 15:44
Make RESTful API with Google Apps Script and SpreadSheet

Google Script CRUD

By Ryan Aunur Rassyid

Simply create RESTful API with Google Script and store it to Google SpreadSheet like a Pro.

@OnniSaarni
OnniSaarni / fikaserver.md
Last active May 17, 2024 15:41
SPT AKI Fika Server With Docker Ubuntu/Debian
@jpylypiw
jpylypiw / Game.ini
Created December 28, 2017 09:14
The Isle Game.ini
[/script/theisle.igamesession]
ServerName=xxx
ServerPassword=
ServerSteamGroup=
ServerMOTD=Hi There :3
bFamilySharing=false
bServerDatabase=true
bServerAllowChat=true
bServerGlobalChat=true
bServerNameTags=true
import glob
import gzip
import json
import multiprocessing
import os
import os.path as osp
import tqdm
import habitat
@Kurotaku-sama
Kurotaku-sama / Streamlabs HitsquadGodfather improvements.user.js
Last active May 17, 2024 15:35
A script for some improvements for Streamlabs for HitsquadGodfather
// ==UserScript==
// @name Streamlabs HitsquadGodfather improvements
// @name:de Streamlabs HitsquadGodfather verbesserungen
// @namespace kurotaku.de
// @version 1.1
// @description A script for some improvements for Streamlabs for HitsquadGodfather
// @description:de Ein Skript für einige Verbesserungen für Streamlabs für HitsquadGodfather
// @author Kurotaku
// @license MIT
// @match https://streamlabs.com/dasteamgodfather*

Boom环境的搭建

  • 关于RISCV的综述介绍,请参看[本链接][综述]
  • 此安装步骤基于 Ubuntu 16.04
  • 从github上clone的Boom不可以直接运行,需要Rocket Chip Generator以及riscv-tool工具链

[ucb riscv实验教程][ucb_lab]

  • riscv工具可以生成Verilog的仿真器
  • 所有的export请自行添加至~/.bashrc
  • 本步骤尚不完善,后续及时更新,
  • 如有任何建议,请联系lpn709695399@163.com. FPGA启动操作系统
@Arkellys
Arkellys / REG.md
Last active May 17, 2024 15:34
A short guide to answer some of the most common questions and issues on React+Electron apps.
@simonw
simonw / recover_source_code.md
Last active May 17, 2024 15:33
How to recover lost Python source code if it's still resident in-memory

How to recover lost Python source code if it's still resident in-memory

I screwed up using git ("git checkout --" on the wrong file) and managed to delete the code I had just written... but it was still running in a process in a docker container. Here's how I got it back, using https://pypi.python.org/pypi/pyrasite/ and https://pypi.python.org/pypi/uncompyle6

Attach a shell to the docker container

Install GDB (needed by pyrasite)

apt-get update && apt-get install gdb