並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 152件

新着順 人気順

windowの検索結果1 - 40 件 / 152件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

windowに関するエントリは152件あります。 macmacOSjavascript などが関連タグです。 人気エントリには 『元任天堂の2人が発明したどこでも窓「Atmoph Window」--日常をSFの世界に変える』などがあります。
  • 元任天堂の2人が発明したどこでも窓「Atmoph Window」--日常をSFの世界に変える

    もし、「ドラえもん」に登場するたくさんのひみつ道具の中から、どれでも1つだけ手に入るとしたら、読者の皆さんは何を選ぶだろうか。私なら迷わず「どこでもドア」を選ぶ。自宅にいながら、世界中の好きな場所に一瞬で行くことができる。そんな夢のような道具があったら、限られた時間の中でどれだけ人生を豊かにできるだろう。考えるだけでワクワクする。 そんな“どこでもドア”の窓バージョンとも言える、“どこでも窓”を本当に作ってしまったのが、元任天堂社員であるアトモフの姜京日氏と中野恭兵氏の2人。世界中の景色を切り替えながら楽しめるスマートなデジタル窓「Atmoph Window(アトモフウィンドウ)」を開発し、2015年に初代モデルを発売した。 現在はそこから改良を重ね、機能を大幅に追加した新モデル「Atmoph Window 2」を開発中。まずはクラウドファンディングサービス「Indiegogo」の支援者の

      元任天堂の2人が発明したどこでも窓「Atmoph Window」--日常をSFの世界に変える
    • 世界中の風景を映せる窓型ディスプレイ『Atmoph Window 2』で思った「YouTubeでいいんじゃね?」からの逆転劇

      » 世界中の風景を映せる窓型ディスプレイ『Atmoph Window 2』で思った「YouTubeでいいんじゃね?」からの逆転劇 特集 世界中の風景を映せる窓型ディスプレイ『Atmoph Window 2』で思った「YouTubeでいいんじゃね?」からの逆転劇 冨樫さや 2023年5月4日 コロナ禍で世界中が苦しいステイホームを強いられたここ数年。自宅の窓から写した何気ない風景を投稿するサイト「VIEW FROM MY WINDOW」が話題になったことも記憶に新しい。 「窓」には人を魅了するなにかがある。ずーっと以前から気になっていた窓型スマートウィンドウ「Atmoph Window 2(アトモフウィンドウ)」という製品を、ついに、ついに試す機会を得た。 ・「Atmoph Window 2」税込49,280円 窓を模した縦長ディスプレイに景色を映すことができるAtmoph Window 2

        世界中の風景を映せる窓型ディスプレイ『Atmoph Window 2』で思った「YouTubeでいいんじゃね?」からの逆転劇
      • TypeScriptのdeclareやinterface Windowを勘で書くのをやめる2022

        おことわり 個々の関数や変数に正しい型をつける話はしません。TypeScript HandbookのDeclarationの章などを読むことをおすすめします。 かわりに、本稿では関数や変数の型宣言をどこにどう置くべきかの指針を与えます。 モジュールとスクリプト declareを正しく使うにはまずモジュールとスクリプトの区別を理解し、意識することが大切です。 ブラウザやNode.jsは外部からの指定でモジュールとスクリプトを区別しますが、TypeScriptでは原則としてファイルの内容でモジュールとスクリプトを区別します。 import 宣言または export 宣言が1つ以上あればモジュール。 CommonJSモジュールの場合はTypeScript専用構文である import = 宣言、 export = 宣言を使う。 それ以外の場合はスクリプト。 ただし、JavaScriptファイル (

          TypeScriptのdeclareやinterface Windowを勘で書くのをやめる2022
        • 「割れ窓」を増やさないためのコード設計 / design not to broke additional window

          PHPカンファレンス沖縄 2019で話したレガシーコード改善手法の一つについてです

            「割れ窓」を増やさないためのコード設計 / design not to broke additional window
          • デスクトップアプリケーションのUIパターン - ウインドウ編(公開版) / UI Patterns of Desktop Applications - Window Layouts

            デスクトップアプリケーションのUIパターン - ウインドウ編(公開版) macOSらしいウインドウをデザインするために役立つ基本パターンを紹介します。 macOS native Symposium #09 https://macos-native.github.io https://macos-native.connpass.com/event/286455/

              デスクトップアプリケーションのUIパターン - ウインドウ編(公開版) / UI Patterns of Desktop Applications - Window Layouts
            • あなたの window.open はなぜ開かないのか,Chrome で - マンガ〜ノ伊藤ノ〜ト

              先日 window.open をしようとしたらポップアップブロッカーに阻まれて open することができなかった. Blocked まあ,これならよくあることなのだが,いかんせん自分の記憶では onClick のようなユーザーのアクション内で開かれた window.open は阻まれないことになってると思っていた.だからそのときも onClick のイベントハンドラ内で window.open したから大丈夫だろう,と思っていたら,見事にブロックされてしまったのでなぜだろう,となっていた. 検証 なので,検証するために 3 つのケースを用意してみた: 検証ページを用意したのであなたの環境でも試してみてね♥ 今回試すブラウザは Google Chrome を前提にしてます ケース1 const immediate = () => { window.open('https://www.goog

                あなたの window.open はなぜ開かないのか,Chrome で - マンガ〜ノ伊藤ノ〜ト
              • WinBox - HTML5 window manager

                WinBox is a modern HTML5 window manager for the web. Lightweight, outstanding performance, no dependencies, fully customizable, free and open source! Please feel free to support me by making a personal donation which helps me a lot to keep this project alive and also to providing all the contribution to keep WinBox.js on a professional top-end level. Thanks a lot, Thomas (ts-thomas) Load Library (

                  WinBox - HTML5 window manager
                • 時間枠の扱いをいい感じにする話 / good-time-schedule-window

                  # 参考URL - https://soudai.hatenablog.com/entry/2017/04/16/152905 - https://soudai.hatenablog.com/entry/2021/07/06/215546 # PostgreSQL Conference Japan 2021 (2021-11-12) https://www.postgresql.jp/jpug-pgcon2021

                    時間枠の扱いをいい感じにする話 / good-time-schedule-window
                  • Autumn - macOS window manager for JavaScript hackers

                    Design your own window manager, using an embedded IDE, JavaScript and TypeScript support, a live developer console, and built-in documentation. Window managers are one of the hacker's secrets to increased productivity. Manually managing windows takes small but real amounts of concentration away from more important matters. Over time that adds up. Window managers relieve you of that by doing all th

                    • Moving a macOS window by clicking anywhere on it (like on Linux)

                      Moving a macOS window by clicking anywhere on it (like on Linux) Today I learned that since macOS High Sierra onwards you can move a window by clicking on any part of it (just like on Linux): For some reason this behaviour is hidden behind a setting accessible only through CLI 🤷‍♂️ It can be enabled by running the following command:

                        Moving a macOS window by clicking anywhere on it (like on Linux)
                      • macOS用のX Window Systemを開発しているXQuartzプロジェクトがAppleの公証を取得しApple Siliconに対応した「XQuartz 2.8.0 beta1」をリリース。

                        macOS用のX Window Systemを開発しているXQuartzプロジェクトがApple Siliconに対応した「XQuartz 2.8.0 beta1」をリリースしています。詳細は以下から。 AppleはMac OS XでUnixのX Window Systemを利用する事を想定し、Mac OS X 10.2 Jaguar時代の2002年にX11.app(XQuartz)を開発、以後Mac OS X 10.5 LeopardからMac OS X 10.7 Lionにはデフォルトでインストールされていたため、Mac OS Xユーザーの方は利用した方も多いと思いますが、このXQuartzがApple Siliconへ対応するようです。 AppleはOS X 10.8 Mountain LionでXQuartzのプリインストールを止め、オープンソース化してメンテナンスを続けていたもの

                          macOS用のX Window Systemを開発しているXQuartzプロジェクトがAppleの公証を取得しApple Siliconに対応した「XQuartz 2.8.0 beta1」をリリース。
                        • GitHub - koekeishiya/yabai: A tiling window manager for macOS based on binary space partitioning

                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                            GitHub - koekeishiya/yabai: A tiling window manager for macOS based on binary space partitioning
                          • When the window is not fully open, your TCP stack is doing more than you think

                            When the window is not fully open, your TCP stack is doing more than you think07/26/2022 This post is also available in 简体中文 and 繁體中文. Over the years I've been lurking around the Linux kernel and have investigated the TCP code many times. But when recently we were working on Optimizing TCP for high WAN throughput while preserving low latency, I realized I have gaps in my knowledge about how Linux

                              When the window is not fully open, your TCP stack is doing more than you think
                            • Apple、複数の不具合を修正したMac用X Window System「XQuartz 2.8.2」を正式にリリース。

                              Appleが複数の不具合を修正したMac用X Window System「XQuartz 2.8.2」を正式にリリースしています。詳細は以下から。 AppleのJeremy Huddleston Sequoiaさんは現地時間2022年06月30日、06月上旬からBeta版を公開し開発を進めてきたMac用のX Window System「XQuartz」の最新バージョンとなる「XQuartz v2.8.2」をリリースしたと発表しています。 XQuartz v2.8.2では、AppKitウィンドウの後ろにあるX11ウィンドウにスクロールイベントが送られないようになった他、XQuartz起動時にssh configが更新されるようになり、XQuartz v2.8.1でレンダリングパフォーマンスを低下させる原因となっていた変更がもとに戻され、 macOS 11 Big Sur以降でキーボードレイア

                                Apple、複数の不具合を修正したMac用X Window System「XQuartz 2.8.2」を正式にリリース。
                              • Apple SiliconをネイティブサポートしたmacOS用X Window System「XQuartz 2.8.0」がリリース。

                                Apple Siliconをネイティブ・サポートしたmacOS用X Window System「XQuartz 2.8.0」がリリースされています。詳細は以下から。 AppleのJeremy Huddleston Sequoiaさんは現地時間2021年03月21日、今年01月末からApple Siliconへの対応のため約4年ぶりにメンテナンスを再開し、Beta/RC版を公開してアップデートを行ってきたmacOS用のX Window System(XクライアントとX11サーバー)「XQuartz v2.8.0」をリリースしたと発表しています。 Changes in 2.8.0 Adds native support for Apple Silicon Macs. リリースノートより抜粋 XQuartzは2002年にXFree86プロジェクトが開発し、2003年からはAppleも参加して一時

                                  Apple SiliconをネイティブサポートしたmacOS用X Window System「XQuartz 2.8.0」がリリース。
                                • WPF の Window 上に Direct3D12 でレンダリングする

                                  はじめに UI は WPF だけどメインのレンダリングに Direct3D を使いたい、というケースはあると思うのですが、 WPF は (Unity などと同じように) ウィンドウ全面をレンダリングするので何も考えずにやろうとするとお互い衝突してうまくいきません。共存させる手順をまとめてみました。せっかくなので (?) Direct3D12 を使ってみました。 サンプルはこちらです。 aosoft / D3D12HelloTriangleWpf .NET 5 (TargetFramework = net5.0-windows) で実装しています。 Direct3D12 部分は Microsoft の "D3D12HelloTriangle" を SharpDX を用いて C# に移植 + 若干改造して外部からパラメータ調整ができるようにしたものを使っています (それを WPF のスライダー

                                    WPF の Window 上に Direct3D12 でレンダリングする
                                  • GitHub - zachleat/browser-window: Used in demos as a way to fake a Safari-esque web browser window.

                                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                                      GitHub - zachleat/browser-window: Used in demos as a way to fake a Safari-esque web browser window.
                                    • TypeScript で window 直下にいろいろ生やしたりグローバル変数を定義する | DevelopersIO

                                      TypeScript は開発に安定をもたらしてくれますが、たまにやりたいことがちょちょっとできずにハマることがあります。今日はそのひとつ、 window オブジェクトにいろいろ生やしたいんだけどうまく生やせないあなたのための記事です。 ポイントは次のふたつです。 tsconfig.json の lib に "DOM" が指定されているかどうか window の定義において import / export を使っているかどうか tsconfig.json の lib に "DOM" が指定されているかどうか tsconfig.json の lib プロパティに "DOM" が指定されているかどうかで書くべき内容が変わります。ご自身の tsconfig.json の中身を確認してみてください。 lib プロパティがない場合は "DOM" が指定されているものとして扱ってください。 DOM あり

                                        TypeScript で window 直下にいろいろ生やしたりグローバル変数を定義する | DevelopersIO
                                      • 【やじうまPC Watch】 【懐パーツ】他社の追従を許さなかった「カノープス Power Window 968PCI-4M」

                                          【やじうまPC Watch】 【懐パーツ】他社の追従を許さなかった「カノープス Power Window 968PCI-4M」
                                        • Atmoph Window | Connect to the world

                                          A window can make your room more open A window whose view is blocked by the next building, a room with just a tiny window, a windowless wall. How nice would it be if instead you could see a beach and a bright blue sky, a view of New York City at night, or a gentle rain to calm your mind? With Atmoph Window, you can experience beautiful views you thought you never would. Like music, it can change y

                                            Atmoph Window | Connect to the world
                                          • Detached window memory leaks  |  Articles  |  web.dev

                                            Detached window memory leaks Stay organized with collections Save and categorize content based on your preferences. What's a memory leak in JavaScript? A memory leak is an unintentional increase in the amount of memory used by an application over time. In JavaScript, memory leaks happen when objects are no longer needed, but are still referenced by functions or other objects. These references prev

                                            • GitHub - raoofha/gter: embed a GUI app inside a terminal window or any other window

                                              gter : embed a GUI app inside a terminal window or any other window tested only with xterm, I also use i3 window manager. this is much better solution than the previous approach. requirement X11 xterm bash compile and run git clone https://github.com/raoofha/gter cd gter bash $PWD/src/setParentWindow.c build # add it to your path ln -s $PWD/src/gter ~/.local/bin/gter chmod +x ~/.local/bin/gter

                                                GitHub - raoofha/gter: embed a GUI app inside a terminal window or any other window
                                              • 新型コロナウイルス感染拡大で株価指数ショートの"Window of Opportunity"か? : 金融日記

                                                (金融日記 Weekly 2020/2/14-2020/2/21) 極めて残念なことに10日ほど前に書いた筆者の予想は実現しつつある。当時、WHOのいま思うと楽観的だった見通し、圧倒的な兵力が投入されている中国政府の新型コロナウイルスの封じ込め作戦で、この惨事は武漢でのエピデミックに留まり、それ以外の地域では小規模な感染で収束するだろう、と多くの識者が考えていた。それゆえに、すこし大きな台風やどこか遠い世界で発生する疫病のようなものぐらいに世界では受け止められていたのだ。 ●新型コロナウイルス(COVID-19)の次の感染爆発の地は東京になりそうだ http://blog.livedoor.jp/kazu_fujisawa/archives/52168377.html しかし、グローバル化により恐るべき感染スピードを手に入れた新型コロナウイルスは、韓国でイランでイタリアで、そして、日本でも

                                                  新型コロナウイルス感染拡大で株価指数ショートの"Window of Opportunity"か? : 金融日記
                                                • GitHub - Blinue/Magpie: An all-purpose window upscaler for Windows 10/11.

                                                  Configuring scaling modes Magpie provides some simple scaling modes by default, but it is recommended to configure them according to your specific use case. Then, change the global scaling mode on the "Profiles"-"Defaults" page. Scaling a window To scale a window, bring the desired window to the foreground and press the shortcut key (default is Win+Shift+A) to display it in fullscreen mode. Note t

                                                    GitHub - Blinue/Magpie: An all-purpose window upscaler for Windows 10/11.
                                                  • URL parts naming. Inspired from web browsers API (new URL(), window.location) and rfc3986.

                                                    url.js `B�y�U pJ�y�U /* href ┌────────────────────────────────────────┴──────────────────────────────────────────────┐ origin │ ┌────────────┴──────────────┐ │ │ authority │ │ ┌───────────────┴───────────────────────────┐ │ │ │ host resource │ │ ┌──────────┴─────────────────┐ ┌────────────┴───────────┬───────┐ │ │ hostname │ pathname │ │ │ │ ┌──────────────┴────────────┐ │ ┌──────┴───────┐ │ │ pro

                                                      URL parts naming. Inspired from web browsers API (new URL(), window.location) and rfc3986.
                                                    • 濃いピンクとグレー/ 睡眠/ ビートルズのアビイ・ロード「She Came In Through The Bathroom Window」/ 久遠チョコレートと障がいもあるひとたち - あい青子「大好きだった曲」と「手離し服」で幸せを感じる「認知症の予防と介護」

                                                      最近は、 よく眠れていますか? 疲れはとれますか? 朝は、毎朝、同じ時間に起きることができますか? 体にも、心にも、脳にも、とても大切な睡眠ですよね ^_^ https://www.aiaoko.com/entry/suimin 本「 ブレイン・ルール 健康な脳が最強の資産である」のなかでも、 睡眠の脳への影響を書いてありましたよ ぐっすり眠りたいですね フクシアと霜降り こうして、介護の毎日の服を「制服化」してから、 朝が楽しいですよ 寝ぼけていても、制服の一色を着るだけ ^_^ カラフルな色から元気ももらえるし、 悩む必要がないのが、最高です 朝は、毎日、同じ時間に起きていますか? 夜、眠れなくて寝不足の日でも、いちおう、朝は同じ時間に起き上がるのがいいそうです 朝、起きて、着替えて、朝ごはんは食べていますか? 歳をとってからは、腹八分がいいみたいですよね お若いかたは、ガッツリどうぞ

                                                        濃いピンクとグレー/ 睡眠/ ビートルズのアビイ・ロード「She Came In Through The Bathroom Window」/ 久遠チョコレートと障がいもあるひとたち - あい青子「大好きだった曲」と「手離し服」で幸せを感じる「認知症の予防と介護」
                                                      • window.localStorage がプライバシー設定によってブロックされた場合に SecurityError を投げなくなりました | Firefox サイト互換性情報

                                                        window.localStorage は従来、ユーザーのプライバシー設定によって使用できない場合、具体的には Cookie が無効となっている際に SecurityError 例外を投げていました。Firefox 67 以降、このプロパティはそうした場合単に null となり、JavaScript に適切な try-catch 処理が書かれていないため一部のサイトが読み込まれない問題を解消します。 // なお、window.localStorage が null となる場合、 // これは引き続き TypeError を投げます window.localStorage.setItem(key, value); // そのため以下のように書く必要があります。 const storage = window.localStorage; if (storage) { // ストレージを使用 st

                                                          window.localStorage がプライバシー設定によってブロックされた場合に SecurityError を投げなくなりました | Firefox サイト互換性情報
                                                        • GitHub - sbmpost/AutoRaise: AutoRaise (and focus) a window when hovering over it with the mouse

                                                          AutoRaise When you hover a window it will be raised to the front (with a delay of your choosing) and gets the focus. There is also an option to warp the mouse to the center of the activated window when using the cmd-tab or cmd-grave (backtick) key combination. See also on stackoverflow Quick start Download the disk image Double click the downloaded .dmg in Finder. In finder, look for mounted disk

                                                            GitHub - sbmpost/AutoRaise: AutoRaise (and focus) a window when hovering over it with the mouse
                                                          • Apple、X.Org Serverに発見された複数の脆弱性を修正したMac用X Window System「XQuartz v2.8.4」をリリース。

                                                            AppleがX.Org Serverに発見された複数の脆弱性を修正したMac用X Window System「XQuartz v2.8.4」をリリースしています。詳細は以下から。 AppleのJeremy Huddleston Sequoiaさんは現地時間2022年12月25日、2011年までMac OS Xにも同梱されていたMac用のX Window System「XQuartz」の最新バージョンとなる「XQuartz v2.8.4」アップデートをリリースし、複数の脆弱性を修正したと発表しています。 Updated server to 21.1.6 to address CVE-2022-3550, CVE-2022-3551, CVE-2022-4283, CVE-2022-46340, CVE-2022-46341, CVE-2022-46342, CVE-2022-46343, a

                                                              Apple、X.Org Serverに発見された複数の脆弱性を修正したMac用X Window System「XQuartz v2.8.4」をリリース。
                                                            • ディスプレイの休止でアプリのWindowサイズや配置が崩れる問題への対策

                                                              気になる製品やニュースと株式投資などをなんとなく書き綴ります。でも戯言や写真が多くなりそう。旅行先を検討中の方は写真が参考になれば幸いです。なお、当然ながら文章および写真の無断転載はお断りしています。使いたい場合には事前にContactからご相談ください。掲載している写真はサーバーのファイル容量節約のために長辺1920pixel以下に抑えています。 この記事を読むのに必要な時間は推定で最大約6分3秒で、速読ですとその半分ぐらいです。 ディスプレイを交換したら、ディスプレイの電源を落したり、ディスプレイが省電力モードに移行して画面が消えたりすると、実行中のアプリケーションのWindowサイズが小さくなったり、配置していたデスクトップのアイコンや実行中のアプリの画面位置が変わってしまう問題に遭遇してしまった。最近のディスプレイはEUの環境関連に準拠しているから、省電力モードに移行してしまうとP

                                                                ディスプレイの休止でアプリのWindowサイズや配置が崩れる問題への対策
                                                              • Floating Windowの変態的な使い方 - ハイパーマッスルエンジニア

                                                                これはVim Advent Calendar 2021の14日目の記事です。 NeovimにFloating Windowが実装されて以来、様々なプラグインが開発、リプレイスされてきました。 有名所でいうとgit-messenger.vimでしょうか。Floating Windowの良い使い方だなあと感動した覚えがあります。 今日は僕が今まで開発してきたプラグインの中で、Floating Windowを変態的に使ったものを紹介したいと思います。 はじめに 矩形選択&ペーストを可視化して直感化 テトリスペースト ボタンを作って発射する 行飛ばしで選択してコピー Vimでビートマニア(@skanehiraさん作) 最後に はじめに 記事内に折りたたまれているコードはダブルクリックでコピーが可能で、 test.vimとして保存 ->:source % -> Shift+T で実行できるようになっ

                                                                  Floating Windowの変態的な使い方 - ハイパーマッスルエンジニア
                                                                • 元任天堂の2人が発明したどこでも窓「Atmoph Window」--日常をSFの世界に変える

                                                                  2代目のこだわり--“顔の角度”で動く、振動スピーカーも そして、初代Atmoph Windowの登場から4年後の2019年、さまざまな改良を重ねた新モデルAtmoph Window 2がいよいよ発売される。本体サイズは650×400×50mm、重さは5.5kg。1920×1080ピクセルの27インチ画面に、美しい景色の映像を表示する(4Kカメラで撮影した映像をフルHD解像度に圧縮することで、美しい映像が得られる)。フレームは交換式となっており、要望が多かった木製フレーム(本物のカリモク製)も新たに用意した。 同社がこれまで撮影した映像だけでなく、新たに世界各地のライブ映像も視聴できるようにする。また、要望が多かったユーザーがスマートフォンなどで撮影した動画もアップロードできるようにするという。これにより、たとえば自宅にいながら「思い出の旅行先の景色」や「遠く離れた実家の庭から見える景色」

                                                                    元任天堂の2人が発明したどこでも窓「Atmoph Window」--日常をSFの世界に変える
                                                                  • TypeScriptでsetTimeout()がNodeJS.Timerになる理由から、window.setTimeout()との違いを理解する - このすみノート

                                                                    AngularのSPA(Single Page Application)のプログラムを書いてたら、以下の問題に遭遇しました。 TypeScriptのコード内でのsetInterval()の返り値には罠がある https://blog.kubosho.com/entry/setinterval-trap-on-typescript/ 内容としては「Type 'Timer' is not assignable to type 'number'.」というエラーメッセージが表示されます。 VSCode(Visual Studio Code)で関数の戻り値を確認すると、戻り値の型はNodeJS.Timerになってます。 私の場合は、Angularで「setTimeout()」を記述しただけです。なぜそれが「NodeJS.Timer」となってしまうのか気になったので、調べてみました。 window.s

                                                                      TypeScriptでsetTimeout()がNodeJS.Timerになる理由から、window.setTimeout()との違いを理解する - このすみノート
                                                                    • AWS announces a 7-day window to return Savings Plans

                                                                      Today we are announcing the ability for customers to return Savings Plans within 7 days of purchase. Savings Plans is a flexible pricing model that can help you reduce your bill by up to 72% compared to On-Demand prices, in exchange for a one- or three-year hourly spend commitment. Starting today, if you realize that the Savings Plan you recently purchased isn’t optimal for your needs, you can ret

                                                                        AWS announces a 7-day window to return Savings Plans
                                                                      • Firefox 88 combats window.name privacy abuses – Mozilla Security Blog

                                                                        We are pleased to announce that Firefox 88 is introducing a new protection against privacy leaks on the web. Under new limitations imposed by Firefox, trackers are no longer able to abuse the window.name property to track users across websites. Since the late 1990s, web browsers have made the window.name property available to web pages as a place to store data. Unfortunately, data stored in window

                                                                        • 【新幹線大爆走】新大阪-東京を10分で走らせたらこうなった Simulation of Window View of Bullet Train Operating at Mach 3

                                                                          東京までノンストップです。想像を絶するスピードの車窓を堪能してください。この動画はフィクションです。時変ハイパーラプス(Time variant hyper-lapse/time-lapse)と呼ぶ手法で制作しています。 ※この動画には画像の変化が激しい部分があり、耐性には個人差があります。慣れない方は視聴をお控えください。 Simulation of Window View of Shinkansen Bullet Train Operating from Osaka to Tokyo (515km) in 10 min What would the view out the window look like if you were on a train operating at Mach 3? The innovative hyper-lapse video effect gives

                                                                            【新幹線大爆走】新大阪-東京を10分で走らせたらこうなった Simulation of Window View of Bullet Train Operating at Mach 3
                                                                          • Atmoph Window的なスマート窓もどきを雑につくる (余ったAndroidタブレット+WindowSwap) - メモ帳DPA

                                                                            動機 Atmoph Windowという世界の風景を表示する製品がある。良さそう。 atmoph.com コンセプトはなかなか魅力的なんだけど、本体が4.5万する上に毎月980円の課金が必要になる。強気の本体価格なのに加え、無けりゃ無くても困らない置物を成立させるために永続的に毎月千円吸われ続けるのは個人的には結構抵抗がある。 高品質な風景の撮影コストの回収にはある程度仕方ないんだろうなとは思うけど、ハードウェア的には要は画面に動画流せりゃ何でも成立しそうに見える。 いい感じの動画ソースさえあれば、適当に有りもの組み合わせて代替はどうとでもなりそう。 window-swap.com 探してみたらうってつけのWebサービスが見つかった。 window-swap.com 窓からの風景を集めて流してくれるWebサービスで、ユーザ投稿の動画を追加していっているとのこと。 単にブラウザでページ開くだけ

                                                                              Atmoph Window的なスマート窓もどきを雑につくる (余ったAndroidタブレット+WindowSwap) - メモ帳DPA
                                                                            • Window 11 22H2での性能低下に対処、「GeForce Experienc 3.26」安定版公開

                                                                                Window 11 22H2での性能低下に対処、「GeForce Experienc 3.26」安定版公開
                                                                              • window.location Cheatsheet | SamanthaMing.com

                                                                                # window.location Cheatsheet Looking for a site's URL information, then the window.location object is for you! Use its properties to get information on the current page address or use its methods to do some page redirect or refresh 💫 https://www.samanthaming.com/tidbits/?filter=JS#2 window.location.origin → 'https://www.samanthaming.com' .protocol → 'https:' .host → 'www.samanthaming.com' .hostna

                                                                                  window.location Cheatsheet | SamanthaMing.com
                                                                                • 【Can you open the window?】の意味は?「依頼」を表す「can」の使い方と答え方-Lesson24

                                                                                  こんにちは。 今日も中学英語の復習をがんばりましょう! このレッスンでは「Can you open the window?」という英語の例文を使い、「can」の意味と答えの返し方について見ていきます。 Lesson22で「can」には複数の意味があると説明したのを覚えていますか?

                                                                                    【Can you open the window?】の意味は?「依頼」を表す「can」の使い方と答え方-Lesson24

                                                                                  新着記事