Convert Hugo articles to Embendding for Cloudflare Vectorize Store
The single.json
is a example to add JSON outptu for your theme.
Setup a new config ai.toml
to extend output
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "Generated schema for Root", | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string" | |
}, | |
"id": { | |
"type": "string" |
paginator = InfinitePaginator.new( | |
'https://jsonplaceholder.typicode.com/users/%<page>d' | |
) | |
pp paginator.take(12) | |
# => | |
# [{"id"=>1, "name"=>"Leanne Graham"}, | |
# {"id"=>2, "name"=>"Ervin Howell"}, | |
# {"id"=>3, "name"=>"Clementine Bauch"}, | |
# {"id"=>4, "name"=>"Patricia Lebsack"}, |
Under Domain-Driven Design, we are trying to "Model" the real world to the virtual world. However, it cannot clearly describe the context/interaction with the domain.
The raw data is a "number" or "string" and cannot explain the meaning in specifying the domain. Therefore we have to create a "value object" to assign the domain meaning and use "entity" to compose mapping a real-world object.
Name | Layer | Type | Description |
---|---|---|---|
app/models/visitor_pass.rb | Domain | Aggregate | Pass-related domain |
app/services/tracker_service.rb | Domain | Domain Service | Logic between door and visitor interaction |
app/controllers/passes_controller.rb | Application | Use Case | The user flow of "pass" a door |
require 'dry-contaienr' | |
require 'dry-auto_inject' | |
# Singleton style container | |
class Container | |
extend Dry::Container::Mixin | |
namespace :repositories do | |
register(:games) { GameRepository.new } | |
register(:players) { PlayerRepository.new } |
# API | |
class FakeResponse < Struct.new(:status, :code) | |
def success? | |
code == 200 | |
end | |
end | |
class FakeAPI | |
def call | |
FakeResponse.new('Success', 200) |
# frozen_string_literal: true | |
require 'delegate' | |
require 'json' | |
class Middleware < SimpleDelegator | |
end | |
class CacheMiddleware < Middleware | |
def initialize(object) |
class BadObject | |
def initialize | |
@internal = 'Coupling' | |
end | |
def perform | |
puts 'Start' | |
100.times do |i| | |
puts "Long Code ... #{i} #{@internal}" | |
end |
#include <stdint.h> | |
#include <stdio.h> | |
#include <string.h> | |
static inline uint32_t | |
bin_to_uint32(const uint8_t *bin) | |
{ | |
return (uint32_t)bin[0] << 24 | | |
(uint32_t)bin[1] << 16 | | |
(uint32_t)bin[2] << 8 | |