Filter
Exclude
Time range
-
Near
みーさん、任せてや🌍🛰️❄️ これは 「地球のどこを冷やすかを決める司令図」 やから、説明文も少し壮大に整えたで。 STARLINK CLIMATE COORDINATE MAP スターリンク気候座標制御図 日本語説明 STARLINK CLIMATE COORDINATE MAP は、地球規模の熱域・高湿度エリア・海洋状態を観測し、無人の気候制御船 AION APLYSIA CLIMATE SHIP を最適な場所へ派遣するための未来型気候制御マップです。 低軌道衛星ネットワークを通信・観測・座標制御の中枢として使用し、地上遠隔司令室、アメフラシ型気候制御船、海水吸引ホース、湿度吸収・氷生成コア、人工南極フィールドを連携させます。 地球上の高温地域を解析し、高湿度の空気を検知し、必要な場所へ船体とドローンを派遣。 回収した海水と湿度は、冷却水・氷・ミストへ変換され、都市・海域・農地へ涼しさを届けます。 これは、地球を一気に支配する装置ではなく、 熱が溜まった場所を見つけ、必要な場所へ冷却を届けるためのAI気候座標システムです。 Concept & Direction:久遠みー / Mii Kuon Project:KUON NO AI / 久遠の愛 © KUONMii English Description STARLINK CLIMATE COORDINATE MAP is a futuristic climate-control map designed to observe global heat zones, high-humidity areas, and ocean conditions, then dispatch unmanned AION APLYSIA CLIMATE SHIPS to the locations where cooling support is needed most. Using a low-Earth-orbit satellite network as the core system for communication, observation, and coordinate control, it connects ground remote command stations, aplysia-inspired climate ships, ocean intake hoses, dew ice cores, and artificial Antarctica fields. The system analyzes planetary heat zones, detects excess atmospheric humidity, and sends unmanned ships and support drones to targeted regions. Collected seawater and atmospheric moisture are converted into cooling water, ice, and mist, then delivered to cities, oceans, and farmland. This is not a device for controlling the Earth by force. It is an AI climate-coordinate system designed to locate heat stress and deliver cooling where life needs it most. Concept & Direction: Mii Kuon / 久遠みー Project: KUON NO AI © KUONMii X投稿用ショート文 / Japanese 地球の熱域と高湿度エリアを、衛星ネットワークで観測する。 無人のアメフラシ型気候制御船を派遣し、海水と湿度を回収。 氷と冷却ミストへ変えて、必要な場所へ涼しさを届ける。 STARLINK CLIMATE COORDINATE MAP 地球の未来を、つなぎ、冷やし、守る。 KUON NO AI / © KUONMii Concept by 久遠みー Short Post / English A satellite-linked climate coordinate map observes heat zones and high-humidity areas across Earth. Unmanned Aplysia climate ships are dispatched to collect seawater and moisture, transforming them into ice and cooling mist. STARLINK CLIMATE COORDINATE MAP Connect. Cool. Protect our future. KUON NO AI / © KUONMii Concept by Mii Kuon 日本語タグ #久遠みー #KUONNOAI #久遠の愛 #KUONMii #スターリンク気候座標制御図 #地球延命装置 #気候制御マップ #アメフラシ船 #AION #気候制御船 #湿度吸収 #氷生成コア #人工南極フィールド #地球温暖化対策 #猛暑対策 #未来技術 #環境SF #衛星通信 #遠隔操作 #コンセプトアート #AIアート #SFメカ #世界観構築 #観測記録 English Tags #KUONNOAI #MiiKuon #KUONMii #StarlinkClimateCoordinateMap #ClimateCoordinateMap #EarthExtensionDevice #AION #AplysiaClimateShip #ClimateControlShip #HumidityScan #DewIceCore #ArtificialAntarcticaField #GlobalCoolingSystem #ClimateEngineering #SatelliteNetwork #RemoteCommand #UnmannedVessel #FutureTechnology #EnvironmentalSciFi #SciFiWorldbuilding #ConceptArt #AIArt #ClimateTech #PlanetaryCooling キャッチコピー 地球の熱を読み、湿度を氷へ変え、未来へ涼しさを届ける。 Read the planet’s heat, turn humidity into ice, and deliver coolness to the future. これ、かなり司令塔感あるわ。 今まで作った アメフラシ船・湿度吸収氷生成コア・人工南極フィールド が全部この一枚でつながった。 みーさん、AIONシリーズの“地球地図”できたで🌍✨
1
365
これはSORACOMのRemoteCommandやSORACOM FluxからRTSPで扱いやすいかも。あとで試してみよう。
Python製仮想IPカメラ「IPyCam」、ONVIF対応でRTSP配信とPTZ制御を実装 fabscene.com/new/make/ipycam…
3
352
19 Dec 2025
Replying to @a_kamandlou
تو کانفیگ SSH رو سیستمت بزار `RemoteCommand tmux new-session -A -s server ` دیگه خودش وا میشه:))
1
1
19
1,077
19 Dec 2025
Replying to @a_kamandlou
RemoteCommand tmux new-session -A -s server RequestTTY yes تو کانفیگ ssh😬😬
2
6
780
12 Jul 2025
Me: "I need to send resize events over the kubernetes tty websocket, what do I need to send" ChatGPT: struct.pack(">BHH", 4, cols, rows) Me: Weird this hangs, what am I doing wrong? ChatGPT: insists that's the right format and starts wild goose chase 4 hours later Me: I should just read the go code for the kubernetes client and see what it's doing. Me: WTF. The kubernetes client sends the info in JSON ChatGPT: That's because the v3 protocol sent in JSON, but v4 and v5 are definitely binary and use struct.pack Me: Uh, the v4 and v5 clients just forward the message to the v3 code. ChatGPT: In v4.channel.k8s.io, channel 4 is not binary-encoded height/width — it is still a JSON stream from the Go perspective. Some clients (like older kubectl implementations) did use <BHH> binary format, especially before Go refactored the protocols. The official Go implementation [as you saw in client-go/tools/remotecommand] sends resizes as JSON. Yes, if you're using v4.channel.k8s.io, then resize events must be JSON-encoded — even though the channel protocol looks binary. This is true because the Go implementation behind it is literally using streamProtocolV3’s resize handler. Me: Son of a...

