並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 37 件 / 37件

新着順 人気順

Schemeの検索結果1 - 37 件 / 37件

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

Schemeに関するエントリは37件あります。 ProgrammingRustcss などが関連タグです。 人気エントリには 『Far-right Twitter influencers first on Elon Musk’s monetization scheme』などがあります。
  • Far-right Twitter influencers first on Elon Musk’s monetization scheme

    LOS ANGELES — On Thursday, Twitter announced that it would begin sharing ad revenue with content creators on its platform for the first time. But the offer won’t apply to all creators. The first beneficiaries appear to be high-profile far-right influencers who tweeted before the announcement how much they’ve earned as part of the program. Ian Miles Cheong, Benny Johnson and Ashley St. Clair all to

      Far-right Twitter influencers first on Elon Musk’s monetization scheme
    • Recursion Schemeによるドドスコ問題の恐るべき解法 - Lambdaカクテル

      さる8月1日、計算機科学の根幹を揺るがすドドスコ問題が出題され、エンジニアたちは震撼した(意味: 面白問題が出たので、なるべくヘンテコな解法を使って己の技巧を誇示するためにエンジニアたちは競ってコードを書きはじめた)。 【問題】配列{"ドド","スコ"}からランダムに要素を標準出力し続け、『その並びが「ドドスコスコスコ」を3回繰り返したもの』に一致したときに「ラブ注入♡」と標準出力して終了するプログラムを作成せよ(配点:5点)— ((🐑++)) (@Sheeeeepla) 2022年8月1日 そこで、関数型テクニックをなんとかねじこんだ解法を作ったのでここに示す。 import higherkindness.droste.Coalgebra import higherkindness.droste.data.list.{ListF, ConsF, NilF} import higherk

        Recursion Schemeによるドドスコ問題の恐るべき解法 - Lambdaカクテル
      • Hender Scheme(エンダースキーマ)カウレザートートバッグ購入レビュー!大人にこそおすすめな逸品! - YMのメンズファッションリサーチ

        先日、Hender Scheme(エンダースキーマ)のカウレザーバッグ(トートバッグ)を購入したのでレビュー致します。 メンズの国内バッグブランドはなかなか選択肢が少ないのが現状ですが、(純粋なバッグブランドではないものの)エンダースキーマは拘りの詰まった素晴らしいブランド。是非最後までお付き合いください。 Hender Scheme(エンダースキーマ)とは 沿革 レザーブランドとして Hender Scheme(エンダースキーマ)カウバッグ(トートバッグ)レビュー シルエット レザー ディテール 使用イメージ Hender Sheme(エンダースキーマ)その他のアイテム シューズ バッグ 小物 まとめ Hender Scheme(エンダースキーマ)とは 沿革 出典:Hender Scheme(エンダースキーマ)など正規取り扱い店舗通販サイト | Auggie 先述したように、エンダースキ

          Hender Scheme(エンダースキーマ)カウレザートートバッグ購入レビュー!大人にこそおすすめな逸品! - YMのメンズファッションリサーチ
        • Node.js コアモジュールの import/require には `node` schemeがつけられる - from scratch

          Node.js アドベントカレンダーの 3 日目の記事です。空きを埋める形で始めました。 qiita.com www.codegrid.net CodeGrid でも書かせていただきましたが、 Node.js で ES Module / CommonJS を使ってコアライブラリのロードをする際、 node から始まる scheme を付けることが可能になっています。 nodejs.org // ESM import fs from "node:fs/promises"; // CJS const http = require("node:http"); これにはいくつかのメリットがあります。基本的につけておくことが望ましいです。 今回はメリットをいくつか紹介します。まだこれがデファクト・スタンダードになっている訳ではありませんが、これから付けてもらうように推奨していきたいと思います。 メリ

            Node.js コアモジュールの import/require には `node` schemeがつけられる - from scratch
          • Powerful Scheme interpreter in JavaScript | LIPS Scheme

            ;; &() is object literal used with quasiquote (let ((obj `&(:name "LIPS Scheme" :version ,lips.version))) ;; you can access JavaScript properties ;; with dot notation, print is display + newline (print (string-append obj.name " " obj.version)) ;; you can mix scheme and JavaScript (setTimeout (lambda () (alert (JSON.stringify obj))) 1000) #void) With LIPS you can mix Scheme and JavaScript. You can

              Powerful Scheme interpreter in JavaScript | LIPS Scheme
            • meta要素のname=color-schemeについて

              ダーク・モードへ適応するなら、フォーム関連要素の色も切り替えるよう、CSSを書くだろう。しかし、それだけでは、例えばテキストエリアで出てくるスクロールバーが明るいままなので、かなり浮いてしまう。meta要素でname=color-schemeを適切に設定すると、そういったスクロールバーの色も含めたあらゆるものの色を暗く(明るく)できる。 書き方は特に難しくない。ダーク・モードへ適応しようと、prefers-color-schemeメディア・クエリーを使って、明るい背景と暗い背景を切り替えるなら、以下のようにHTMLファイルのhead要素以下に書けばいい。viewportと似たようなものだ。 <meta name="color-scheme" content="light dark"> lightとdarkの順序は、逆でも意味は変わらない。これだけでユーザーのOSやブラウザーでのダーク・モー

                meta要素のname=color-schemeについて
              • Why I'm Writing a Scheme Implementation in 2025 (The Answer is Async Rust)

                Why I'm Writing a Scheme Implementation in 2025 (The Answer is Async Rust) by Matthew Plant This blog post is an introduction to scheme-rs. I really love Rust. I’ve been using it as my language of choice for about ten years now. I believe that it is a remarkably well designed language, and that includes the parts that are often most criticized, most notably async. But while I thing that async Rust

                • Design Scheme - Pepabo Design

                  ペパボデザインスキームとは ペパボのデザイナーがデザインする対象と、それらの構造を「ペパボデザインスキーム」図として定義しています。この図を活用し、誰の、どんな価値のために、何に対して、どんなデザインを行うのかを考え、実行しています。 具体的にデザインする対象は何か デザインは何を通して誰に届くのか デザインが人に届くと何が起こるのか

                    Design Scheme - Pepabo Design
                  • Scheme in the browser: A Hoot of a tale -- Spritely Institute

                    Scheme in the browser: A Hoot of a taleDave Thompson — October 10, 2023 Hey there, it’s been a while! We’re back to share some more exciting news about Guile Hoot, a WebAssembly toolchain and Scheme→WASM compiler. In our last post we demonstrated that the Guile Hoot toolchain can be used to assemble programs written in WebAssembly Text (WAT) format, which allowed us to develop for the WASM-4 fanta

                      Scheme in the browser: A Hoot of a tale -- Spritely Institute
                    • GitHub - mattwparas/steel: An embedded scheme interpreter in Rust

                      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. Dismiss alert

                        GitHub - mattwparas/steel: An embedded scheme interpreter in Rust
                      • GitHub - udem-dlteam/ribbit: A portable, compact and extensible Scheme implementation that is fully R4RS compliant. This includes closures, I/O, tail calls, first-class continuations and a Read Eval Print Loop (REPL). The R4RS Scheme REPL fits inside 6.5K

                        Currently, Ribbit has only been tested with Gambit v4.7.5, and may not work with other Scheme implementations. The Ribbit AOT compiler is written in Scheme and can be executed with Gambit v4.7.5. The compiler's source code is in a single file: src/rsc.scm. Ribbit currently compiles Scheme code to more than 15 different host languages. To select a language, use the -t compiler option followed by th

                          GitHub - udem-dlteam/ribbit: A portable, compact and extensible Scheme implementation that is fully R4RS compliant. This includes closures, I/O, tail calls, first-class continuations and a Read Eval Print Loop (REPL). The R4RS Scheme REPL fits inside 6.5K
                        • GitHub - jcubic/lips: Scheme based powerful lisp interpreter in JavaScript

                          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. Dismiss alert

                            GitHub - jcubic/lips: Scheme based powerful lisp interpreter in JavaScript
                          • A Scheme Primer

                            The following is a primer for the Scheme family of programming languages. It was originally written to aid newcomers to technology being developed at The Spritely Institute but is designed to be general enough to be readable by anyone who is interested in Scheme. This document is dual-licensed under Apache v2 and Creative Commons Attribution 4.0 International and its source is publicly available.

                            • 9,000 Covid cases linked to Euro 2020 games in mass events scheme

                              Such were the disparities in Covid infections between Euros crowds and those who attended Wimbledon, another test event, that government scientists have raised the idea of football fans being allowed to take drinks to their seats, as happens at the tennis championships, to avoid dense crowds gathering around bars. The study, jointly run by the culture department and Public Health England, found th

                                9,000 Covid cases linked to Euro 2020 games in mass events scheme
                              • Report: Spotify Targeted in Potential Fraud Scheme

                                We review vendors based on rigorous testing and research but also take into account your feedback and our affiliate commission with providers. Some providers are owned by our parent company. vpnMentor was established in 2014 to review VPN services and cover privacy-related stories. Today, our team of hundreds of cybersecurity researchers, writers, and editors continues to help readers fight for th

                                  Report: Spotify Targeted in Potential Fraud Scheme
                                • color-scheme: light dark; を完全に理解する

                                  2025-02-21 Browser and UI #1

                                    color-scheme: light dark; を完全に理解する
                                  • color-scheme - CSS: カスケーディングスタイルシート | MDN

                                    CSS チュートリアル CSS の基本 CSS の第一歩 CSS の第一歩の概要 CSS とは何か CSS 入門 CSS の全体像 CSS の働き 評価課題: 経歴ページのスタイル設定 CSS の構成要素 CSS の構成要素の概要 CSS セレクター Type, class, and ID selectors Attribute selectors Pseudo-classes and pseudo-elements Combinators カスケードと継承 Cascade layers ボックスモデル 背景と境界 書字方向の操作 内容のはみ出し CSS の値と単位 CSS における大きさの指定 画像、メディア、フォームの要素 表のスタイル付け CSS のデバッグ CSS の整理 評価課題: CSS の基本的な理解度 評価課題: 素敵なレターヘッドの便箋の作成 評価課題: かっこいいボック

                                      color-scheme - CSS: カスケーディングスタイルシート | MDN
                                    • Schemeによる第一不完全性定理の実装 - 未完成な論を綴るブログ

                                      『知の限界』という本を買ったら第一不完全性定理をLispで実装する方法が載っていた。しかし、そのコードはSchemeでは動かないように思えたので、Schemeで実装をしてみた。不完全性定理では、コード中の引数に自身のコード渡して、自己言及的なゲーデル文Gを構成して証明するのだが、S式はコードもただのデータなので、こういうことが出来るのかと感心した。本書では、第一不完全性定理以外にも、不動点や停止問題のLisp実装も示されており、それらはここで示すコードと本書を読めばSchemeで実装可能に思う。 ただし、本書は面白いが、第一不完全性定理の説明などはほとんどないため、そもそも第一不完全性定理を知らない場合は、理解するのは難しそうではある。 知の限界[復刻改装版] (00) 作者:グレゴリー・J・チャイティンエスアイビー・アクセスAmazon Schemeによる再実装 Schemeで再実装した

                                        Schemeによる第一不完全性定理の実装 - 未完成な論を綴るブログ
                                      • Gauche - A Scheme Implementation

                                        Gauche(ゴーシュ)は、スクリプトインタプリタとしての使い易さに重点を置いて 開発を行っているR7RS準拠のScheme処理系です。日常業務の中でのちょっとした処理を行う スクリプトを気軽にSchemeで書きたいなあ、という願望のもとに、 起動が速いこと、システムへのアクセスが組み込まれていること、 最初から多国語対応を考慮していること、 リスト処理ライブラリとして他のC/C++プログラムから簡単にリンク可能であること、 などを目標としています。 Gaucheは多くのUnix系プラットフォーム およびWindows上で動作します。 実装されている機能の概要については、 機能のページをご覧ください。 News 詳しい変更はChangeLogをどうぞ。 また、最新の開発状況はGitリポジトリで知ることができます。 2024/9/3 最新の開発版ソースから毎日作られる"bleeding-ed

                                        • 【時事英語】“CopenPay scheme”ってどういう意味? | ニュースの「キーワード」で語彙力を身につける

                                          最新のニュースに登場した時事英語を紹介するこのコーナーでは、世界のニュースに出てくるキーワードを学ぶと同時に、ビジネスの場や日常会話のなかでも役立つ単語やフレーズを取り上げていきます。1日1フレーズずつクイズ感覚で学び、英語に触れる習慣をつくっていきましょう。語彙力の向上には、日々の積み重ねが大事です。 今日の時事英語 2024年8月13日(火)の英「ガーディアン」紙に次の一文がありました。 The CopenPay scheme has been designed to encourage visitors to act a bit more responsibly and think about their impact on the environment during trips to the Danish capital.

                                            【時事英語】“CopenPay scheme”ってどういう意味? | ニュースの「キーワード」で語彙力を身につける
                                          • Embedding Scheme in Rust

                                            Embedding Scheme in Rust Rust, as a compiled language, makes it challenging to modify the behavior of programs dynamically. In this article, we embed a small Scheme interpreter called Stak Scheme in Rust to dynamically change the behavior of a program without stopping the process. You can find the following codes in this article at the examples/hot-reload directory in the Stak Scheme repository. T

                                            • Directly compiling Scheme to WebAssembly: lambdas, recursion, iteration! — Spritely Institute

                                              Become a Spritely supporter today!We're building the next generation of distributed web technology for secure collaboration and we need your help to fill up our health bar by February 5, 2025! Directly compiling Scheme to WebAssembly: lambdas, recursion, iteration!Christine Lemmer-Webber — May 30, 2023 It's been just over three months since we announced the Guile on WebAssembly project (codenamed

                                                Directly compiling Scheme to WebAssembly: lambdas, recursion, iteration! — Spritely Institute
                                              • How WASD became the standard PC control scheme

                                                Image via defunct gaming site Freakygaming. WASD feels inevitable today. Once mouselook became standard in 3D games, it made little sense (at least for right-handed players) to hold your left arm across your chest to reach the arrow keys. The WASD keys were more comfortable, and offered easy access to Shift and Space. But even though WASD seems like the obvious choice now, far fewer players used i

                                                  How WASD became the standard PC control scheme
                                                • Cirkoban: Sokoban meets cellular automata written in Scheme — Spritely Institute

                                                  Last week, we released a small puzzle game called Cirkoban. Cirkoban is the very first publicly accessible application developed by Spritely that features the Goblins distributed programming library running in web browsers. We bet big on Hoot, our Scheme-to-WebAssembly compiler, a little over a year ago in order to bring Goblins to the web. That bet is starting to pay off! In this post, we’ll talk

                                                    Cirkoban: Sokoban meets cellular automata written in Scheme — Spritely Institute
                                                  • GitHub - Himenon/openapi-typescript-code-generator: TypeScript code generator via OpenAPI scheme.

                                                    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. Dismiss alert

                                                      GitHub - Himenon/openapi-typescript-code-generator: TypeScript code generator via OpenAPI scheme.
                                                    • Scheme in Scheme on Wasm in the browser — Spritely Institute

                                                      Become a Spritely supporter today!We're building the next generation of distributed web technology for secure collaboration and we need your help to fill up our health bar by February 5, 2025! Scheme in Scheme on Wasm in the browserDave Thompson — December 15, 2023 Hey, folks! Today we want to talk about the wonderful read-eval-print-loop (REPL). Thanks to WebAssembly (Wasm), it's becoming increas

                                                        Scheme in Scheme on Wasm in the browser — Spritely Institute
                                                      • Common Lisp ユーザへのScheme紹介

                                                        Talked at CEDEC 2018, 2018/08/22 - https://2018.cedec.cesa.or.jp/session/detail/s5b559852a6405

                                                          Common Lisp ユーザへのScheme紹介
                                                        • Scheme to the Spec Part I: Concurrent Cycle Collection

                                                          by Matthew Plant Scheme to the Spec (in Async Rust) Scheme to the Spec is a series on the more complex, often overlooked aspects of programming language implementation. In this series we will dive deep into my work-in-progress implementation of R6RS scheme, scheme-rs, an implementation designed to integrate seamlessly with the async-rust ecosystem. Our first article discusses how to implement Garb

                                                          • TypeScriptで型レベルScheme

                                                            TypeScriptの型システムでSchemeインタプリタを作りました。 リポジトリ Playground できること 趣味のために作ったので実用性は全く考えていませんが、type-challengesをいくつか解くくらいはできます。 Reverse(難易度:Medium) import type { Scheme } from "ts-type-level-scheme"; type Reverse<array extends unknown[]> = [ "begin", [ "define", ["reverse", "rest", "result"], [ "if", ["null?", "rest"], "result", ["reverse", ["cdr", "rest"], ["cons", ["car", "rest"], "result"]] ] ], ["revers

                                                              TypeScriptで型レベルScheme
                                                            • yescrypt - scalable KDF and password hashing scheme

                                                              Password authentication for web and mobile apps (e-book) yescrypt - scalable KDF and password hashing scheme yescrypt is a password-based key derivation function (KDF) and password hashing scheme. It builds upon Colin Percival's scrypt. This implementation is able to compute native yescrypt hashes as well as classic scrypt. For a related proof-of-work (PoW) scheme, see yespower instead. Download t

                                                              • プログラミング言語 Scheme の解説

                                                                 プログラミング言語 Scheme の解説 規格 プログラミング言語 Scheme の規格は Revisedn Report on Algorithmic Language Scheme と呼ばれる文書で提供されている。 略して RnRS と記述されることが多い。 n の箇所は版の番号が入り、例えば現時点の最新版であれば R7RS ということになる。 その他、公式な規格とは別に SRFI や ERR5RS がある。 これから入門する人にとっては最新規格である R7RS を参考にすればよさそうに思えるが、現実的なプログラミングにはやや機能が不足すると考えられる。 一方で、大き目な規格であった R6RS は主要な Scheme 処理系作者が賛成しなかった経緯があるなどしてあまり歓迎されていない様子がうかがえる。 また、 SRFI が各規格と矛盾する場合などもあり、単純ではない。 一部の処理系

                                                                  プログラミング言語 Scheme の解説
                                                                • GitHub - WICG/web-preferences-api: The Web Preference API aims to provide a way for sites to override the value for a given user preference (e.g. color-scheme preference) in a way that fully integrates with existing Web APIs.

                                                                  Currently, website authors have a choice when wishing to honour a user's preference for a given setting: They can choose to "use the platform" where the user must indicate their preference via their OS or, if lucky, they can override in the browser. This comes with a number of issues: Relies on the user's OS or browser offering the ability to change the setting Relies on the user knowing how to ch

                                                                    GitHub - WICG/web-preferences-api: The Web Preference API aims to provide a way for sites to override the value for a given user preference (e.g. color-scheme preference) in a way that fully integrates with existing Web APIs.
                                                                  • Hoot: Scheme on WebAssembly — Spritely Institute

                                                                    Hoot is a Spritely project for running Scheme code on Wasm GC-capable web browsers, featuring a Scheme to Wasm compiler and a full-featured Wasm toolchain. Hoot is built on Guile and has no additional dependencies. The toolchain is self-contained and even features a Wasm interpreter for testing Hoot binaries without leaving the Guile REPL. Try Hoot! Get Hoot! The latest release is v0.6.0. (signatu

                                                                      Hoot: Scheme on WebAssembly — Spritely Institute
                                                                    • New GNOME versioning scheme

                                                                      Hi all; after various off-line/in person talks, last year I started a discussion on Discourse about the existing version scheme of GNOME. This topic was also raised in July, and discussed at the release team meeting during GUADEC. Now that the GNOME 3.37 development cycle is over, and 3.38 is out of the door, it’s time to draw this issue to its conclusion. In the interest of clarity, I’ll present

                                                                        New GNOME versioning scheme
                                                                      • 色々な言語でrange関数的な処理の書き方[Python,C++,D,C#,JS,VB,HSP,Lisp,Scheme,Clojure] - Qiita

                                                                        Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

                                                                          色々な言語でrange関数的な処理の書き方[Python,C++,D,C#,JS,VB,HSP,Lisp,Scheme,Clojure] - Qiita
                                                                        • URI scheme - Wikipedia, the free encyclopedia

                                                                          This article lists common URI schemes. A Uniform Resource Identifier helps identify a source without ambiguity. Many URI schemes are registered with the IANA; however, there exist many unofficial URI schemes as well. Mobile deep links are one example of a class of unofficial URI schemes that allow for linking directly to a specific location in a mobile app. URI schemes registered with the IANA, bo

                                                                          • LIPS: Scheme based Lisp interpreter in JavaScript | Hacker News

                                                                            Looks great, however note that it doesn't do tail calls, which are required on conforming implementations. I suspect it does tail calls on Safari as Safari is the ONLY browser to completely implement ES6+ and implement proper tail calls (I'd note that it's not the only ES6+ compliant implementation, but most of the rest are aimed at microcontrollers or embedding). Huh, that in turn means that - se

                                                                            1

                                                                            新着記事