Monday, September 21, 2026

What is WorkIQ?

 Work IQ is an AI-powered workplace intelligence layer from Microsoft that acts as the "brain" behind Microsoft 365 Copilot and custom AI agents. [1, 2] 

It continuously analyzes and semantically indexes your organizational data—connecting unstructured files (SharePoint documents, Outlook emails, Teams chats and meetings) with structured business data (Dynamics 365 and Power Apps)—so AI tools instantly understand your job, projects, and work patterns without requiring detailed manual prompts. [2, 3, 4] 

## Core Components


* Data & Context: Safely connects to enterprise data to map out relationships, timelines, and communications. [3, 4] 

* Memory & Skills: Retains implicit learning from work habits and utilizes built-in tools for actions like scheduling, file generation, and workflow automation. [4, 5] 

* Security & Governance: Automatically applies your existing enterprise security permissions, sensitivity labels, and Data Loss Prevention (DLP) policies without training foundation models on your private corporate data. [6, 7] 

* APIs: Accessible to developers and applications via [Work IQ API](https://www.microsoft.com/en-us/work-iq) endpoints like REST, Model Context Protocol (MCP), and Agent-to-Agent (A2A) protocols. [1, 7] 


If you'd like, let me know:


* Are you looking to build a custom AI agent using Work IQ?

* Do you need help with admin settings and governance in Microsoft 365?



[1] [https://learn.microsoft.com](https://learn.microsoft.com/en-us/microsoft-365/copilot/extensibility/work-iq/)

[2] [https://m.youtube.com](https://m.youtube.com/shorts/B9jID_ycpBE)

[3] [https://blogs.perficient.com](https://blogs.perficient.com/introducing-microsoft-work-iq-the-intelligence-layer-for-agents/)

[4] [https://www.youtube.com](https://www.youtube.com/watch?v=9JQCYDi_YUE&vl=en)

[5] [https://www.youtube.com](https://www.youtube.com/shorts/LPAWVi32WRw?vl=en)

[6] [https://www.reddit.com](https://www.reddit.com/r/microsoft_365_copilot/comments/1rg1h97/what_is_work_iq_in_microsoft_365_copilot_and_why/)

[7] [https://www.microsoft.com](https://www.microsoft.com/en-us/microsoft-365/work-iq)



How to setup n8n docker instance with tunnel

 there are two options, with ngrok and cloudflare. Important screenshots below 





reference: https://www.youtube.com/watch?v=O9dpO81dEQ0



What is BaseTen LLM inferencing

[Baseten](https://www.baseten.co/solutions/llms/) is a production-grade machine learning infrastructure platform that specializes in high-throughput, low-latency AI model inference, specifically for large language models (LLMs) and generative AI. [1, 2, 3] 

Rather than training or fine-tuning models, Baseten provides the backend serving layer that turns open-source or custom models (like Llama, DeepSeek, and Gemma) into scalable, production-ready APIs. [4, 5, 6, 7] 

## Core Features and Architecture


* High-Performance Inference Engines: Uses optimized inference frameworks like TensorRT-LLM, vLLM, and SGLang alongside the proprietary Baseten Inference Stack (BIS) to maximize GPU efficiency and minimize time-to-first-token (TTFT). [3, 6, 8] 

* Multi-Cloud Capacity Management: Provisions and dynamically scales GPU resources (including high-end NVIDIA hardware like H100s and B200s) across multiple cloud providers and geographic regions. [4, 9, 10] 

* OpenAI-Compatible APIs: Allows developers to call hosted or deployed models seamlessly using standard OpenAI-compatible API endpoints. [7, 11] 

* Advanced Scaling: Features token-based autoscaling, KV-aware request routing, and active-active multi-node high availability to handle intense production workloads and traffic spikes. [8, 12] 

* Truss Integration: Uses [Truss](https://github.com/baseten-inference), an open-source model packaging framework, enabling developers to deploy complex models using simple YAML configuration files without managing raw Docker containers. [7, 9, 10] 


If you're working on a project, let me know:


* Which model you are looking to deploy or run

* Whether you need help with infrastructure scaling or API integration


I can provide specific configuration tips or examples!


[1] [https://www.baseten.co](https://www.baseten.co/solutions/llms/)

[2] [https://www.zenml.io](https://www.zenml.io/llmops-database/mission-critical-llm-inference-platform-architecture)

[3] [https://aws.amazon.com](https://aws.amazon.com/partners/success/baseten-nvidia/)

[4] [https://www.baseten.co](https://www.baseten.co/blog/mercury-2-is-now-available-on-baseten/)

[5] [https://www.youtube.com](https://www.youtube.com/watch?v=Gig51sj4cL0&t=9)

[6] [https://cloud.google.com](https://cloud.google.com/blog/products/ai-machine-learning/how-baseten-achieves-better-cost-performance-for-ai-inference)

[7] [https://docs.baseten.co](https://docs.baseten.co/examples/deploy-your-first-model)

[8] [https://docs.baseten.co](https://docs.baseten.co/engines/bis-llm/overview)

[9] [https://docs.baseten.co](https://docs.baseten.co/concepts/howbasetenworks)

[10] [https://ai.engineer](https://ai.engineer/orgs/baseten)

[11] [https://docs.baseten.co](https://docs.baseten.co/overview)

[12] [https://www.baseten.co](https://www.baseten.co/resources/guide/the-baseten-inference-stack/)



What is Pika?

is the officially recommended pure-Python client library for RabbitMQ. It is used to interact with message brokers that support the AMQP 0-9-1 protocol. [1, 2, 3]  

The package is primarily used in microservices and distributed applications to handle asynchronous communication by publishing and consuming messages through queues. [4]  

Key Features of Pika 

• Pure Python: It is written entirely in Python, making it lightweight and cross-platform. 

• Protocol Support: It implements the standard AMQP 0-9-1 protocol and supports specific RabbitMQ extensions. 

• Network Independent: It tries to stay independent of the underlying network support library. 

• Multiple Connection Adapters: It features multiple adapters to support different programming models: 


• BlockingConnection: Ideal for simple, synchronous applications. 

• SelectConnection / TornadoConnection / TwistedProtocolConnection: Asynchronous adapters meant for I/O loops and high-performance apps. [1, 5]  


• Thread-Neutral: It doesn't require threads, nor does it forbid them, allowing it to work with callbacks, greenlets, or generators. [5]  


How to Install 

You can easily add it to your project via the  pika PyPI page  using pip: [1, 3]  

Basic Example (Producer) 

Here is a quick look at how you use  to send a message to a RabbitMQ queue using a standard blocking connection: 

Would you like me to show you how to write the consumer code to read messages back from the queue, or do you need help setting up RabbitMQ? 

AI responses may include mistakes.


[1] https://pypi.org/project/pika/

[2] https://packagehub.suse.com/packages/python-pika/

[3] https://www.rabbitmq.com/tutorials/tutorial-one-python

[4] https://oneuptime.com/blog/post/2026-01-23-rabbitmq-consumers-pika-python/view

[5] https://github.com/pika/pika

[6] https://pika.readthedocs.io/




Saturday, September 19, 2026

What is crew

 The Crew is designed for people who are overwhelmed, not for people who enjoy organizing. Every design decision prioritizes minimum friction:

  • Chat is the interface: no manual file management
  • Skills handle the heavy lifting: multi-step workflows run as guided conversations
  • Agents handle the quick stuff: filing, linking, capturing, searching
  • Any language, any time: your brain shouldn't have to switch languages to stay organized
  • Conservative by default: agents never delete, always archive. They ask before making big decisions.
GitHub - gnekt/My-Brain-Is-Full-Crew: Built by a PhD whose memory was failing, whose diet was a mess, and whose anxiety had its own agenda. Most second brain tools ignore the fact that your brain doesn't work in isolation: your body and your mental health are part of the system too. This crew handles all three: knowledge, nutrition, and mental wellness. · GitHub https://github.com/gnekt/My-Brain-Is-Full-Crew

What is flocci

 Floci is a free, open-source local AWS emulator for development, testing, and CI.

It gives you AWS-shaped services on your machine without requiring a cloud account, an auth token, or paid feature gates. Point your AWS SDK, CLI, Terraform, CDK, OpenTofu, or test suite at http://localhost:4566 and keep your existing workflows.

Already using LocalStack? Floci is a drop-in replacement: swap the image and keep going. See Migrating from LocalStack.

Floci is the AWS member of the Floci emulator family, named after floccus, the cloud formation that looks like popcorn.

Friday, September 18, 2026

Picking LLM for Mac Mini

The easiest way to think about local models is by memory tier. 


Mac mini Models worth considering

16GB gpt-oss-20b, smaller Gemma 4 models

24GB gpt-oss-20b, Gemma 4 26B A4B, Qwen3.6 27B

32GB Qwen3.6 35B, Qwen3-Coder 30B, Gemma 4 26B

48GB Llama 3.3 70B, alongside smaller models

64GB Llama 3.3 70B and substantially larger local workloads

These are practical starting points rather than hard limits. Quantization, context length, KV-cache requirements, runtime overhead, and whatever else is running on the Mac all affect how comfortably a model runs. 


A model that technically fits into memory may still be unpleasant to use if there is not enough headroom.