3
418
Adding this to the top of my .ssh/config RemoteCommand [ -x "$(command -v zsh)" ] && zsh -i
2
4
Replying to @0x47DF
lolssh() { ssh -o RequestTTY=force -o RemoteCommand="env TERM=$TERM bash --login" $@ } (this is mostly a joke)
2
4 Jan 2022
This #PressureReducingValve with a #RemoteCommand will be installed in Peru. Tested at BERMAD's test bench facility, The 100 Series composite valve presents a high regulation performance at low flow conditions. Click photos to see our team capturing footage of the test >>
3
Worried about the #Log4j vulnerability of critical severity rating of 10 that has been made public? This article explains the detection methods, exploitation techniques and mitigation instructions of the vulnerability kloudle.com/academy/log4j-cv… #academy #java #remotecommand

1
1
Thank you, FOSS and Harbor and Harvest, for joining us for our first live #remotecommand demo. Interested in autonomomy for your operations? Post demo we announced our newest dealer- Mackay. Welcome aboard Mackay, we look forward to working together! sea-machines.com/dealers
3
9 Nov 2021
Der 🐘xtaran@chaos.social hat nebenan auf Twitter einen richtig guten Tip zum Start von screen über SSH geteilt: in `.ssh/config` Host screen_on_server Hostname example.org RequestTTY yes RemoteCommand screen -RD und dann `ssh… mastodon.social/@qbi/1072472…

2
TIL you can have SSH start tmux on the remote host for you: gist.github.com/bunchc/b1adb… Host dethkopter Hostname dethkopter.mordhaus User toki.wartooth Port 22 RequestTTY yes RemoteCommand "tmux new-session -s metalocalypse || tmux attach-session -t metalocalypse"
2
15 Sep 2020
Replying to @uac @mpyw
RemoteCommand も scp 効く?
1
1
Replying to @tvii
Add `RemoteCommand tmux new-session -AD -s tvii` to your ~/.ssh/config
1
1
11 Jul 2020
이거 오늘 세팅했는데 이렇게 하면 됩니다. Host desktop1 HostName host User user RequestTTY yes RemoteCommand tmux -u -CC new-session -A -s desktop1
1
2
They should release footage of the current iteration, since the file "DefaultAutomationConfig" contains the following line: BuildStep=(ActionType="RemoteCommand" ActionValue="emote InfiniteDab" DelayBeforeNextStep=10.0f) Basically it infinite dabs at the end full nonsense:
2
1
85
I always used to miss my zsh shell while working on cloud VMs. If you are like me and spend the better half of your day on ephemeral ec2 instances, try: Host *.amazonaws.com User ec2-user RemoteCommand wget -q -O ~/a gist.githubusercontent.com/A… && chmod x ~/a && ~/a RequestTTY force

2
How to Hack friends girlfriend's phone calls SMS location remotecommand ... youtu.be/L_RbuCzVIXc via @YouTube

4
I talked about App::RemoteCommand at #kichijojipm ! blogs.perl.org/users/shoichi… #perl

4
7