Skip to content

Instantly share code, notes, and snippets.

@xsephiroth
xsephiroth / reset-trial-navicat.sh
Created March 5, 2024 01:02 — forked from nakamuraos/reset-trial-navicat.sh
Reset trial Navicat 15, Navicat 16 on Linux
#!/bin/bash
# Author: NakamuraOS
# https://github.com/nakamuraos
# Latest update: 30/03/2022
# Tested on Navicat 15.x, 16.x on Linux
RED="\e[1;31m"
ENDCOLOR="\e[0m"
package main
import (
"io"
"log"
"os"
"os/exec"
"io/ioutil"
"bytes"
)
@xsephiroth
xsephiroth / GitConfigHttpProxy.md
Created October 26, 2017 13:53 — forked from evantoli/GitConfigHttpProxy.md
Configure Git to use a proxy

Configure Git to use a proxy

##In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@xsephiroth
xsephiroth / default.conf
Created August 31, 2017 13:07
NGiNX Configuration for Vue-Router in HTML5 Mode
server {
listen 80 default_server;
listen [::]:80 default_server;
root /your/root/path;
index index.html;
server_name you.server.com;