name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays
| // 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 <mohit@muthanna.com> | |
| # edited by Valentijn Nieman <valentijnnieman@gmail.com> | |
| # | |
| # 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 = "your-gmail-address@gmail.com" | |
| $To = "the-destination-user@domain.com" | |
| $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.xmland 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"