Skip to content

Instantly share code, notes, and snippets.

@EarlOfWhales
私はついに#crypto、#XRP、#ETHについての私の見解を共有することに興奮しています。この記事は2023年から私のロッカーに入っていますが、公開していません。BOOOMの投稿を好む人に謝罪 - 私はXプレミアムを買う余裕がないので、一口サイズのチャンクで提供される長い読み物です。お楽しみに
#XRPCommunityでは、「#SECは#Rippleをターゲットにしている」、「SECは無能」、「#ETHとSECは骨の髄まで腐敗している」というおなじみのリフレインをよく耳にします。それぞれの声明はそれ自体でいくつかの真実を持っているかもしれませんが、私たちがどこに向かっているのかを理解するために全体像を見ることが重要です。
陰謀的に聞こえるかもしれませんが、特にETHとBTCをめぐる暗号シーンは、意図的に規制されることなく、約10年間自由に繁栄することを許されたとますます信じています。この監督の欠如は、政府から離れた並行金融システムを生んだ
そして中央銀行。しかし、私の意見では、ETHエコシステムと多数の関連プロジェクトの崩壊につながるのは、このフリーパスだけです(すぐに)。また、リップルに対するSECの訴訟は、最初から1つの演劇作品だったと思います。
■溶接ができる
1時間1,100円 東京都三鷹市 "DIY STORE三鷹" http://diystoremitaka.com
1時間1,000円 神奈川県横浜市(長津田) "DIY用のレンタルスペース" https://jmty.jp/kanagawa/ser-oth/article-fk8cq
↑溶接機はないが、持ち込んだらできそう
1時間1,650円〜 東京都八王子市(溶接1時間2,200円) "HACHIOJI DIY GARAGE" https://diy-garage.net/
■溶接ができない
MEMORANDUM
-------------------
Date April 8, 2019
To:
From:
Re: Howey Analysis: XRP
You have asked for an analysis of whether XRP should be treated as a "security" under the federal securities lows. The analysis that follows is based on information that we have been able to obtain from the public record. Because the analysis in this memorandum is heavily fact-dependent, to the extent that tha information we have relied upon is erroneous, or to the extent additional information exists that we have not considered but that bears upon the analisis contained herein, the conclusions contained in this memrundum may require modification.
Most digital assets currently in circulation today do not clearly fall into any of the more common types of instruments within the definition of "security" in the Securities Act of 1933 (as amended, the "Securities Act") or the Securities Exchange Act of 1934 (as amended, the "Exchange Act"), such as notes, stock or bonds. (1) However, as the Securities & Exchange Commission (the "
// Amazonが直接売ってるやつだけ検索するブックマークレット
javascript:var%20kwd%3DencodeURIComponent(window.prompt(%22Amazon%E6%A4%9C%E7%B4%A2%22%2C%22%22))%3Bif(kwd%20!%3D%22null%22)%7Bwindow.location.href%3D%22https%3A%2F%2Fwww.amazon.co.jp%2Fs%3Fk%3D%22%20%2B%20kwd%20%2B%20%22%26emi%3DAN1VRQENFRJN5%22%3B%7Dvoid(0);
$buf = "";
document.querySelectorAll("a[href^='/explore/tags/'").forEach(
function(currentValue, currentIndex, listObj) {
$buf = $buf + currentValue.text + " ";
}
);
prompt("", $buf);
tell application "Photos"
set sel to selection
set cnt to contents of sel
class of cnt
set pr to properties of item 1 of cnt
set loc to location of pr
set lat to first item of loc
set lon to second item of loc
set u to "https://www.google.com/maps/place/" & lat & "," & lon & "/"
set the clipboard to u
--- robin_nano_cfg_n.txt 2021-07-26 19:21:48.000000000 +0900
+++ robin_nano_cfg_3.txt 2021-07-13 16:48:28.000000000 +0900
@@ -1,7 +1,3 @@
-################# MKS Robin nano configuration #######################
-#此选项只在出厂测试使用
->cfg_hardware_test_enable 0 #硬件测试使能。
-
#===================高级功能设置=======================================
>cfg_insert_det_module 0 #接入断电检测模块(1:mks 220det;0:mks pwc)
set _clipboard to the clipboard
set _lines to paragraphs of _clipboard
set _output to ""
repeat with i in (reverse of _lines)
set _output to _output & i & "
"
end repeat
set the clipboard to _output
@moyashi
moyashi / gist:fdc78da117694686390336b57ad581b8
Last active December 6, 2021 17:14
macOSでCNCコントロールボードへコマンドラインからGrblのhexを書き込む
Arduino IDEを「/Applications/Arduino.app」にインストールしてあり、
書き込み対象のGrblのhexがファイル名「firmware.hex」として「~/Downloads」にあり、
CNCコントロールボードのシリアルポートが「/dev/tty.wchusbserial14510」であると
仮定。
Grblのhexはここにある https://github.com/gnea/grbl/releases
Grbl0.9から1.1へのアップデートをする場合は、事前に$$で設定を書き出し、コピペして保存しておく。
cd ~/Downloads
#!/usr/local/bin/python3
import subprocess
from subprocess import PIPE
array = {"ANYCUBIC MEGA-S":"192.168.1.10",
"ANYCUBIC i3 MEGA":"192.168.1.20",
"KINGROON KP3S-1":"192.168.1.30",
"KINGROON KP3S-2":"192.168.1.40",
"KINGROON KP3S-3":"192.168.1.50",