Skip to content

Instantly share code, notes, and snippets.

View lxj616's full-sized avatar

lxj616 lxj616

  • wooyun
  • cn
View GitHub Profile
@lxj616
lxj616 / train_make_a_stable_diffusion_video.py
Created December 29, 2022 07:28
my own messy training code for make-a-stable-diffusion-video
import argparse
import hashlib
import itertools
import math
import os
from pathlib import Path
from typing import Optional
import numpy as np
import torch
@lxj616
lxj616 / Android_Security.xml
Created July 9, 2018 07:24 — forked from h3xstream/Android_Security.xml
Security profile for Android Lint (for Security Audit)
<?xml version="1.0" encoding="UTF-8"?>
<inspections version="1.0" is_locked="false">
<option name="myName" value="Android Lint - Security only checks" />
<option name="myLocal" value="false" />
<inspection_tool class="AccessStaticViaInstance" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="AndroidDomInspection" enabled="false" level="ERROR" enabled_by_default="false" />
<inspection_tool class="AndroidElementNotAllowed" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="AndroidLintAaptCrash" enabled="false" level="ERROR" enabled_by_default="false" />
<inspection_tool class="AndroidLintAccidentalOctal" enabled="false" level="ERROR" enabled_by_default="false" />
<inspection_tool class="AndroidLintAdapterViewChildren" enabled="false" level="WARNING" enabled_by_default="false" />