๐จ๏ธ Have a question? Join Chat! | ๐ฏ๐ต Learn Japanese | ๐ Resources | โ FAQ |
---|
// I'm tired of extensions that automatically: | |
// - show welcome pages / walkthroughs | |
// - show release notes | |
// - send telemetry | |
// - recommend things | |
// | |
// This disables all of that stuff. | |
// If you have more config, leave a comment so I can add it!! | |
{ |
#!/usr/bin/env ruby | |
# | |
# JavaScript Soundfont Builder for MIDI.js | |
# Author: 0xFE <[email protected]> | |
# edited by Valentijn Nieman <[email protected]> | |
# | |
# Requires: | |
# | |
# FluidSynth | |
# Lame |
์ก์ถ์ด ๋ถ์์ ํ ์คํธ๋ฆฌ๋จธ์ ๋ฐฉ์ก์ ์ต์ํ์ ๋๋ ์ด๋ก ๋ นํํ๋๋ก ๋ง๋ค์ด์ง ๋ นํ ์คํฌ๋ฆฝํธ์ ๋๋ค. ํธ์คํ ์ฑ๋์ ๋ นํํ์ง ์๊ณ , TSํ์ผ์ ์ง์ ์ ์ฅํฉ๋๋ค.
์ด ์คํฌ๋ฆฝํธ๋ 24/7 ์์๊ฐ์ ๋ฐ ๋ นํ๋ฅผ ์ํด ์ค๋น๋ ์คํฌ๋ฆฝํธ์ด๊ณ ์ค์ ๊ณผ์ ์์ ์ฝ๊ฐ์ ํ๋ก๊ทธ๋๋ฐ์ ์ง์์ด ํ์ํฉ๋๋ค. ๋จํ์ฑ ๋ นํ๋ฅผ ์ํ๋ค๋ฉด ๋ ๋จ์ํ ๊ฑฐ ์ฐพ์๋ค ์ฐ์ญ์ผ.
์น์ง์ง์ฉ ์คํฌ๋ฆฝํธ๋ฅผ ํ ์คํธํ๊ณ ์์ต๋๋ค. ์ฌ๋ฌ๋ถ์ ๋ง์ ๊ธฐ์ฌ๊ฐ ํ์ํฉ๋๋ค ๐๐
์๋์์๋ ์๋์ ํ๊ฒ ์ง๋ง, ์ง์ง ๋ด์ ๊ตฌ์ถํ๋ ค๋ฉด ์ด ๊ธ์ ์์ฑ์๋ ๋ฆฌ๋ ์ค๋ฅผ ์ฌ์ฉํ๋ ๊ฑธ ์ถ์ฒํฉ๋๋ค. ๋ฆฌ๋ ์ค๋ฅผ ์ฐ๋ ์ด์ ๋, ์ ์ด๋ ์๋ ์ ๋ฐ์ดํธ ์๋ค๊ณ ์ง๋ฉ๋๋ก ์ฌ๋ถํ ํ์ง๋ ์์ผ๋๊น์ (๋์ถฉ ํธ์์น ์นดํ ์ฝ)
//=================================================================== | |
// File: circular_buffer.cpp | |
// | |
// Desc: A Circular Buffer implementation in C++. | |
// | |
// Copyright ยฉ 2019 Edwin Cloud. All rights reserved. | |
// | |
//=================================================================== | |
//------------------------------------------------------------------- |
#!/usr/bin/env python | |
# -*- coding: utf-8 -* | |
""" | |
From a folder containing a set of markdown files, this script: | |
- generate HTML files; | |
- generate RedMine-compliant Textile files; | |
- generate UML diagrams (from PlantUML syntax) and insert the in HTML and Textile files; | |
- send images and HTML files to a server through rsync. | |
""" |
ๅญฆ้จใฎๆๆฅญใงใฟใผใใใซใ่งฆใฃใใใจใฏใใใใฉใใๅใใใชใใจใใไบบใ๏ผ่จ่ชๅฆ็100ๆฌใใใฏใ้ฒใใใซใใใฃใฆ้ปใ็ป้ขใง่บใใชใใฌใใซใซใพใงๅฐ้ใใใใใฎ่ณๆ๏ผ
- UNIX/Linux ็ฐๅขใงใฎใณใใณใใฉใคใณๆไฝใซๆ ฃใใโฆๅใฎๅบ็ค็ฅ่ญ - Qiita
- jlevy/the-art-of-command-line: Master the command line, in one page
ๆธ็ฑใงไฝ็ณป็ใซๅญฆใถใฎใงใใใฐ๏ผๅคง่งใๆฐใใLinuxใฎๆ็งๆธใใ่ฏใใใใ๏ผ
$From = "[email protected]" | |
$To = "[email protected]" | |
$Subject = "Email subject goes here" | |
$Body = "Email body goes here" | |
# The password is an app-specific password if you have 2-factor-auth enabled | |
$Password = "app-specific-password-here" | ConvertTo-SecureString -AsPlainText -Force | |
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $From, $Password | |
Send-MailMessage -From $From -To $To -Subject $Subject -Body $Body -SmtpServer "smtp.gmail.com" -port 587 -UseSsl -Credential $Credential |
- Install Teamcity
- Go to
/conf/server.xml
and find<connector>
node - set the following attributes on it
<Connector port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol"
connectionTimeout="60000"
redirectPort="8543"
useBodyEncodingForURI="true"
socket.txBufSize="64000"