Skip to content

Instantly share code, notes, and snippets.

View harplife's full-sized avatar
🎯
Focusing

Ben harplife

🎯
Focusing
View GitHub Profile
@harplife
harplife / setenv.sh
Created December 24, 2020 06:43
setenv.sh is loaded by tomcat automatically, if it exists.
#/bin/sh
# setting Variables and Environment for Tomcat
##1. server.xml docBase port
export CATALINA_HOME=/usr/local/apache-tomcat-8.5.61
export CATALINA_BASE=/usr/local/apache-tomcat-8.5.61
export CATALINA_OUT=/usr/local/apache-tomcat-8.5.61/logs/catalina.out
#export SERVER_NAME=
# MariaDB database server configuration file.
#
# You can copy this file to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
@harplife
harplife / mybatis-3-config.dtd
Created December 24, 2020 00:51
dtds for aicrm
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright 2009-2016 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
set -g activity-action other
set -g assume-paste-time 1
set -g base-index 0
set -g bell-action any
# set -g default-command
set -g default-terminal "screen-256color"
set -g default-shell /usr/bin/zsh
set -g default-size 80x24
set -g destroy-unattached off
set -g detach-on-destroy on
@harplife
harplife / nginx.conf
Created December 16, 2020 05:27 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@harplife
harplife / README.md
Created April 17, 2020 06:49 — forked from mbostock/README.md
Underscore’s Equivalents in D3

Collections

each(array)

Underscore example:

_.each([1, 2, 3], function(num) { alert(num); });