This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tap "homebrew/bundle" | |
tap "powershell/tap" | |
brew "jq" | |
cask "betterdisplay" | |
cask "google-chrome" | |
cask "powershell/tap/powershell" | |
cask "raycast" | |
cask "unity-hub" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
module.exports = { | |
context: `${__dirname}/src`, | |
entry: { | |
index: './index.ts' | |
}, | |
output: { | |
path: `${__dirname}/dist`, | |
filename: '[name].js' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppDelegate::AppDelegate() | |
{ | |
std::thread th{[]{ | |
using clock = std::chrono::steady_clock; | |
constexpr int64_t LOOP_COUNT = 100000; | |
constexpr int64_t DIST_FREQ = 200; | |
constexpr int64_t DIST_SIZE = 16; | |
std::this_thread::sleep_for(std::chrono::seconds{10}); | |
int64_t min = std::numeric_limits<int64_t>::max(); |