Skip to content

Instantly share code, notes, and snippets.

on split(str, delim)
local orgDelim, rtn
set orgDelim to AppleScript's text item delimiters
set AppleScript's text item delimiters to {delim}
set rtn to every text item of str
set AppleScript's text item delimiters to orgDelim
return rtn
@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);
#!/usr/bin/awk
BEGIN {
for (i = 0; i <= 255; i++) {
ord[sprintf("%c", i)] = i
}
}
function escape(str, c, len, res) {
len = length(str)
@moyashi
moyashi / SakuraKeepaLinker.js
Last active December 20, 2022 10:42
Amazon.co.jpの商品ページにサクラチェッカーとKeepaへのリンクを追加するUserScript。Tampermonkeyで動作確認
// ==UserScript==
// @name SakuraKeepaLinker
// @namespace http://hitoriblog.com/
// @version 0.2
// @description try to take over the world!
// @author moyashi ( @hitoriblog )
// @match https://www.amazon.co.jp/*/dp/*
// @match https://www.amazon.co.jp/*/gp/*
// @match https://www.amazon.co.jp/dp/*
// @match https://www.amazon.co.jp/gp/*
$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
@moyashi
moyashi / new_gist.js
Created January 8, 2012 19:12
クリップボードのテキストをgistにポストし、gistのURLをクリップボードにコピーするMyScripts用スクリプト
// クリップボードのテキストをgistにポストし、gistのURLをクリップボードにコピー
// gist_loginは、EmailではなくName
var gist_login = "あなたのユーザ名";
// gist_tokenは https://github.com/account/admin のAPI Tokenを転記
var gist_token = "あなたのgithub token";
// --------------- Functions ---------------