並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 107件

新着順 人気順

queriesの検索結果1 - 40 件 / 107件

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

queriesに関するエントリは107件あります。 cssdatabaseweb などが関連タグです。 人気エントリには 『CSS の Container Queries おためし - 見返すかもしれないメモ』などがあります。
  • CSS の Container Queries おためし - 見返すかもしれないメモ

    CSS に、コンテナクエリという機能があるらしい。 メディアクエリでは画面全体の大きさに応じて要素のスタイルを変えることができたけど、コンテナクエリを使うと当該要素の親の大きさに応じてスタイルを変えられる。 /* メディアクエリの例 */ /* 画面幅が 400px 以下だったら、div を赤くする */ @media screen and (max-width: 400px) { div { background-color: red; } } /* コンテナクエリの例 */ /* div の親要素の幅が 400px 以下だったら、div を赤くする */ @container (max-width: 400px) { div { background-color: red; } } その機能が Google Chrome Canary で使えるようにされたと聞いたので、使ってみた。 こ

      CSS の Container Queries おためし - 見返すかもしれないメモ
    • Announcing TypedSQL: Make your raw SQL queries type-safe with Prisma ORM

      Generate query functions by using the --sql flag on prisma generate: Import the query function from @prisma/client/sql … … and call it inside the new $queryRawTyped function to get fully typed results 😎 If your SQL query has arguments, they are provided to the query function passed to $queryRawTyped The Prisma Client API together with TypedSQL provides the best experience for both CRUD operations

        Announcing TypedSQL: Make your raw SQL queries type-safe with Prisma ORM
      • Protecting GraphQL APIs from malicious queries

        Starting today, Cloudflare’s API Gateway can protect GraphQL APIs against malicious requests that may cause a denial of service to the origin. In particular, API Gateway will now protect against two of the most common GraphQL abuse vectors: deeply nested queries and queries that request more information than they should. Typical RESTful HTTP APIs contain tens or hundreds of endpoints. GraphQL APIs

          Protecting GraphQL APIs from malicious queries
        • GitHub - multiprocessio/dsq: Commandline tool for running SQL queries against JSON, CSV, Excel, Parquet, and more.

          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 - multiprocessio/dsq: Commandline tool for running SQL queries against JSON, CSV, Excel, Parquet, and more.
          • GitHub - questdb/questdb: An open source time-series database for fast ingest and SQL queries

            QuestDB is an open-source time-series database for high throughput ingestion and fast SQL queries with operational simplicity. QuestDB is well-suited for financial market data, IoT sensor data, ad-tech and real-time dashboards. It shines for datasets with high cardinality and is a drop-in replacement for InfluxDB via support for the InfluxDB Line Protocol. QuestDB implements ANSI SQL with native t

              GitHub - questdb/questdb: An open source time-series database for fast ingest and SQL queries
            • Container Queriesという手法 / CSS Advent Calendar 2019 - kojika17

              この記事は CSS Advent Calendar 2019 - Qiita 23日目の記事です。 Container Queriesを知っていますか? Media Queriesに依存せず、コンテンツにあわせてレイアウトを変化させるを手法です。 Container Queriesとは レスポンシブwebデザインを行う時、みなさんはMedia Queriesを使用していると思います。 ブレークポイントにあわせて、画面ごとにコーディングを進めていくのが一般的な方法でしょう。 その方法は本当に正しいのでしょうか? Atomic Designやデザインシステムといった考え方が浸透してきて、UIなどをコンポーネントとして扱う場合も増えてきました。 しかし、コンポーネントとMedia Queriesは切り離せない関係です。ページの画面サイズに依存し、レイアウトを構築するする場合は、コンポーネントに何

                Container Queriesという手法 / CSS Advent Calendar 2019 - kojika17
              • BulletmarkRepairer: auto corrector for N+1 queries

                Rails アプリの
