Skip to content

Instantly share code, notes, and snippets.

View lvdaqian's full-sized avatar
👨‍🎓
Working & Learning

Darwin.Lv lvdaqian

👨‍🎓
Working & Learning
  • ByteDance Inc.
  • Shanghai, China
View GitHub Profile
@lvdaqian
lvdaqian / jenkins-email-ext-clangScanReport-template.jelly
Created April 10, 2014 07:00
a jelly script template for jenkins email-ext plugin. in this template we can publish the report of clangScanBuild plugin by using email template.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define">
<html>
<head>
<title>${project.name}</title>
<style>
body table, td, th, p, h1, h2 {
margin:0;
font:normal normal
100% Georgia, Serif;
background-color: #ffffff;
@lvdaqian
lvdaqian / DoSWFUnpacker.java
Last active September 21, 2017 09:05 — forked from instcode/DoSWFUnpacker.java
Unpack flash file that was encrypted by DoSWF
package org.ddth.game;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;