というか、Visual Studioになるわけだが。 普通はCommunity Editionで問題ないと思うが、用途に応じてライセンスを選ぶこと。 インストールする際には、Windowsデスクトップ開発とかいうのを選ぶ。他はお好みで。 あー、確認してないけど、英語の言語パックは入れた方が多分いいです。入れないとだめかもしれない(thx hsbtさん)。
GitHubにあるので、READMEの手順に従えばいい。 この過程でgitも入ることになる。
| html, body{ | |
| height: 100%; | |
| } | |
| #clock { | |
| font-size: 50px; | |
| /* font-family: 'Helvetica, Arial'; | |
| color: #3e3e3e; */ | |
| } |
| require "Win32API" | |
| require 'Date' | |
| require 'etc' | |
| api = Win32API.new( 'user32', 'GetLastInputInfo', ['P'], 'I') | |
| # match the structure LASTINPUTINFO. First 4 byte int is size of struct | |
| s = [8, 0].pack('l*') | |
| t = Win32API.new("kernel32", "GetTickCount", nil, 'L') |
| <html> | |
| <head> | |
| <script src="clmtrackr.js"></script> | |
| <script src="model_pca_20_svm.js"></script> | |
| <script src="p5.js"></script> | |
| <script src="p5.dom.js"></script> | |
| <script> | |
| var ctracker; |
| <html> | |
| <head> | |
| <title>AudioPlayground</title> | |
| <style>* {box-sizing: border-box;}</style> | |
| </head> | |
| <body> | |
| <h3>AudioPlayground</h3> | |
| <p>If you're happy and you know it, clap your hands!</p> | |
| <script> | |
| var Recording = function(cb){ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'> | |
| <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>Editor</title> | |
| <style id="jsbin-css"> | |
| * { box-sizing: border-box } |
| <? | |
| // <readme> | |
| /* | |
| This is a lite version of Olark's and Intercom's functionality (without the chat part). | |
| It lets you get feedback from users on your site to your email. | |
| And you won't have to rely on another company anymore! |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "ubuntu/bionic64" | |
| config.vm.provider :virtualbox do |v| | |
| v.gui = true | |
| v.memory = 2048 | |
| end | |
| # Currently "ubuntu/bionic64" on VirtualBox requires `type: "virtualbox"` | |
| # to make synced folder works. |
というか、Visual Studioになるわけだが。 普通はCommunity Editionで問題ないと思うが、用途に応じてライセンスを選ぶこと。 インストールする際には、Windowsデスクトップ開発とかいうのを選ぶ。他はお好みで。 あー、確認してないけど、英語の言語パックは入れた方が多分いいです。入れないとだめかもしれない(thx hsbtさん)。
GitHubにあるので、READMEの手順に従えばいい。 この過程でgitも入ることになる。
So you've got a cool app in Ruby, and you want to share it with your friends, but they don't love Ruby as much as you.
What do you do? Package it up along with the Ruby runtime and give it to them. Simple right? Maybe not so.
Thankfully smarter cookies than me, have tackled the problem, here is a map of the current state of play
| #!/usr/bin/env bash | |
| # Abort sign off on any error | |
| set -e | |
| # Start the benchmark timer | |
| SECONDS=0 | |
| # Repository introspection | |
| OWNER=$(gh repo view --json owner --jq .owner.login) |