Skip to content

Instantly share code, notes, and snippets.

View jounghu's full-sized avatar
💞
fall in love

jounghu

💞
fall in love
  • 货拉拉
  • Shanghai
View GitHub Profile
@jounghu
jounghu / JetBrainsActivation.md
Created March 14, 2025 02:13
Webstorm/JetBrains products activation 2024 (Windows/MacOS)

Webstorm/JetBrains products activation 2024 (Windows/MacOS)

1.Proxy Settings

  1. Step 1: Navigate to Proxy settings.
  2. Step 2: Select "Manual proxy settings - HTTP".
    • Hostname: localhost
    • Port: 80

Set no proxy for:

@jounghu
jounghu / index.html
Created July 20, 2024 06:29 — forked from jerrybendy/ index.html
一个使用 HTML5 录音的例子(网上看到的,收藏下)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<div>
<audio controls autoplay></audio>
<input onclick="startRecording()" type="button" value="录音" />
@jounghu
jounghu / default.conf
Created October 11, 2017 03:06
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;