Skip to content

Instantly share code, notes, and snippets.

View songlipeng2003's full-sized avatar
💻
coding

Thinking Song songlipeng2003

💻
coding
View GitHub Profile
@songlipeng2003
songlipeng2003 / Activate Office 2019 for macOS VoL.md
Created July 4, 2023 06:09 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@songlipeng2003
songlipeng2003 / .sh
Created October 28, 2020 02:09
clean mac
# clean brew
brew cleanup
@songlipeng2003
songlipeng2003 / nignx.conf
Last active March 14, 2017 07:56
nginx image_filter resize config
server {
listen 80;
server_name www.test.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
server_name www.test.com;
charset utf-8;
@songlipeng2003
songlipeng2003 / deploy.rb
Created March 18, 2015 10:10
yii2 capistrano 3 deploy
# config valid only for current version of Capistrano
lock '3.3.3'
set :application, 'micro_shipping'
set :repo_url, 'git@coding.net:songlipeng2003/micro_shopping.git'
# Default branch is :master
# ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp }.call
# Default deploy_to directory is /var/www/my_app_name
@songlipeng2003
songlipeng2003 / gist:9656618
Last active August 29, 2015 13:57
apache ProxyPass Alias 冲突解决
<VirtualHost *:80>
ServerName test.com
Alias /artemis-image/ "D:\EPD\Trunk\Development\Source\1.0\exam\oldSystem\artemis-image/"
<Directory "D:\EPD\Trunk\Development\Source\1.0\exam\oldSystem\artemis-image/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow from all
</Directory>
@songlipeng2003
songlipeng2003 / gist:8418363
Created January 14, 2014 13:32
Extracting a table or a database from a mysql.sql dump file
# extract table
sed -n -e '/CREATE TABLE.*mytable/,/CREATE TABLE/p' mysql.sql > mytable.sql
# extract database
sed -n -e '/Current Database: `mydatabase`/,/Current Database: /p' mysql.sql > mydatabase.sql
@songlipeng2003
songlipeng2003 / gist:6052443
Last active December 20, 2015 01:58
解决jquery ui的datepicker 和activeadmin的datepicker样式冲突
body.active_admin{
.ui-datepicker{
position: relative;
.ui-state-default, .ui-state-active, .ui-state-hover{
border: none;
}
.ui-datepicker-prev, .ui-datepicker-next{
position: relative;
@songlipeng2003
songlipeng2003 / gist:5967083
Last active December 19, 2015 14:09
主要解决问题: 像素和实际厘米和英寸的转化 本地图品试试预览
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/base/jquery-ui.css" type="text/css" media="all" />
<style type="text/css">
body{
margin: 0;
padding: 0;
}
#root {
position: relative;
height: 50px;
@songlipeng2003
songlipeng2003 / ZhConversion.php
Created September 8, 2012 11:07
简体繁体转化
<?php
/**
* Simplified / Traditional Chinese conversion tables
*
* Automatically generated using code and data in includes/zhtable/
* Do not modify directly!
*/
$zh2Hant = array(
'㑩' => '儸',
@songlipeng2003
songlipeng2003 / gist:3366275
Created August 16, 2012 03:25
reset mysql root password without no password in ubuntu
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
# Check if user is root
if [ $(id -u) != "0" ]; then
printf "Error: You must be root to run this script!\n"
exit 1
fi