Skip to content

Instantly share code, notes, and snippets.

@draco1023
draco1023 / Dockerfile
Created April 2, 2024 07:41 — forked from rkttu/Dockerfile
Run Office 2019 in Windows Full Container (19H1)
FROM mcr.microsoft.com/windows:1903 AS build
WORKDIR C:\\odtsetup
ADD https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_11617-33601.exe odtsetup.exe
RUN odtsetup.exe /quiet /norestart /extract:C:\\odtsetup
FROM mcr.microsoft.com/windows:1903 AS download
WORKDIR C:\\odtsetup
COPY --from=build C:\\odtsetup\\setup.exe .
#!/bin/bash
set -eu
set -x
docker build -t deno-cent7 .
@draco1023
draco1023 / EntityGenerator.java
Last active April 27, 2023 11:41
Jimmer Entity Generator
import com.squareup.javapoet.AnnotationSpec;
import com.squareup.javapoet.JavaFile;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.TypeSpec;
import com.squareup.javapoet.TypeSpec.Builder;
import java.math.BigDecimal;
import java.nio.file.Paths;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
@draco1023
draco1023 / git-commit-template.md
Created March 4, 2022 03:34 — forked from lisawolderiksen/git-commit-template.md
Use a Git commit message template to write better commit messages

Using Git Commit Message Templates to Write Better Commit Messages

The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the

public static String htmlToText(String html) {
Element body = Jsoup.parseBodyFragment(html).body();
// 参考Element#text()的实现,将追加字符修改为换行符
StringBuilder sb = new StringBuilder();
NodeTraversor.traverse(new NodeVisitor() {
public void head(Node node, int depth) {
if (node instanceof TextNode) {
TextNode textNode = (TextNode)node;
appendNormalisedText(sb, textNode);
package com.bakclass.common.code.generator;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.bakclass.common.AnnotationHandler;
import com.bakclass.common.annotation.ConstantNameSetter;
import com.bakclass.common.function.StringFunction;
using Aspose.Words;
using Aspose.Words.Drawing;
using Newtonsoft.Json;
using System;
using System.IO;
using System.Linq;
namespace DocMarker
{
class Program
docker exec -it mysql_server bash
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
docker restart mysql_server
@draco1023
draco1023 / git-bash.sh
Created August 13, 2017 16:02 — forked from gyandeeps/git-bash.sh
Bash alias for git
# Global variables
re='^[0-9]+$'
# Will create a new branch with name ($1) from master
# it will also make sure master is up to date from origin
workstart() {
if ! [[ $1 =~ $re ]]
then
val=$1
else
@draco1023
draco1023 / port.sh
Last active September 15, 2017 02:14
port redirect
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080