Skip to content

Instantly share code, notes, and snippets.

View FlyingHeNanman's full-sized avatar
🎯
Focusing

Little rooike FlyingHeNanman

🎯
Focusing
  • Institute of Software, Chinese Academy of Sciences
View GitHub Profile
@cvcore
cvcore / download_vscode_server.sh
Last active February 26, 2026 02:41
Manual download vscode-server
#!/bin/bash
# This script downloads and installs a specific version of VSCode Server for Linux.
# The version is specified by the first argument to the script.
# You can find the git commit id in the output of Remote - SSH plugin in VSCode.
# The output looks like this:
# ...
# Using commit id "af28b32d7e553898b2a91af498b1fb666fdebe0c" and quality "stable" for server
# ...
@hysts
hysts / extract_images.py
Created November 11, 2018 11:31
Extract images from Tensorboard log
#!/usr/bin/env python
import argparse
import pathlib
import numpy as np
import cv2
from tensorboard.backend.event_processing import event_accumulator
def main():