日時: | 2017-01-02 |
---|---|
作: | @voluntas |
バージョン: | 2.1.0 |
URL: | https://voluntas.githu.io/ |
突っ込みは Twitter @voluntas まで。
import fetch, { Response } from 'node-fetch'; | |
interface ResponseWithParsedJson extends Response { | |
parsedJson?: any; | |
} | |
const toResponseWithParsedJson = ( | |
res: Response, | |
json: any, | |
): ResponseWithParsedJson => { |
import Foundation | |
extension String { | |
func regexEscaped() -> String { | |
var str: String = self | |
"\\*+.?{}()[]-|$".forEach{ | |
let s = String($0) | |
str = str.replacingOccurrences(of: s, with: "\\"+s) | |
} | |
return str |
日時: | 2017-01-02 |
---|---|
作: | @voluntas |
バージョン: | 2.1.0 |
URL: | https://voluntas.githu.io/ |
突っ込みは Twitter @voluntas まで。
#include <array> | |
#include "ratio.h" | |
template < | |
class A_, class B_, class C_, | |
class D_, class E_, class F_, | |
class G_, class H_, class I_ | |
> | |
struct RatioMatrix { |
- windowsはオフラインアカウントでセットアップ | |
- ネットワークにつなぐ | |
- 識別されてないネットワーク問題 | |
http://www.projectgroup.info/tips/Windows/comm_0064.html | |
- windowsのライセンス認証 | |
- windowsをアップデートする |
#!/bin/sh | |
### Desktop & Screen Saver | |
# Desktopを黒に | |
echo "Change Desctop Pictures" | |
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/Library/Desktop Pictures/Solid Colors/Black.png"' | |
# ScreenSaver Kill | |
echo "Disable screensaver" |
// | |
// ofxMackerel.cpp | |
// | |
// Copyright 2015 asus4 | |
// | |
// | |
#include <Poco/Net/HTTPClientSession.h> | |
#include <Poco/Net/HTTPSClientSession.h> | |
#include <Poco/Net/HTTPRequest.h> |
更新: | 2024-04-16 |
---|---|
作者: | @voluntas |
バージョン: | 2024.1 |
URL: | https://voluntas.github.io/ |
概要