Skip to content

Instantly share code, notes, and snippets.

[0x0, 0x0, {
'TXCODE': '0130',
'SYS_CODE': '\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20',
'APP_NAME': '\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20',
'MP_CODE': _0x1273('0x13'),
'SEC_VERSION': _0x1273('0x13'),
'BRANCHID': _0x1273('0x13'),
'ccbParam': {'St
@dev4mobile
dev4mobile / go_makefile_template
Last active July 15, 2020 11:35
This is go makefile template
GOCMD=go
GOBUILD=$(GOCMD) build
GOTEST=$(GOCMD) test
GOCLEAN=$(GOCMD) clean
GOGET=$(GOCMD) get
BINARY_NAME=duck
all: build test
build:
$(GOBUILD) -o bin/${BINARY_NAME} -v
@dev4mobile
dev4mobile / .gitignore_template
Last active July 3, 2020 04:05
Git ignore template
/build/
### Scala template
*.log
# sbt specific
.cache
.history
dist/*
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<version>-SNAPSHOT</version>
user.name=dev4mobile
user.email=cn.dev4mobile@gmail.com
alias.co=checkout
alias.ec=config --global -e
alias.up=!git pull --rebase --prune $@ && git submodule update --init --recursive
alias.cob=checkout -b
alias.cm=!git add -A && git commit -m
alias.save=!git add -A && git commit -m 'SAVEPOINT'
alias.wip=!git add -u && git commit -m WIP
alias.undo=reset HEAD~1 --mixed