5,000 件の N+1 問題と
戦っている話 2023.10.27. Kaigi on Rails 2023

                  BulletmarkRepairer: auto corrector for N+1 queries
                • Working with JavaScript Media Queries | CSS-Tricks

                  What’s the first thing that comes to mind when you think of media queries? Maybe something in a CSS file that looks like this: body { background-color: plum; } @media (min-width: 768px) { body { background-color: tomato; } } CSS media queries are a core ingredient in any responsive design. They’re a great way to apply different styles to different contexts, whether it’s based on viewport size, mot

                    Working with JavaScript Media Queries | CSS-Tricks
                  • GitHub - adaptive-scale/dbchaos: Stress-test your database with pre-defined queries. Generate synthetic data and events statically or with GPT.

                    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 - adaptive-scale/dbchaos: Stress-test your database with pre-defined queries. Generate synthetic data and events statically or with GPT.
                    • Container Queriesの沼へようこそ - kojika17

                      2023年2月13日にFirefoxでCSS Container Queriesが実装されたため、一部の機能がすべてのブラウザ使用できるようになりました。 さらに記事公開の本日、Google Chorome 111で、新しいContainer Queriesも実装されました。 私も待ち望んでいた機能なので、どう使うのか? どういう問題点があるのか? 解説していきます。 Container Queriesとは? Container Queriesは、コンテンツにあわせてレイアウトを変化させる技術です。 例えば、写真付きのカードがあり、大きい画面では写真と説明が横に並ぶようなデザインがあったとします。 このような見た目の変化を従来のCSSではMedia Queriesを使用するしかなく、ブレイクポイントやクラスを付与して指定して変化させるしかありませんでした。 最初にこの問題に触れたのは no

                        Container Queriesの沼へようこそ - kojika17
                      • SQL queries don't start with SELECT

                        Okay, obviously many SQL queries do start with SELECT (and actually this post is only about SELECT queries, not INSERTs or anything). But! Yesterday I was working on an explanation of window functions, and I found myself googling “can you filter based on the result of a window function”. As in – can you filter the result of a window function in a WHERE or HAVING or something? Eventually I conclude

                        • GitHub - readysettech/readyset: Readyset is a MySQL and Postgres wire-compatible caching layer that sits in front of existing databases to speed up queries and horizontally scale read throughput. Under the hood, ReadySet caches the results of cached selec

                          ReadySet is a transparent database cache for Postgres & MySQL that gives you the performance and scalability of an in-memory key-value store without requiring that you rewrite your app or manually handle cache invalidation. ReadySet sits between your application and database and turns even the most complex SQL reads into lightning-fast lookups. Unlike other caching solutions, it keeps cached query

                            GitHub - readysettech/readyset: Readyset is a MySQL and Postgres wire-compatible caching layer that sits in front of existing databases to speed up queries and horizontally scale read throughput. Under the hood, ReadySet caches the results of cached selec
                          • GitHub - ClickHouse/NoiSQL: NoiSQL — Generating Music With SQL Queries

                            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 - ClickHouse/NoiSQL: NoiSQL — Generating Music With SQL Queries
                            • XTDB - the open database with temporal graph queries

                              Immutable Records XTDB contains a perfect, immutable record of every fact your system has ever known. See the entire history of your business, everywhere. Learn More Temporal Query Immutable records are incomplete without time-traveling queries. XTDB allows you to query the entire timeline. Make retroactive corrections, simplify data migrations, and get clarity on out-of-order events. Learn More R

                                XTDB - the open database with temporal graph queries
                              • Rails 7.1: Dockerfiles, BYO Authentication, More Async Queries, and more!

                                Rails 7.1: Dockerfiles, BYO Authentication, More Async Queries, and more! Rails World just started and we are getting together with the community in person to celebrate of the 20th anniversary of Rails and the release of Rails 7.1. In this release there has been over five thousand commits made by over 800 contributors since Rails 7.0, so it is packed with new features and improvements. Dockerfiles

                                  Rails 7.1: Dockerfiles, BYO Authentication, More Async Queries, and more!
                                • Cloud Firestore Now Supports IN Queries!

                                  Hello, Cloud Firestore developers! We wanted to let you know about some useful new querying features we’ve added to Cloud Firestore this week. Starting with… in queries! With the in query, you can query a specific field for multiple values (up to 10) in a single query. You do this by passing a list containing all the values you want to search for, and Cloud Firestore will match any document whose

                                    Cloud Firestore Now Supports IN Queries!
                                  • Write queries with Gemini assistance  |  BigQuery  |  Google Cloud

                                    Send feedback Stay organized with collections Save and categorize content based on your preferences. Write queries with Gemini assistance You can use Gemini for Google Cloud, which offers AI-powered assistance, to help you query your data with SQL queries and Python code. Gemini in BigQuery can generate queries, complete code while you type, and explain queries. Gemini for Google Cloud doesn't use

                                      Write queries with Gemini assistance  |  BigQuery  |  Google Cloud
                                    • Introducing sqlc - Compile SQL queries to type-safe Go

                                      Ask any Go developer and they will tell you how painful it is to write programs that talk to SQL databases. Go feels like it isn't even half as productive compared to working with toolkits like SQLAlchemy, Diesel, Hibernate or ActiveRecord. The existing tools in the Go ecosystem force application developers to hand-write mapping functions or litter their code with unsafe empty interfaces. Introduc

                                      • Container queries land in stable browsers  |  Blog  |  web.dev

                                        Container queries land in stable browsers Stay organized with collections Save and categorize content based on your preferences. This Valentine's day, we're celebrating size container queries and container query units landing in all stable browsers. Container query love is in the air! This Valentine’s day, size container queries and container query units are stable in all modern browsers. With con

                                          Container queries land in stable browsers  |  Blog  |  web.dev
                                        • Japan minister queries women's worth without birth in election speech

                                          Japan minister queries women's worth without birth in election speech Foreign Minister Yoko Kamikawa on Saturday asked central Japan constituents how "we women can call ourselves women without giving birth," equating the importance of childbirth to electing a new governor in a speech ahead of a gubernatorial election. Kamikawa made the remarks during a visit to her native Shizuoka Prefecture in an

                                            Japan minister queries women's worth without birth in election speech
                                          • Rails 7.1 Beta 1: Dockerfiles, BYO Authentication, More Async Queries, and more!

                                            Rails 7.1 Beta 1: Dockerfiles, BYO Authentication, More Async Queries, and more! Rails World is fast approaching and we’re gearing up to celebrate the 20th anniversary of Rails in style with the first beta release of Rails 7.1! There has been over five thousand commits made by over 800 contributors since Rails 7.0, so this release is packed with new features and improvements. Please help us test a

                                              Rails 7.1 Beta 1: Dockerfiles, BYO Authentication, More Async Queries, and more!
                                            • Git's database internals II: commit history queries

                                              Avoiding the expensive commit parsing results in a nice constant factor speedup (about 6x in these examples), but we need something more to get even better performance out of certain queries. Reachability indexes One of the most important questions we ask about commits is “can commit A reach commit B?” If we can answer that question quickly, then commands such as git tag --contains and git branch

                                                Git's database internals II: commit history queries
                                              • About Queries | Testing Library

                                                Overview​Queries are the methods that Testing Library gives you to find elements on the page. There are several types of queries ("get", "find", "query"); the difference between them is whether the query will throw an error if no element is found or if it will return a Promise and retry. Depending on what page content you are selecting, different queries may be more or less appropriate. See the pr

                                                  About Queries | Testing Library
                                                • Why Are Queries with Many IN Values More Expensive After Upgrading to MySQL 8.x?

                                                  All of Percona’s open-source software products, in one place, to download as much or as little as you need.

                                                    Why Are Queries with Many IN Values More Expensive After Upgrading to MySQL 8.x?
                                                  • Beyond Media Queries: Using Newer HTML & CSS Features for Responsive Designs | CSS-Tricks

                                                    Beyond Media Queries: Using Newer HTML & CSS Features for Responsive Designs Beyond using media queries and modern CSS layouts, like flexbox and grid, to create responsive websites, there are certain overlooked things we can do well to make responsive sites. In this article, we’ll dig into a number tools (revolving around HTML and CSS) we have at the ready, from responsive images to relatively new

                                                      Beyond Media Queries: Using Newer HTML & CSS Features for Responsive Designs | CSS-Tricks
                                                    • 完全体となったContainer Queriesの所感の雑記 - Qiita

                                                      Chrome 111 betaでついに、Style Container Queriesが対応されました。 Chrome 111 beta - Chrome Developers 今まではサイズのみ対応で、Container Queriesとして使い物になりませんでした。 しかし今回のベータ版のアップデートで style() 関数の対応しています。 前々からContainer Queriesは、CSS設計を変革させる機能だと思って非常に楽しみにしていました。ベータ版とはいえ、嬉しく思います。 追記: 2023年2月18日 まだ style(color: #000) 的な書き方は実装されていないので、完全体ではありませんでした。 Container Queriesで考えていたこと Media Queries 「Media QueriesでCustom Propertiesを使いたい」というのを

                                                        完全体となったContainer Queriesの所感の雑記 - Qiita
                                                      • How to use container queries now  |  Blog  |  web.dev

                                                        How to use container queries now Stay organized with collections Save and categorize content based on your preferences. Recently, Chris Coyier wrote a blog post posing the question: Now that container queries are supported in all browser engines, why aren't more developers using them? Chris's post lists a number of potential reasons (for example, lack of awareness, old habits die hard), but there'

                                                          How to use container queries now  |  Blog  |  web.dev
                                                        • AQUA (Advanced Query Accelerator) – A Speed Boost for Your Amazon Redshift Queries | Amazon Web Services

                                                          AWS News Blog AQUA (Advanced Query Accelerator) – A Speed Boost for Your Amazon Redshift Queries Amazon Redshift already provides up to 3x better price-performance at any scale than any other cloud data warehouse. We do this by designing our own hardware and by using Machine Learning (ML). For example, we launched the SSD-based RA3 nodes for Amazon Redshift at the end of 2019 (Amazon Redshift Upda

                                                            AQUA (Advanced Query Accelerator) – A Speed Boost for Your Amazon Redshift Queries | Amazon Web Services
                                                          • Say Hello To CSS Container Queries

                                                            I haven’t been more excited for a CSS feature like I’m now in the past six years I spent as a front-end developer. The prototype of container queries is now available behind a flag in Chrome Canary. Thanks to efforts from smart people like Miriam Suzanne and other folks. I remember seeing a lot of jokes about the support for CSS container queries, but they are finally there. In this article, I wil

                                                              Say Hello To CSS Container Queries
                                                            • GitHub - samdenty/gqless: a GraphQL client without queries

                                                              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 - samdenty/gqless: a GraphQL client without queries
                                                              • GitHub - charkost/prosopite: :mag: Rails N+1 queries auto-detection with zero false positives / false negatives

                                                                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 - charkost/prosopite: :mag: Rails N+1 queries auto-detection with zero false positives / false negatives
                                                                • GitHub - GoogleChromeLabs/container-query-polyfill: A polyfill for CSS Container Queries

                                                                  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 - GoogleChromeLabs/container-query-polyfill: A polyfill for CSS Container Queries
                                                                  • Logica: organizing your data queries, making them universally reusable and fun

                                                                    The latest news from Google on open source releases, major projects, events, and student outreach programs. Logica: organizing your data queries, making them universally reusable and fun We present Logica, a novel open source Logic Programming language. A successor to Yedalog (a language developed at Google earlier) it is a Datalog-like logic programming language. Logica code compiles to SQL and r

                                                                      Logica: organizing your data queries, making them universally reusable and fun
                                                                    • GitHub - jvns/dnspeep: spy on the DNS queries your computer is making

                                                                      $ sudo dnspeep query name server IP response A incoming.telemetry.mozilla.org 192.168.1.1 CNAME: telemetry-incoming.r53-2.services.mozilla.com, CNAME: pipeline-incoming-prod-elb-149169523.us-west-2.elb.amazonaws.com, A: 52.39.144.189, A: 54.191.136.131, A: 34.215.151.143, A: 54.149.208.57, A: 44.226.235.191, A: 52.10.174.113, A: 35.160.138.173, A: 44.238.190.78 AAAA incoming.telemetry.mozilla.org

                                                                        GitHub - jvns/dnspeep: spy on the DNS queries your computer is making
                                                                      • CSS Style Queries

                                                                        For me, 2022 is the best year ever for CSS. We got a lot of new stuff supported in stable browsers and it’s just like living a dream. From CSS subgrid, :has selector, container queries, and the new viewport units. So many things to grasp, I understand - but I’m sure we agree that this is exciting, isn’t it? Recently, the Chrome team released experimental support for a new proposed CSS spec, style

                                                                          CSS Style Queries
                                                                        • The complete guide to CSS media queries | Polypane

                                                                          Media queries are what make modern responsive design possible. With them you can set different styling based on things like a users screen size, device capabilities or user preferences. But how do they work, which ones are there and which ones should you use? Here's the complete guide to media queries. What this guide will go through: What are media queries?How a media query is structuredMedia typ

                                                                            The complete guide to CSS media queries | Polypane
                                                                          • Getting started with CSS container queries | MDN Blog

                                                                            As of this year, container queries are supported in all major browsers. But what are they, and how can we use them to build more robust, flexible layouts? Do we still need media queries? Let's find out. To understand how container queries are helpful, let's look at an example news feed layout and see where we could apply them. The news feed is a collection of articles, each with an image, a headli

                                                                              Getting started with CSS container queries | MDN Blog
                                                                            • Log your VPC DNS queries with Route 53 Resolver Query Logs | Amazon Web Services

                                                                              AWS News Blog Log your VPC DNS queries with Route 53 Resolver Query Logs The Amazon Route 53 team has just launched a new feature called Route 53 Resolver Query Logs, which will let you log all DNS queries made by resources within your Amazon Virtual Private Cloud (Amazon VPC). Whether it’s an Amazon Elastic Compute Cloud (Amazon EC2) instance, an AWS Lambda function, or a container, if it lives i

                                                                                Log your VPC DNS queries with Route 53 Resolver Query Logs | Amazon Web Services
                                                                              • GitHub - AmrDeveloper/GQL: Git Query language is a SQL like language to perform queries on .git files with supports of most of SQL features such as grouping, ordering and aggregations functions

                                                                                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 - AmrDeveloper/GQL: Git Query language is a SQL like language to perform queries on .git files with supports of most of SQL features such as grouping, ordering and aggregations functions
                                                                                • Enabling static analysis of SQL queries at Meta

                                                                                  UPM is our internal standalone library to perform static analysis of SQL code and enhance SQL authoring. UPM takes SQL code as input and represents it as a data structure called a semantic tree. Infrastructure teams at Meta leverage UPM to build SQL linters, catch user mistakes in SQL code, and perform data lineage analysis at scale. Executing SQL queries against our data warehouse is important to

                                                                                    Enabling static analysis of SQL queries at Meta

                                                                                  新着記事