Skip to content

Instantly share code, notes, and snippets.

View Loner1024's full-sized avatar
:octocat:

Loner1024

:octocat:
View GitHub Profile
name: action
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install
run: npm install
- name: build
@Loner1024
Loner1024 / AntiAntiNSFW.js
Last active November 25, 2020 09:10
Anti Anti NSFW
// ==UserScript==
// @name Anti Anti NSFW
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Anti Anti NSFW
// @author Loner
// @match *://web.okjike.com/*
// @grant none
// @require https://unpkg.com/nsfwjs@2.3.0/dist/nsfwjs.min.js
// @require https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js
@Loner1024
Loner1024 / mapreduce.go
Created November 11, 2021 07:51
MapReduce
package main
import (
"fmt"
"io"
"log"
"os"
"sort"
"strconv"
"strings"
@Loner1024
Loner1024 / audit-on-push.yml
Created January 14, 2023 08:57 — forked from LukeMathWalker/audit.yml
GitHub Actions - Rust setup
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps: