並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 38 件 / 38件

新着順 人気順

Enginesの検索結果1 - 38 件 / 38件

  • GoogleやBingの検索結果にChatGPTを表示させる拡張機能「ChatGPT for Search Engines」

    OpenAIのChatGPTは高度な自然言語処理モデルを利用した対話型AIで、文章を入力するとまるで人間が書いたような自然な文章を返してくれます。これまでの検索エンジンでは検索クエリに複数の単語を入力する必要がありましたが、このChatGPTを応用すれば、調べたいことを直接文章で入力することでより適切な検索結果を示す次世代の検索エンジンが可能になると期待されています。そんなChatGPTの回答を実際にGoogleやBingなどの検索結果に表示させる拡張機能「ChatGPT for Search Engines」が、Chrome・Firefox・Edge向けにリリースされています。 ChatGPT for Search Engines https://chatonai.org/ ChatGPT for Search Enginesを利用するには、あらかじめChatGPTにアカウントを作成して

      GoogleやBingの検索結果にChatGPTを表示させる拡張機能「ChatGPT for Search Engines」
    • A small state-of-the-art study on custom engines

      custom_game_engines_small_study.md CUSTOM GAME ENGINES: A Small Study A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a

        A small state-of-the-art study on custom engines
      • №1,516 洋画セレクション “ 移動都市/モータル・エンジン Mortal Engines ” - 糸屯 ち ゃ ん の エ ン タ メ 通 信

        ⏱この記事は、約4分で読めます は じ め に ご  挨  拶 本   編 移動都市/モータル・エンジン Mortal Engines 概  要 キャスト スタッフ お わ り に 糸屯ちゃんのおまけ 糸屯ちゃんの掲示板 主催サークル は じ め に ご  挨  拶 おはようございます ☕ _ _))ペコリンン  白石です 本日のテーマも、怒涛の 洋画セレクション です おはようございます ☕ _ _))ペコリン  真行寺です それでは、わたくしの方からお送りさせていただきます 洋画セレクション のご紹介をします 移動都市/モータル・エンジン Mortal Engines です! 『移動都市/モータル・エンジン』(Mortal Engines)は、2018年のニュージーランド・アメリカ合衆国のSFアクション冒険映画です 監督はクリスチャン・リヴァース、出演はヒューゴ・ウィーヴィング、ヘ

          №1,516 洋画セレクション “ 移動都市/モータル・エンジン Mortal Engines ” - 糸屯 ち ゃ ん の エ ン タ メ 通 信
        • 確定申告に向けて仮想通貨の税金計算ツール4社を比べてみた | RE:ENGINES

          はじめに 最近、仮想通貨(暗号資産)の取引を始めてみたので、それにあたって確定申告に向けて仮想通貨の税金計算ツールを利用してみようと思いました。 そこで今回は、いくつかある仮想通貨の税金計算ツールのどれを使うのがもっとも適しているか、その特徴やサービス内容を比較してみます。 仮想通貨の税金計算ツールとは まず最初に、仮想通貨の税金計算ツールとは何か説明します。 仮想通貨の税金計算ツールは、損益計算ツールや収支計算ツールといった呼び方もされますが、簡単にいうと取引所の取引履歴やウォレットのトランザクションから仮想通貨の損益を計算してくれる支援ツールのことです。 仮想通貨取引は法定通貨を使った売買取引程度であれば自分で管理して計算することも難しくはありません。 ですが、仮想通貨同士の交換やステーキングなどといった仮想通貨特有の取引では、取引形態によって計算方法が異なるため損益計算が煩雑になりが

            確定申告に向けて仮想通貨の税金計算ツール4社を比べてみた | RE:ENGINES
          • Object Structure in JavaScript Engines

            Object Structure in JavaScript EnginesFrom a developer's perspective, objects in JavaScript are quite flexible and understandable. We can add, remove, and modify object properties on our own. However, few people think about how objects are stored in memory and processed by JS engines. Can a developer's actions, directly or indirectly, impact performance and memory consumption? Let's try to delve i

              Object Structure in JavaScript Engines
            • The Importance of Morphological Analysis in Japanese Search Engines

              The Importance of Morphological Analysis in Japanese Search Engines

                The Importance of Morphological Analysis in Japanese Search Engines
              • What's the difference between JavaScript engines and JavaScript runtimes? - Human Who Codes

                You have probably heard the terms “JavaScript engine” and “JavaScript runtime” used interchangeably to mean “a program that runs JavaScript.” These are often intermixed by referencing V8, Node.js, or some other combination of related programs. However, there is a significant difference between a JavaScript engine and a JavaScript runtime in terms of scope and functionality. Understanding this diff

                • package.jsonに"engines"を設定すると「このバージョンのNode.jsでしか動かない」を表明できる - Qiita

                  特定のバージョンのNode.jsでしか動かしてほしくないパッケージがある場合、package.jsonのenginesフィールドに、Node.jsのバージョンを明記しておくと、yarn installやnpm installしたときに警告を表示できるようになる。 実行環境のバージョンを固定したいときに便利。 例: Node.js 12だけに限定したい場合 例えば、Node.js 12で実行してほしい場合、次のようにenginesフィールドをpackage.jsonに追加する: { "name": "my-module", "version": "1.0.0", "main": "index.js", "license": "MIT", "engines": { "node": "12.x" } } この設定で、Node.js 13環境下でyarn installすると、エラーを起こすことが

                    package.jsonに"engines"を設定すると「このバージョンのNode.jsでしか動かない」を表明できる - Qiita
                  • GitHub - hunkimForks/chatgpt-arxiv-extension: A browser extension that enhance search engines with ChatGPT

                    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 - hunkimForks/chatgpt-arxiv-extension: A browser extension that enhance search engines with ChatGPT
                    • GitHub - meirwah/awesome-workflow-engines: A curated list of awesome open source workflow engines

                      Activepieces - Open source no-code business automation, alternative to Zapier Airflow - Python-based platform for running directed acyclic graphs (DAGs) of tasks Argo Workflows - Open source container-native workflow engine for getting work done on Kubernetes Arvados - Open Source data and workflow management platform with emphasis on reproducibily, scale, and secure data sharing, deployable on cl

                        GitHub - meirwah/awesome-workflow-engines: A curated list of awesome open source workflow engines
                      • Using alternative browser engines in the European Union - Support - Apple Developer

                        Using alternative browser engines in the European Union iOS 17.4 and later, include capabilities that let iOS apps use alternative browser engines — browser engines other than WebKit — for dedicated browser apps and apps providing in-app browsing experiences in the EU. To use an alternative browser engine in your app, you’ll need to request the Web Browser Engine Entitlement (for browser apps that

                        • History of Web Browser Engines from 1990 until today

                          Many tried, few remain... Last updated: July 2024 The loss of browser diversity since the rise of Chromium has been greatly lamented. Below you can find a graph that shows the historical and present browser engines (not browsers, but the HTML rendering engines), as well as from when to when they were developed. For the bigger engines, the market share is indicated by a coloured shape (see legend).

                          • 【Laravel】認証を自作して学ぶguardとmiddleware | RE:ENGINES

                            はじめに Laravelでの独自の認証処理の実装を通して、認証関連のmiddlewareやguardについてまとめました。 認証処理の仕様 今回、実装する簡易な認証処理の仕様は、以下の通りです。APIでの使用を想定しています。 ヘッダーのAuthenticationに設定したBearerトークンの値が、予め決めた文字列と一致すること ヘッダーのuuid設定した値が、予めDBに登録してあるユーザのUUIDと一致すること 独自の認証処理の実装 独自の認証処理では、以下の項目を実装します。順番に内容を見ていきます。 Model UserProvider Guard Middleware Handlerとその他の設定 Modelの実装 認証処理に使うモデルは Illuminate\Foundation\Auth\User を継承している必要があります。今回実装する認証処理の仕様では、 getAut

                              【Laravel】認証を自作して学ぶguardとmiddleware | RE:ENGINES
                            • Exposure to vibrations, like those generated by high-powered motorcycle engines, might impact iPhone cameras - Apple Support

                              Exposure to vibrations, like those generated by high-powered motorcycle engines, might impact iPhone cameras Exposing your iPhone to high amplitude vibrations within certain frequency ranges, specifically those generated by high-power motorcycle engines, can degrade the performance of the camera system. The iPhone camera helps you take great photos in any situation—from everyday moments to studio-

                              • Crawlers, search engines and the sleaze of generative AI companies

                                Search Engine Land » SEO » Crawlers, search engines and the sleaze of generative AI companies Crawlers, search engines and the sleaze of generative AI companies AI companies see the openness of the web as permitting large-scale crawling to obtain training data. So what should publishers do? The boom of generative AI products over the past few months has prompted many websites to take countermeasur

                                  Crawlers, search engines and the sleaze of generative AI companies
                                • Inside JavaScript Engines, Part 1: Parsing

                                  Part 2 is here: Code generation and basic optimizations JavaScript is getting very popular now. “Write once, run everywhere” — it’s about JavaScript (not only Java)! But what is behind this “Run everywhere”? V8, SpiderMonkey, JavaScript core, and more and more engines. A good example of “Run everywhere” was Nashorn and Rhino, but have you ever heard about these engines, based on Java Virtual Machi

                                    Inside JavaScript Engines, Part 1: Parsing
                                  • IndexNow - Instantly Index your web content in Search Engines

                                    This is a place devoted to giving you deeper insight into the news, trends, people and technology behind Bing. Ensuring timely information is available for searchers is critical. Yet historically one of the biggest pain points for website owners has been to have search engines quickly discover and consider their latest website changes. It can take days or even weeks for new URLs to be discovered a

                                      IndexNow - Instantly Index your web content in Search Engines
                                    • laravel-enumを使ってみたら快適だった | RE:ENGINES

                                      はじめに こんにちは。Laravelでenumを使いたい時、PHPやLaravel本体ではサポートされていないのでComposer経由でパッケージを入れることになります。 今は bensampo/laravel-enum を使っており、とりあえず不自由ない感じなので、紹介しようと思います。 enumについて 列挙型 – Wikipedia railsで初めてenumを知ったのですが、C言語の時点で既にあったのですね。 私は「限られた値しか持てないデータ型」と認識してます。 例えば注文情報テーブルに支払方法を保存する時、データベースの orders テーブルに payment_type カラムを持たせるとします。 card, transfer, cash など支払方法名だけが orders.payment_type に入るようにしつつ、表示時は「クレジットカード」や「銀行振込」といった文字列

                                        laravel-enumを使ってみたら快適だった | RE:ENGINES
                                      • package.jsonの中にenginesの定義によってnodeバージョンを提示

                                        ReactやWebpackのプロジェクトを起動する時 nodeバージョンが合わないときによくエラーになってしまうことがあります そして、正確なnodeバージョンはReadmeに記録したことがなかったらすごい災難になることもあります そこで、package.jsonというファイルの中で、enginesという項目の定義によって nodeバージョンを明晰に定義することができます 記載例は以下のようになります

                                          package.jsonの中にenginesの定義によってnodeバージョンを提示
                                        • GitHub - megadose/OnionSearch: OnionSearch is a script that scrapes urls on different .onion search engines.

                                          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 - megadose/OnionSearch: OnionSearch is a script that scrapes urls on different .onion search engines.
                                          • 6 Ways AI-Powered Search Engines Will Change the Internet Forever

                                            Ever since ChatGPT became viral, the tech industry has been obsessed with the idea of AI chatbots and how they'll influence us. In fact, Microsoft now integrates a ChatGPT-like chatbot directly into Bing, dubbing it the "new Bing" designed to disrupt Google's monopoly in the space. As expected, Google retaliated by showcasing its own chatbot called Bard, a part of Google Search. The big question i

                                              6 Ways AI-Powered Search Engines Will Change the Internet Forever
                                            • 130種以上のゲームエンジンを「価格」「言語」「プラットフォーム」などで絞り込んで検索できる「Game Engines Database」

                                              インストール回数に応じて手数料を請求するとの料金体系を発表して反発を生み、後にユーザーの声を受け入れる形に修正したUnityを見限ったゲーム開発者は少なくありません。Unityから離脱したはいいものの、果たして次にどのゲームエンジンに移行すべきか悩む開発者にオススメなゲームエンジン検索サイトが「Game Engines Database」です。 Game Engines Database https://enginesdatabase.com/ Murder Engine、Narrat Engine、Defold、Godot、Unreal Engine、GameMakerなど、多種多様なゲームエンジンがGame Engines Databaseに登録済み。記事作成時点で137種類の異なるエンジンを見つけることができます。 各エンジンの名前をクリックすると、公式リンクとソースコードリンク(利

                                                130種以上のゲームエンジンを「価格」「言語」「プラットフォーム」などで絞り込んで検索できる「Game Engines Database」
                                              • All-Terrain Vehicle (ATV) Engines Market Size, Share, Growth | Report, 2032

                                                Global Market Outlook In-depth analysis of global and regional trends Analyze and identify the major players in the market, their market share, key developments, etc. To understand the capability of the major players based on products offered, financials, and strategies. Identify disrupting products, companies, and trends. To identify opportunities in the market. Analyze the key challenges in the

                                                  All-Terrain Vehicle (ATV) Engines Market Size, Share, Growth | Report, 2032
                                                • Engines Database

                                                  An open database of Game Engines

                                                    Engines Database
                                                  • コードでわかるLaravelのブラウザ認証 | RE:ENGINES

                                                    はじめに Laravel 8からは、認証機能のscaffoldとして、これまで推奨されていたLaravel UIの代わりに、Laravel Jetstreamが推奨されるようになりました(Laravel 8でも使用することはできます)。しかし、このLaravel Jetstreamが高機能で見た目が良いかわりに、細かなカスタマイズがしにくいことから、Laravel UIを採用するケースもあるようです。 認証機能の実装については、これらのライブラリを使用する他に、Laravelの認証クラスを直接使って、自前の認証機能を実装することもできます。 そこで、今回はLaravelのブラウザ認証クラスの処理の流れをコードを示しながら紹介します。 認証機能の概要 認証機能では、 guard と provider が重要な概念となります。 guard は、リクエスト毎にユーザーを認証する方法を定義していま

                                                      コードでわかるLaravelのブラウザ認証 | RE:ENGINES
                                                    • Modularizing old monolith - Rails Engines to the rescue!

                                                      Modularizing old monolith - Rails Engines to the rescue! TLDR This post is a shout out to the amazing features of Rails that allow developers to extract code fairly easily from monolith application into stand-alone modules. It aims to point out the advantages of Rails engines over microservices and acknowledges the cons of engines solution. About Me I’m a back-end developer, and I got hooked up on

                                                        Modularizing old monolith - Rails Engines to the rescue!
                                                      • Amazon GameLift × Unreal Engines 5 でオンラインマルチプレイゲームを作る - 電通総研 テックブログ

                                                        こんにちは!金融ソリューション事業部の孫です。 ゲームが好きなみなさま、クライアント・サーバーモデルのマルチプレイゲームの制作に興味を持っていますか? 本記事では、熱意を持っていますが「難しそう・・・どうやって始めたらいいんだろうか、ゲームサーバーの構築はどうすればいいのか」という状況の読者向けに開発を体験するのハンズオンを紹介します。 皆さまの熱い気持ちを早く形にするため、AWSが提供するマルチプレイーゲーム用のクラウドサーバー管理サービスであるAmazon GameLiftとゲームエンジンであるUnreal Engines5を使用し、オンラインマルチプレイ環境を構築する最低限の手順でご紹介します。 注意事項 本記事では以下の操作が行えることと、環境が整っていることを前提としています。 AWSのマネジメントコンソールの使用 対話型シェルの使用 Unreal Engineの利用とプロジェク

                                                          Amazon GameLift × Unreal Engines 5 でオンラインマルチプレイゲームを作る - 電通総研 テックブログ
                                                        • GoフレームワークGinでミドルウェアを使ってログインAPIを実装 | RE:ENGINES

                                                          はじめに 今後 Go を使用した案件をやる機会があり、現在 Go の勉強中なのですが、今回は案件でも使用するフレームワーク Gin を使用してログインAPIを実装したいと思います。Gin はメモリ利用量が少なく、 reflection を使用していないため高速で動作します。また、余計な機能がないため、学習コストが低く初心者にオススメです。 ログインAPIの作成 では早速ログインAPIを作成したいと思います。冒頭の通り今回は Gin を使用するので go get しておいてください。 package main import ( "github.com/gin-gonic/gin" "net/http" ) func main() { r := gin.Default() r. POST("/login", func(c *gin.Context) { c.String(http.Status

                                                            GoフレームワークGinでミドルウェアを使ってログインAPIを実装 | RE:ENGINES
                                                          • GitHub - BurntSushi/rebar: A biased barometer for gauging the relative speed of some regex engines on a curated set of tasks.

                                                            METHODOLOGY describes the motivation, design, benchmark selection and evaluation protocol used by rebar. BUILD describes how to build rebar and the regex engines it measures. TUTORIAL provides a guided exploration of some of the most useful rebar sub-commands. CONTRIBUTING describes how to add new benchmarks and how to add a new regex engine to benchmark. MODELS describes the different types of wo

                                                              GitHub - BurntSushi/rebar: A biased barometer for gauging the relative speed of some regex engines on a curated set of tasks.
                                                            • How JavaScript engines achieve great performance

                                                              JavaScript is an impressive technology. Not because it’s particularly well-designed (it isn’t). Not because almost every single consumer device with internet access in the world has executed a JavaScript program. Instead, JavaScript is impressive because almost every single feature of the language makes it a nightmare to optimize and yet, it is fast. Think about it. There is no type information. E

                                                                How JavaScript engines achieve great performance
                                                              • Laravel Admin でCSVインポートを実装する | RE:ENGINES

                                                                はじめに こんにちは。カイザーです。今回は、Laravel AdminにCSVインポート機能を追加する方法について、紹介します。 今回は、以下のようなbooksテーブルとBookモデルに対しての、CSVインポート実装を説明します。 なお、booksテーブルのマイグレーションとモデルの作成方法については説明を省略します。 Schema::create('books', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('title'); $table->string('author'); $table->date('published_at'); $table->timestamps(); });

                                                                  Laravel Admin でCSVインポートを実装する | RE:ENGINES
                                                                • Laravelで非同期実行する | RE:ENGINES

                                                                  はじめに バックエンドの実装に関して、時間がかかる処理を行う場合、非同期に処理したいケースがあると思います。今回はLaravelで非同期に処理するための手軽な方法を紹介します。 動作環境 本記事ではPHP 7.2、Laravel 5.5の環境を想定しています。 準備 非同期に処理するに当たりジョブのキューを管理する方法としては、データベースを利用する方法やRedisを利用する方法などがあります。Laravelでは標準でデータベース、Redis、Amazon SQS、Beanstalkdを利用することができますが、今回は最も手頃なデータベースを使用する実装を紹介します。 デーブルの作成 以下のコマンドを実行してキューを管理するためのテーブルを作成します。

                                                                    Laravelで非同期実行する | RE:ENGINES
                                                                  • �SvelteのStore入門 | RE:ENGINES

                                                                    はじめに 前回の記事では、Svelteの概要について紹介しました。そこで、今回はSvelteのStoreについて、どのように定義してどのように使用するかを紹介します。 SvelteにおけるStoreの概要 始めに、SvelteにおけるStoreについて、概要を説明します。 Storeの条件 Svelteでは、以下の条件に当てはまるものがStoreとみなされます。 constとして定義されている subscribe関数および、unsubscribe関数が実装されている また、subscribe関数および、unsubscribe関数には、それぞれ守るべき条件が定められていますが、ここでは割愛します。詳しく知りたい方は、こちらを参照してください。 Storeの種類 Svelteでは、できることが異なる3種類のStoreが定義できます。 writable(値の更新および取得が可能) readabl

                                                                      �SvelteのStore入門 | RE:ENGINES
                                                                    • Evolution of search engines architecture - Algolia New Search Architecture Part 1 - High Scalability -

                                                                      What would a totally new search engine architecture look like? Who better than Julien Lemoine, Co-founder & CTO of Algolia, to describe what the future of search will look like. This is the first article in a series. Search engines, and more generally, information retrieval systems, play a central role in almost all of today’s technical stacks. Information retrieval started in the beginning of com

                                                                        Evolution of search engines architecture - Algolia New Search Architecture Part 1 - High Scalability -
                                                                      • vuex-module-decoratorsとTypeScriptでvuexをスマートに書く | RE:ENGINES

                                                                        はじめに こちらの記事で紹介したように、Vue CLI 3からVue.jsを手軽にTypeScriptで書くことができるようになりました。しかし、vuexに関してはそのままではTypeScriptで書くのは難しいように思います。 そこで、今回は vuex-module-decorators というサードパーティ製のパッケージを使って、より安全でスマートにvuexを扱う方法を紹介します。 導入 以下のコマンドでパッケージをインストールします。 // for npm npm install -D vuex-module-decorators // for yarn yarn add -D vuex-module-decorators

                                                                          vuex-module-decoratorsとTypeScriptでvuexをスマートに書く | RE:ENGINES
                                                                        • GitHub - yogeshojha/rengine: reNgine is an automated reconnaissance framework for web applications with a focus on highly configurable streamlined recon process via Engines, recon data correlation and organization, continuous monitoring, backed by a datab

                                                                          reNgine is not an ordinary reconnaissance suite; it's a game-changer! We've turbocharged the traditional workflow with groundbreaking features that is sure to ease your reconnaissance game. reNgine redefines the art of reconnaissance with highly configurable scan engines, recon data correlation, continuous monitoring, GPT powered Vulnerability Report, Project Management and role based access contr

                                                                            GitHub - yogeshojha/rengine: reNgine is an automated reconnaissance framework for web applications with a focus on highly configurable streamlined recon process via Engines, recon data correlation and organization, continuous monitoring, backed by a datab
                                                                          • A Busy Developer’s Guide to Database Storage Engines — The Basics

                                                                            Editor’s note – This is the first part of a two-part series on database storage engines: A Busy Developer’s Guide to Database Storage Engines — The Basics (this post)A Busy Developer’s Guide to Database Storage Engines — Advanced TopicsWhen evaluating operational databases, developers building distributed cloud applications tend to focus on data modeling flexibility, consistency guarantees, linear

                                                                              A Busy Developer’s Guide to Database Storage Engines — The Basics
                                                                            • 3 Best Practices for Rails Engines

                                                                              After presenting my Taming Monoliths without Microservices talk at Rubyhack last week, several folks came up for a discussion afterward. They posed the following question, “For pulling apart a monolith, should we use Rails Engines? If we should use them, are there any gotchas to keep in mind?” I didn’t have an immediate answer, but we were able to workshop 3 specific tips for safe engines usage. W

                                                                              1