Trending

#bstr

Latest posts tagged with #bstr on Bluesky

Latest Top
Trending

Posts tagged #bstr

Preview
四国をバイクで満喫!BSTR2026ツーリングラリーエントリー受付開始 四国を一周するバイクツーリングイベント「BSTR2026」のエントリー受付が2025年11月27日より開始。初心者向けのルールも魅力!

四国をバイクで満喫!BSTR2026ツーリングラリーエントリー受付開始 #香川県 #高松市 #四国 #バイクツーリング #BSTR

四国を一周するバイクツーリングイベント「BSTR2026」のエントリー受付が2025年11月27日より開始。初心者向けのルールも魅力!

0 0 0 0
Preview
Bitcoin Represents 'A Digital Transformation Of Capital Markets', Says Michael Saylor As Strategy Adds $217M In BTC - Strategy (NASDAQ:MSTR) Strategy Inc. (NASDAQ:MSTR) on Monday disclosed it had purchased 1,955 Bitcoin (CRYPTO: BTC) for about $217.4 million, according to a Sep.

Bitcoin Represents 'A Digital Transformation Of Capital Markets', Says Michael Saylor As Strategy Adds $217M In BTC Strategy Inc. (NASDAQ: MSTR ) on Monday disclosed it had purchased 1,955 ...

#$BTC #$ETH #$WLD #BLSH #BMNR #BSTR #CEP #Cryptocurrency #GLXY #MARA #MSTR

Origin | Interest | Match

0 0 0 0
Preview
Did BSTR get its bitcoin from Tether? Adam Back’s BSTR Inc. is the fourth largest publicly traded BTC treasury company, yet questions about the source of its coins linger.

protos.com/did-bstr-get.... #tethering #BSTR

0 0 0 0
Video

⚡ Flash News ⚡

💥 Adam Back’s BSTR aims for 50,000 BTC 💣

Adam Back's Bitcoin treasury firm, BSTR, plans to go public with over 30,000 BTC and $1.5B in financing, aiming to surpass 50,000 BTC and position itself as the "Berkshire Hathaway of Bitcoin".

#Bitcoin #BSTR #AdamBack #Treasury #Crypto

0 0 0 0
Post image

⚡ Flash News ⚡

🏦 BSTR becomes fourth-largest BTC treasury 🥇

Adam Back’s firm BSTR will hold 30,021 BTC post-SPAC merger, surpassing Tesla and ranking just behind Strategy, Marathon, and Twenty One.

#BSTR #Bitcoin #AdamBack #Crypto #Corporates

1 0 0 0
Preview
Adam Back'in Bitcoin Standard Treasury Company'si (BSTR) Halka Açılıyor Erken BTC katkıda bulunan Adam Back'in sahibi olduğu Bitcoin Standard Treasury Company, bilançosunda 30.000'den fazla Bitcoin ile halka açılacağını duyurdu.

Adam Back’in Bitcoin Standard Treasury Company’si (BSTR) Halka Açılıyor koinmedya.com/adam-backin-... #kriptopara #koinmedya #bitcoin #ethereum #btc #eth #bitcoinhaberleri #coinhaberleri #adamback #bitcoin #bstr #btc

1 0 0 0
Preview
Adam Back helped build Bitcoin’s foundations — now he’s taking BSTR to Nasdaq Bitcoin Standard Treasury Reserve is going public via Cantor Fitzgerald’s SPAC with 30,021 BTC, a $1.5 billion raise, and bitcoin per share as its core financial metric.

Adam Back helped build Bitcoin’s foundations — now he’s taking BSTR to Nasdaq Backed by Adam Back and built around a Bitcoin-per-share model, BSTR is set to enter the public markets through a Cantor Fitzgerald-led SPAC. A $3.5... @cosmicmeta.io #BSTR

https://u2m.io/ZU1wJEFv

