April 2026 TLDR setup for Ollama + Gemma 4 on a Mac mini (Apple Silicon) — auto-start, preload, and keep-alive
- Mac mini with Apple Silicon (M1/M2/M3/M4/M5)
- At least 16GB unified memory for Gemma 4 (default 8B)
- macOS with Homebrew installed
April 2026 TLDR setup for Ollama + Gemma 4 on a Mac mini (Apple Silicon) — auto-start, preload, and keep-alive
| # Project Instructions (Phoenix Project) | |
| This document serves as a comprehensive, award-winning set of guidelines for a Phoenix-based Elixir web application. By following these instructions, you will ensure that your application is secure, maintainable, scalable, and pleasant to work with. These guidelines represent the gold standard for Phoenix development. | |
| --- | |
| ## Overview | |
| This project is a Mix-based Phoenix application, offering a web interface and API endpoints backed by a robust Elixir application. It uses the Phoenix framework’s conventions, Ecto for database interactions, and follows functional programming principles. |
| BetaPage https://betapage.co/ | |
| Better Business Bureau https://www.bbb.org/ | |
| Big Startups https://biqstartups.co/overview/sub | |
| Bing https://www.bingplaces.com/ | |
| Bloombuzz https://bloombuzz.in/joinus/ | |
| Boing Boing https://boingboing.net | |
| Bootstrappers bootstrappers.io | |
| Built In https://builtin.com/expert-contributors | |
| Business Insider https://www.businessinsider.in/contributors | |
| Business Software https://www.business-software.com/add- |
| defmodule TravelerWeb.SearchbarLive do | |
| use TravelerWeb, :live_view | |
| alias Phoenix.LiveView.JS | |
| alias Traveler.Places | |
| def mount(_params, _session, socket) do | |
| socket = assign(socket, places: []) | |
| {:ok, socket, layout: false} | |
| end |
| // We need to import the CSS so that webpack will load it. | |
| // The MiniCssExtractPlugin is used to separate it out into | |
| // its own CSS file. | |
| import "../css/app.css" | |
| // webpack automatically bundles all modules in your | |
| // entry points. Those entry points can be configured | |
| // in "webpack.config.js". | |
| // | |
| // Import deps with the dep name or local files with a relative path, for example: |
What do Tensorflow, Apache Airflow, Rule Engines, and Excel have in common?
Under the hood they all use DAGs to model data-flow dependencies of the program. Using graphs to model programs is great because you can modify the program at runtime. Lets talk about doing this in Elixir for great good.
Do you really need Elastic Search?
| defmodule ReaperWeb.Plugs.ScoutApmAbsinthe do | |
| @moduledoc """ | |
| This plug allows us to add context to our GraphQL requests in Scout. | |
| We are intuiting the operation name from the query itself and attaching it | |
| to a Scout layer | |
| """ | |
| alias ScoutApm.Internal.Layer | |
| alias Reaper.MetaLogger, as: Logger |
⚠️ WARNING
The ordering of listed projects or documents is random and has no connection to relevance or maturity levels!
| Extension | Description |
|---|---|
pgaudit |
Postgres auditing extension |
| #!/bin/bash | |
| # Usage: ./minio-upload my-bucket my-file.zip | |
| bucket=$1 | |
| file=$2 | |
| host=minio.example.com | |
| s3_key=svc_example_user | |
| s3_secret=svc_example_user_password |