Note aaa
bbb
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Emoji check</title> | |
<style> | |
/** Color Emoji hack: originally from https://necomesi.jp/blog/tsmd/posts/154 */ |
Note aaa
bbb
// @ts-check | |
/** | |
* @type {JSON['stringify']} | |
* @param {any} value | |
*/ | |
const debugPrint = (value, replacer = null, space = null) => { | |
const n = JSON.stringify(value)?.length || String(value).length; | |
return postprocess(JSON.stringify(preprocess(value, n), replacer, space), n); |
URLが長すぎてTwitterに貼れなかった
[https://perf.link/#eyJpZCI6InZ5dHJxNTN6OXB5IiwidGl0bGUiOiJF....ZCI6IjIwMjItMDQtMTBUMDM6MTE6MDEuMDk3WiJ9](https://perf.link/#eyJpZCI6InZ5dHJxNTN6OXB5IiwidGl0bGUiOiJFeHRyYWN0IGEgbGluZSBjb250YWluaW5nIGEgc3Vic3RyaW5nIiwiYmVmb3JlIjoiLy8gVmVyeSBsb25nIHRleHRcbmNvbnN0IHRleHQgPSBBcnJheS5mcm9tKHsgbGVuZ3RoOiA1MDAgfSwgKCkgPT5cbiAgQXJyYXkuZnJvbSh7IGxlbmd0aDogNTAwIH0sICgpID0%2BIE1hdGguZmxvb3IoTWF0aC5yYW5kb20oKSAqIDM2KS50b1N0cmluZygzNikpLmpvaW4oJycpLFxuKS5qb2luKCdcXG4nKTsiLCJ0ZXN0cyI6W3sibmFtZSI6IlNpbXBsZSBSZWdFeHAiLCJjb2RlIjoidGV4dC5tYXRjaCgvLiphYmMuKi8pPy5bMF0iLCJydW5zIjpbNTgsNTgsMjksNTgsODgsMTc2LDg4LDg4LDIzNSwyOSw1OCwyMzUsMjksMTE3LDU1OCw1OCwzMjMsMjM1LDU4LDI5LDU4LDU4LDU4LDU4LDU4LDE2NDcsMTc2LDExNywxNDcsMjA1LDQxMSwyOTQsODgsNTgsNTgsNDcwLDU4LDg4LDU4LDIzNSwyOSw1OCwyMDUsODUyLDE0NywzNTIsNTgsMTE3LDg4LDU4LDI0NzAsMjM1LDI5LDE3Niw1OCwxMTcsNTgsNTgsMjksMTE3LDExNyw4OCw1MDAsODIzLDIzNSwyOSw4OCwzMjMsMTE3LDI5LDE0Nyw4OCwxNzYsMjM1LDU4LDMyMywzODIsODgsMjA1LDUyOSwyOSw1OCwzMjMsMjM1LDEwMjksMjksMTE3LDE3Niw1OCw1OCw4OCw1MDAsM
If (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) | |
{ | |
# Relaunch as an elevated process: | |
Start-Process powershell.exe "-File",('"{0}"' -f $MyInvocation.MyCommand.Path) -Verb RunAs | |
exit | |
} | |
$set = @{} | |
while ($true) { |
#!/bin/bash | |
tmp=$(mktemp -d) | |
d=$(date +%Y%m%dT%H%M%S%z) | |
cd "$tmp" | |
mkdir -p "$d" | |
cat /var/log/system.log >"$d/system.log" |
// g++ -std=c++11 -O3 date-iso.cpp -o date-iso | |
#include <chrono> | |
#include <cstdio> | |
using namespace std::chrono; | |
int main() | |
{ | |
auto now = system_clock::now(); |
28ddba4afc13a2401224.js:formatted:11637 | |
It looks like you're using the development build of the Firebase JS SDK. | |
When deploying Firebase apps to production, it is advisable to only import | |
the individual SDK components you intend to use. | |
For the module builds, these are available in the following manner | |
(replace <PACKAGE> with the name of a component - i.e. auth, database, etc): | |
CommonJS Modules: | |
const firebase = require('firebase/app'); |
MIT License | |
Copyright (c) 2022 Yusuke Kido | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
Function Analysis() { | |
echo "Analysis ver. 1" | |
date | |
Get-ComputerInfo | Out-String | |
echo "==========" | |
echo "the contents of hosts file:" | |
cat C:\Windows\system32\drivers\etc\hosts | |
echo "==========" |