0 0 0 0
Preview
Adam Back'in Bitcoin Standard Treasury Company'si (BSTR) Halka Açılıyor Erken BTC katkıda bulunan Adam Back'in sahibi olduğu Bitcoin Standard Treasury Company, bilançosunda 30.000'den fazla Bitcoin ile halka açılacağını duyurdu.

Adam Back’in Bitcoin Standard Treasury Company’si (BSTR) Halka Açılıyor koinmedya.com/adam-backin-... #kriptopara #koinmedya #bitcoin #ethereum #btc #eth #bitcoinhaberleri #coinhaberleri #adamback #bitcoin #bstr #btc

0 0 0 0
Preview
Bitcoin Standard Treasury Company to Launch With 30,021 Bitcoin After SPAC Merger – Crypto News Bitcoin News “I am excited to be part of the launch of Bitcoin Standard Treasury Company," Brandon Lutnick said on the social media platform X.

Bitcoin Standard Treasury Company to Launch With 30,021 Bitcoin After SPAC Merger Bitcoin Standard Treasury Company (BSTR) will become a publicly traded company through a merger with special-purpose acquisition company Cantor... @cosmicmeta.io #BSTR

https://u2m.io/DJnI3yNo

0 0 0 0

🏦 دخلت #BSTR سباق خزن #البيتكوين المؤسسي بامتلاك 30,021 BTC (1.5 مليار دولار) عبر #SPAC مدعوم من #Cantor و #PIPE، لتصبح رابع أكبر خزانة علنية. بقيادة Adam Back، تركز على بناء منصة مالية بمقياس BTC‑per‑share، ما يعزز تحول #BTC إلى فئة أصول رسمية. #Bitcoin #Institutional #Crypto

0 0 0 0

Adam Back's Bitcoin Standard Treasury ( #BSTR) to go public via Cantor-backed SPAC with 30,021 BTC, which will make it the 4th largest public Bitcoin treasury

0 0 0 0
#include <Windows.h>
#include <Oleauto.h>
#include <memory>
#include <iostream>
#include <array>

template<std::size_t N>
struct PseudoBStr {
	DWORD len_;
	std::array<wchar_t, N> data_;

public:
	constexpr PseudoBStr(const wchar_t(&str)[N])
		: len_{ N * sizeof(wchar_t) }
		, data_{ std::to_array(str) }
	{}

	constexpr wchar_t* bstr() const noexcept {
		return const_cast<BSTR>(&this->data_[0]);
	}
};

template<PseudoBStr bstr>
BSTR make_bstr() {
	constexpr static PseudoBStr value = bstr;
	return value.bstr();
}

#define CONST_BSTR(STR) make_bstr<STR>()

int main() {
	auto bstr = CONST_BSTR(L"XYZ");

 	std::wcout << bstr << std::endl;
	std::wcout << SysStringLen(bstr) << std::endl;
	std::wcout << SysStringByteLen(bstr) << std::endl;
}

#include <Windows.h> #include <Oleauto.h> #include <memory> #include <iostream> #include <array> template<std::size_t N> struct PseudoBStr { DWORD len_; std::array<wchar_t, N> data_; public: constexpr PseudoBStr(const wchar_t(&str)[N]) : len_{ N * sizeof(wchar_t) } , data_{ std::to_array(str) } {} constexpr wchar_t* bstr() const noexcept { return const_cast<BSTR>(&this->data_[0]); } }; template<PseudoBStr bstr> BSTR make_bstr() { constexpr static PseudoBStr value = bstr; return value.bstr(); } #define CONST_BSTR(STR) make_bstr<STR>() int main() { auto bstr = CONST_BSTR(L"XYZ"); std::wcout << bstr << std::endl; std::wcout << SysStringLen(bstr) << std::endl; std::wcout << SysStringByteLen(bstr) << std::endl; }

there’s a nice combination of #C++20 features which enable such badness as “statically allocated #BSTR

if you don’t know what this is consider yourself lucky

0 0 1 0