並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 22 件 / 22件

新着順 人気順

domainの検索結果1 - 22 件 / 22件

  • たのしいドメイン駆動設計: 序 / Enjoy domain driven design : ZYO

    自分の開発に対する姿勢を根本的に変えたドメイン駆動設計(DDD)。ぜひみんなにもその面白さを知ってもらいたい!と思い社内向け資料を作成、さらにSpeakerDeckにて公開としました。 たのしんでご覧ください! 関連note記事はこちら:https://note.com/jgc_parallel/n/n17db4b63affe

      たのしいドメイン駆動設計: 序 / Enjoy domain driven design : ZYO
    • Disclosure of a vulnerability that allows the theft of visitors' email addresses using Medium's custom domain feature / Mediumの独自ドメインプランを使って訪問者のメールアドレスが窃取できる脆弱性の開示

      0_medium_vuln_en.md Disclosure of a vulnerability that allows the theft of visitors' email addresses using Medium's custom domain feature Author: mala Introduction This article describes a vulnerability in a web service called Medium that allows you to steal visitors' e-mail addresses by using custom domain plan of Medium. This is done as my personal activity and is not related to my organization.

        Disclosure of a vulnerability that allows the theft of visitors' email addresses using Medium's custom domain feature / Mediumの独自ドメインプランを使って訪問者のメールアドレスが窃取できる脆弱性の開示
      • PerlからGoへのシステム移行のアシスト 〜Perl XSとUnix Domain Socketを活用〜 - Mirrativ Tech Blog

        こんにちは ハタ です。 Mirrativ では 2020年頃から サーバサイドの技術をPerlからGoへのシステム移行 を行っており、2024年現在でもサグラダファミリアのように移行作業は継続しています PerlとGoという2つの環境を同時に運用していますが、 基本的には 新機能は Go で実装 し、 Perlでは積極的に新規実装を行わない というスタイルで進めていました しかし、既存の機能の一部に手を加えたいとなった場合、まだまだ Perl の実装に手を加えることが一定あり、Perl から Go の機能を呼び出したいというニーズが出てきました (配信やギフトといったビジネスの根幹を支えるレガシーな実装においては顕著) そこで PerlXS を利用することで Perl から Go を直接呼び出せるようにできないかと考え検証を進めることにしました Goの -buildmode=c-shar

          PerlからGoへのシステム移行のアシスト 〜Perl XSとUnix Domain Socketを活用〜 - Mirrativ Tech Blog
        • Domain Event

          目次 概要 この記事の内容 対象読者 注意事項 前提知識 定義 用途 モデリング 不変性 独立性 汎用情報 個別の情報 Versioning 実装 前提 フレームワーク Domain Eventの処理 型定義 interface DomainEventEnvelope Enum Domain Eventの内部通知 staticなEvent Publisherを用意してAggregateがPublisherを呼び出す 実装例 AggregateのCommandの返り値としてDomain Eventを返す 実装例 Aggregateで保持してGetterで取り出す 実装例 永続化と外部通知 要件 永続化 外部通知 まとめ 参考文献 概要 この記事の内容 Domain Eventは非常にシンプルな概念かつ強力なモデリングパターンです。 モデリングにおいては直感的に扱うことが可能ですが、実装をする

            Domain Event
          • ZodでAlways-Valid Domain Modelを実現する

            課題意識 特定の商品を数量を指定して購入できるECサービスのドメインモデルを表現とします。TypeScriptで構築する際に、「数量」を単にnumber型で扱うことは可能ですが、よりロバストな設計を目指す上で以下の2つの方法論があります。 Refinements(値の制約を表す): 「数量」は一般的に自然数です。1度の注文で指定できる上限を設けるビジネスルールがあると仮定します。この場合、number型に「自然数」「上限付き」の制約を加えた値として表現します。 Branded Types: (同じ構造の型を区別する): 「価格」などの他のnumber型と混同されないように、これらの数値を型レベルで区別したいです。JavaやC#に見られる公称型の概念をTypeScriptで模倣するBranded Typesのテクニックを用いることで、これらの誤った利用を型システムで防ぐことができます。 Br

              ZodでAlways-Valid Domain Modelを実現する
            • Bioinfomaticsのpublic domainのdataに対する性能改善手法の論文はほとんど研究不正?

              交差検証をしっかりして、n種類ためしてこの手法だけ既存手法を上回る精度になりました、すべて提案であって性能改善は検証されていないなどと正直に論文に書けばよいのでは無いかと思わなくもなく。

                Bioinfomaticsのpublic domainのdataに対する性能改善手法の論文はほとんど研究不正?
              • record4s --- Extensible Records for Scala 3, and Domain Modeling with Structural Types

                In this talk, we learn about the basics of my library called "record4s", which provides type-safe extensible records for Scala 3. It runs on JVM, JS, and Native platforms. You will see how it is implemented efficiently by using Scala 3 macros, and how record types as structural types, which work without reflection in Scala 3, are helpful in domain modeling. record4s --- Scala 3のための拡張可能レコード、そして構造的型

                  record4s --- Extensible Records for Scala 3, and Domain Modeling with Structural Types
                • Domain Modeling Made Functionalの読書メモ

                  はじめに Domain Modeling Made Functional: Tackle Software Complexity with Domain-Driven Design and F# を読んだので、気になったことをまとめます。 私の DDD の知識と経験は趣味プロダクトで素振りしてみた程度、関数型プログラミングは勉強中という感じなので、間違った解釈をしているかもしれませんがご容赦を。 本書は F#で記載されていますが、自分のメモでは TypeScript に翻訳してサンプルコードを書いています。 肝心の関数型プログラミングのテクニックを駆使してパイプラインを作っていくアプローチについては自分なりに理解できたので、この記事ではあまり触れていません。興味がある方は、ぜひ本書を読んでみてください。 Part1 Understanding the Domain ビジネス・イベント

                    Domain Modeling Made Functionalの読書メモ
                  • Reasons to not use your own domain for email | Eduardo Bautista

                    I have been using my own domain for email for over 10 years. I am grandfathered into the free version of Google Workspace and have also used Fastmail and ProtonMail. One of my concerns is that, if I were unable to renew my domain (e.g., in case of death), someone else could register it and start receiving my emails. This is a serious issue because your email account is as good as a password due to

                    • DMARC Domain Checker - dmarcian

                      Use our DMARC Domain Checker to find out if an email domain is protected against phishing, spoofing or fraud. Our domain checker offers you quick insights by inspecting DMARC, SPF and DKIM records and shows you if there are any actions you need to take. NOTE: The Yahoo and Google DMARC requirement came into force February 1, 2024. We’ve written a guide to help you with the new sender requirements

                      • RAFT: Adapting Language Model to Domain Specific RAG

                        Pretraining Large Language Models (LLMs) on large corpora of textual data is now a standard paradigm. When using these LLMs for many downstream applications, it is common to additionally bake in new knowledge (e.g., time-critical news, or private domain knowledge) into the pretrained model either through RAG-based-prompting, or fine-tuning. However, the optimal methodology for the model to gain su

                        • Product Engineer Night #2 〜DomainへのDeep Dive!〜

                          ANDPAD (アンドパッド)開発部 @andpad_dev / 1/17(水)開催! \ プロダクト志向を持ったエンジニアが集まるミートアップ「Product Engineer Night #2 〜DomainへのDeep Dive!〜」の開催が迫ってきました!弊社からはテックリードの金近が登壇いたします!ぜひご期待ください! andpad.connpass.com/event/306057/ #PdENight 2024-01-15 16:12:19 Niwa Takeru|アセンド取締役CTO @niwa_takeru 【満席御礼!】プロダクトエンジニアが集うイベント Product Engineer Night 明日開催です! 今回のテーマは『Domain への Deep Dive !』 ASCEND、カケハシ、アンドパッドから登壇いただきます!満席となりましたが繰り上げもありえま

                            Product Engineer Night #2 〜DomainへのDeep Dive!〜
                          • Get your own .ing top-level domain

                            Build your website in a single word with .ing. Design.ing, edit.ing, mak.ing — the possibilities are endless.

                              Get your own .ing top-level domain
                            • [アップデート]Amazon SageMaker の高速セットアップは、1クリックでSageMaker Domainが作成可能になったため、作成される各リソースを確認してみた | DevelopersIO

                              [アップデート]Amazon SageMaker の高速セットアップは、1クリックでSageMaker Domainが作成可能になったため、作成される各リソースを確認してみた はじめに Amazon SageMakerの高速セットアップは、1クリックでSageMaker Dmain(以降、ドメイン)が作成されるようになりました。 以前からドメインの作成方法としては、高速セットアップと標準セットアップの2種類がありました。 従来、高速セットアップで作成する場合、下記のようにユーザープロファイルの名前やドメインが利用する実行用のIAMロールの作成と指定が必要でした。 引用画像 最新のアップデートにより、上記の設定は不要になり、ユーザーはたった1クリックで作成できるようになっています。 この高速セットアップの利用用途としては、IAMやVPCなどについての詳しい知識がない、主に個人ユーザー向けとな

                                [アップデート]Amazon SageMaker の高速セットアップは、1クリックでSageMaker Domainが作成可能になったため、作成される各リソースを確認してみた | DevelopersIO
                              • Introduc…ing the .ing top-level domain

                                There's a new domain launching today that lets you build your website in a single word: .ing. This top-level domain is ready for whatever you're interested in, whether it’s mak.ing a fun website, giv.ing to a good cause, design.ing something beautiful or edit.ing an existing document. If you’re go.ing on an adventure, ink.ing a tattoo, enjoying a dumpl.ing or adapt.ing to something new, .ing is re

                                  Introduc…ing the .ing top-level domain
                                • GitHub - Doubiiu/DynamiCrafter: DynamiCrafter: Animating Open-domain Images with Video Diffusion Priors

                                  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 - Doubiiu/DynamiCrafter: DynamiCrafter: Animating Open-domain Images with Video Diffusion Priors
                                  • Trailing Dots in Domain Names

                                    http://www.dns-sd.org./TrailingDotsInDomainNames.html Fully-Qualified Domain Names When I double-click a Bonjour (DNS-SD) Name in a web browser like Safari, the resulting URL has a hostname with a dot at the end. Is this a bug? No, the dot at the end is correct. You can try it here. Try adding a dot at the end of "www.dns-sd.org", as shown in the subtitle at the top of this page, and you should st

                                    • The Department of Defense Launches the All-domain Anomaly Resolution Office Website

                                      Today the department launched a website on the All-domain Anomaly Resolution Office to provide the public with information concerning AARO and its efforts to understand and resolve unidentified anomalous phenomena. This website will provide information, including photos and videos, on resolved UAP cases as they are declassified and approved for public release.  The website's other content includes

                                        The Department of Defense Launches the All-domain Anomaly Resolution Office Website
                                      • DMARC Check Tool - Domain Message Authentication Reporting & Conformance Lookup - MxToolBox

                                        ABOUT DMARC RECORD CHECK The DMARC Record Lookup / DMARC Check is a diagnostic tool that will parse the DMARC Record for the queried domain name, display the DMARC Record, and run a series of diagnostic checks against the record. Domain-based Message Authentication, Reporting, and Conformance (DMARC) is a mechanism for policy distribution by which an organization that is the originator of an email

                                          DMARC Check Tool - Domain Message Authentication Reporting & Conformance Lookup - MxToolBox
                                        • Domain Modeling: What you need to know before coding

                                          Starting to write code without proper planning is like trying to build IKEA furniture with a blindfold on. If against all odds, you somehow manage to assemble something resembling a dresser, there’s a good chance you’ve forgotten a crucial piece and you’ll be throwing the whole thing out in a week and heading to Pottery Barn (like you should have in the first place). [1] When getting to know a new

                                            Domain Modeling: What you need to know before coding
                                          • コスパ最強、国内成長率No.1のドメイン取得サービス「Xserver Domain」 - Ran Ran(アラフォー会社員)の脱社畜計画

                                            画像元:Xserver Domain コスパ最強、国内成長率No.1のドメイン取得サービスに関心があるはず? の皆様、こんにちは。「Xserver Domain(エックスサーバー ドメイン)」というサービスを知った、アラフォー会社員のRan Ranです。 ブログやホームページなどの運営に欠かせないドメインですが、どうせ取得するなら、なるべくお得に取得したいと考えるのが自然ですよね。 そんな方にお勧めなのが「Xserver Domain」なのですが、多くの方から高い支持を受けてきて、ついに国内成長率No.1のドメイン取得サービスになりました。 そこで、本日の記事は、コスパ最強、国内成長率No.1のドメイン取得サービス「Xserver Domain」という内容です。 「Xserver Domain」は、国内成長率No.1のドメイン取得サービス 「Xserver Domain」のお勧めポイント

                                              コスパ最強、国内成長率No.1のドメイン取得サービス「Xserver Domain」 - Ran Ran(アラフォー会社員)の脱社畜計画
                                            • Functional Domain Modelling - Marco Emrich and Ferdinand Ade - DDD Europe 2023

                                              Domain-Driven Design Europe 2023 https://dddeurope.com - https://twitter.com/ddd_eu - https://newsletter.dddeurope.com/ https://linkedin.com/company/domain-driven-design-europe Organised by Aardling (https://aardling.eu/) Modern collaborative methods such as EventStorming help to bring together subject matter experts and developers. Domain Modelling goes one step further and enables joint work d

                                                Functional Domain Modelling - Marco Emrich and Ferdinand Ade - DDD Europe 2023
                                              1