修改 Makefile
CC = $(TOOLCHAIN_PREFIX)gcc$(TOOLCHAIN_SUFFIX) -DNO_ASM
CXX = $(TOOLCHAIN_PREFIX)g++$(TOOLCHAIN_SUFFIX) -DNO_ASM
特别适用于 ArchLinux ARM 选手,其他发行版需稍作修改
import os | |
import json | |
import re | |
from datetime import datetime, timedelta | |
rss_json = '' | |
for i in os.listdir('.'): | |
if i.endswith('.json'): | |
rss_json = i |
name: 'CI Build' | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- master | |
- 'release/**' | |
tags: |
#!/usr/bin/env python | |
#coding:utf-8 | |
# Author: Sg4Dylan --<sg4dylan#gmail.com> | |
# Created: 06/18/2021 | |
import numpy as np | |
from scipy import signal | |
from scipy.io.wavfile import write | |
import librosa | |
import resampy |
import csv | |
''' | |
suit for lifelong-robotic-vision/OpenLORIS-Object 's csv format result | |
every line of csv contains accuracy of every task on test set after training a single task | |
''' | |
raw_result = [] | |
with open('openloris.csv', newline='') as csvfile: | |
spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|') |
// ==UserScript== | |
// @name GoHFS-Exporter | |
// @namespace http://tampermonkey.net/ | |
// @version 2020.10.18(0.1) | |
// @description Export link from Go HFS to aria2 | |
// @author SgDylan | |
// @match https://example.com/* | |
// ==/UserScript== | |
let downloadFileUrl = []; |
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
# Author: Sg4Dylan -- <sg4dylan#gmail.com> | |
# Licence: GPLv3 | |
import requests | |
import re | |
import json | |
import time |