show episodes
 
A podcast by Movify about design and development. Our crafters will take you on a journey to discover more about digital innovation. We challenge the norm and push the boundaries of design, experiences, and technology further. Within our community of experts, we bond and grow through knowledge sharing, empowerment, and tons of fun!
  continue reading
 
Artwork
 
Get behind-the-scenes insights into the world of internal ML platforms and MLOps stack components with Piotr Niedźwiedź and Aurimas Griciūnas in their show, where together with ML platform professionals, they discuss design choices, best practices, and real-world solutions to MLOps challenges. Brought to you by neptune.ai.
  continue reading
 
Loading …
show series
 
𝗛𝗼𝘄 𝘁𝗼 𝗰𝗿𝗲𝗮𝘁𝗲 𝗱𝗲𝘀𝗶𝗴𝗻 𝗼𝗿𝗴𝗮𝗻𝗶𝘀𝗮𝘁𝗶𝗼𝗻𝘀 𝗳𝗼𝗿 𝗶𝗺𝗽𝗮𝗰𝘁 🚀 In this episode of Flux, we sit down with Sandra Tielemans, Design Chapter Area Lead at Proximus, to explore her journey from market research to leading one of the largest design teams in Belgium. Sandra shares how she reshaped team structures, fostered cross-functional collaboration, and championed a…
  continue reading
 
Pragmatica Labs Podcast: Interactive Labs Update Episode Notes Announcement: Updated Interactive Labs New version of interactive labs now available on the Pragmatica Labs platform Focus on improved Rust teaching capabilities Rust Learning Environment Features Browser-based development environment with: Ability to create projects with Cargo Code com…
  continue reading
 
Meta and OpenAI Book Piracy Controversy: Podcast Summary The Unauthorized Data Acquisition Meta (Facebook's parent company) and OpenAI downloaded millions of pirated books from Library Genesis (LibGen) to train artificial intelligence models The pirated collection contained approximately 7.5 million books and 81 million research papers Mark Zuckerb…
  continue reading
 
Rust Multiple Entry Points: Architectural Patterns Key Points Core Concept: Multiple entry points in Rust enable single codebase deployment across CLI, microservices, WebAssembly and GUI contexts Implementation Path: Initial CLI development → Web API → Lambda/cloud functions Cargo Integration: Native support via src/bin directory or explicit binary…
  continue reading
 
Podcast Notes: Vibe Coding & The Maintenance Problem in Software Engineering Episode Summary In this episode, I explore the concept of "vibe coding" - using large language models for rapid software development - and compare it to Python's historical role as "vibe coding 1.0." I discuss why focusing solely on development speed misses the more import…
  continue reading
 
Podcast Notes: DeepSeek R2 - The Tech Stock "Atom Bomb" Overview DeepSeek R2 could heavily impact tech stocks when released (April or May 2025) Could threaten OpenAI, Anthropic, and major tech companies US tech market already showing weakness (Tesla down 50%, NVIDIA declining) Cost Claims DeepSeek R2 claims to be 40 times cheaper than competitors S…
  continue reading
 
Regulatory Capture in Artificial Intelligence Markets: Oligopolistic Preservation Strategies Thesis Statement Analysis of emergent regulatory capture mechanisms employed by dominant AI firms (OpenAI, Anthropic) to establish market protectionism through national security narratives. Historiographical Parallels: Microsoft Anti-FOSS Campaign (1990s) H…
  continue reading
 
The Rust Paradox: Systems Programming in the Epoch of Generative AI I. Paradoxical Thesis Examination Contradictory Technological Narratives Epistemological inconsistency: programming simultaneously characterized as "automatable" yet Rust deemed "excessively complex for acquisition" Logical impossibility of concurrent validity of both propositions …
  continue reading
 
Podcast Notes: Debunking Claims About AI's Future in Coding Episode Overview Analysis of Anthropic CEO Dario Amodei's claim: "We're 3-6 months from AI writing 90% of code, and 12 months from AI writing essentially all code" Systematic examination of fundamental misconceptions in this prediction Technical analysis of GenAI capabilities, limitations,…
  continue reading
 
Pattern Matching vs. Content Comprehension: The Mathematical Case Against "Reading = Training" Mathematical Foundations of the Distinction Dimensional processing divergence Human reading: Sequential, unidirectional information processing with neural feedback mechanisms ML training: Multi-dimensional vector space operations measuring statistical co-…
  continue reading
 
Pattern Matching Systems: Powerful But Dumb Core Concept: Pattern Recognition Without Understanding Mathematical foundation: All systems operate through vector space mathematics K-means clustering, vector databases, and AI coding tools share identical operational principles Function by measuring distances between points in multi-dimensional space N…
  continue reading
 
K-means & Vector Databases: The Core Connection Fundamental Similarity Same mathematical foundation – both measure distances between points in space K-means groups points based on closeness Vector DBs find points closest to your query Both convert real things into number coordinates The "team captain" concept works for both K-means: Captains are ce…
  continue reading
 
Finding Hidden Groups with K-means Clustering What is Unsupervised Learning? Imagine you're given a big box of different toys, but they're all mixed up. Without anyone telling you how to sort them, you might naturally put the cars together, stuffed animals together, and blocks together. This is what computers do with unsupervised learning - they fi…
  continue reading
 
Greedy Random Start Algorithms: From TSP to Daily Life Key Algorithm Concepts Computational Complexity Classifications Constant Time O(1): Runtime independent of input size (hash table lookups) "The holy grail of algorithms" - execution time fixed regardless of problem size Examples: Dictionary lookups, array indexing operations Logarithmic Time O(…
  continue reading
 
Hidden Features of Cargo: Podcast Episode Notes Custom Profiles & Build Optimization Custom Compilation Profiles: Create targeted build configurations beyond dev/release [profile.quick-debug]opt-level = 1 # Some optimizationdebug = true # Keep debug symbols Usage: cargo build --profile quick-debug Perfect for debugging performance issues without fu…
  continue reading
 
Temporal Execution Framework: Unix AT Utility for AWS Resource Orchestration Core Mechanisms Unix at Utility Architecture Kernel-level task scheduler implementing non-interactive execution semantics Persistence layer: /var/spool/at/ with priority queue implementation Differentiation from cron: single-execution vs. recurring execution patterns Synta…
  continue reading
 
Assembly Language & WebAssembly: Evolutionary Paradigms Episode Notes I. Assembly Language: Foundational Framework Ontological Definition Low-level symbolic representation of machine code instructions Minimalist abstraction layer above binary machine code (1s/0s) Human-readable mnemonics with 1:1 processor operation correspondence Core Architectura…
  continue reading
 
STRACE: System Call Tracing Utility — Advanced Diagnostic Analysis I. Introduction & Empirical Case Study Case Study: Weta Digital Performance Optimization Diagnostic investigation of Python execution latency (~60s initialization delay) Root cause identification: Excessive filesystem I/O operations (103-104 redundant calls) Resolution implementatio…
  continue reading
 
Episode Notes: My Support Initiative for Federal Workers in Transition Episode Overview In this episode, I announce a special initiative from Pragmatic AI Labs to support federal workers who are currently in career transitions by providing them with free access to our educational platform. I explain how our technical training can help workers upski…
  continue reading
 
Dark Patterns in Recommendation Systems: Beyond Technical Capabilities 1. Engagement Optimization Pathology Metric-Reality Misalignment: Recommendation engines optimize for engagement metrics (time-on-site, clicks, shares) rather than informational integrity or societal benefit Emotional Gradient Exploitation: Mathematical reality shows emotional t…
  continue reading
 
Vector Databases for Recommendation Engines: Episode Notes Introduction Vector databases power modern recommendation systems by finding relationships between entities in high-dimensional space Unlike traditional databases that rely on exact matching, vector DBs excel at finding similar items Core application: discovering hidden relationships betwee…
  continue reading
 
The podcast notes effectively capture the key technical aspects of the WebSocket terminal implementation. The transcript explores how Rust's low-level control and memory management capabilities make it an ideal language for building high-performance terminal emulation over WebSockets. What makes this implementation particularly powerful is the comb…
  continue reading
 
Silicon Valley's Anarchist Alternative: How Open Source Beats Monopolies and Fascism CORE THESIS Corporate-controlled tech resembles fascism in power concentration Trillion-dollar monopolies create suboptimal outcomes for most people Open source (Linux) as practical counter-model to corporate tech hegemony Libertarian-socialist approach achieves bo…
  continue reading
 
EPISODE NOTES: AI CODING PATTERNS & DEFECT CORRELATIONS Core Thesis Key premise: Code churn patterns reveal developer archetypes with predictable quality outcomes Novel insight: AI coding assistants exhibit statistical twins of "rogue developer" patterns (r=0.92) Technical risk: This correlation suggests potential widespread defect introduction in …
  continue reading
 
The Automation Myth: Why Developer Jobs Aren't Going Away Core Thesis The "last mile problem" persistently prevents full automation 90/10 rule: First 90% of automation is easy, last 10% proves exponentially harder Tech monopolies strategically use automation narratives to influence markets and suppress labor Genuine automation augments human capabi…
  continue reading
 
Maslow's Hierarchy of Logging - Podcast Episode Notes Core Concept Logging exists on a maturity spectrum similar to Maslow's hierarchy of needs Software teams must address fundamental logging requirements before advancing to sophisticated observability Level 1: Print Statements Definition: Raw output statements (printf, console.log) for basic debug…
  continue reading
 
TCP vs UDP: Foundational Network Protocols Protocol Fundamentals TCP (Transmission Control Protocol) Connection-oriented: Requires handshake establishment Reliable delivery: Uses acknowledgments and packet retransmission Ordered packets: Maintains exact sequence order Header overhead: 20-60 bytes (≈20% additional overhead) Technical implementation:…
  continue reading
 
Tracing vs. Logging in Production Systems Core Concepts Logging & Tracing = "Data Science for Production Software" Essential for understanding system behavior at scale Provides insights when services are invoked millions of times monthly Often overlooked by beginners focused solely on functionality Fundamental Differences Logging Point-in-time even…
  continue reading
 
The Rise of Expertise Inequality in AI Key Points Similar to income inequality growth since 1980, we may now be witnessing the emergence of expertise inequality with AI Problem: Automation Claims Lack Nuance Claims about "automating coders" or eliminating software developers oversimplify complex realities Example: AWS deployment decisions require e…
  continue reading
 
EU Cloud Sovereignty & Open Source Alternatives Market Overview Current EU Cloud Market Share AWS: ~33% market share (Frankfurt, Ireland, Paris regions) Microsoft Azure: ~25% market share Google Cloud Platform: ~10% market share OVHcloud: ~5% market share (largest EU-headquartered provider) EU Sovereign Cloud Providers Full-Stack European Solutions…
  continue reading
 
European Digital Sovereignty: Breaking Tech Dependency Episode Notes Heterodox Economic Foundations (00:00-02:46) Current economic context: Income inequality at historic levels (worse than pre-French Revolution) Problems with GDP as primary metric: Masks inequality when wealth is concentrated Fails to measure human wellbeing American example: major…
  continue reading
 
WebAssembly Core Concepts - Episode Notes Introduction [00:00-00:14] Overview of episode focus: WebAssembly core concepts Structure: definition, purpose, implementation pathways Fundamental Definition [00:14-00:38] Low-level binary instruction format for stack-based virtual machine Designed as compilation target for high-level languages Enables cli…
  continue reading
 
The End of Moore's Law and the Future of Computing Performance The Automobile Industry Parallel 1960s: Focus on power over efficiency (muscle cars, gas guzzlers) Evolution through Japanese efficiency, turbocharging, to electric vehicles Similar pattern now happening in computing The Python Performance Crisis Matrix multiplication example: 7 hours v…
  continue reading
 
Technical Architecture for Digital Independence Core Concept Smartphones represent a monolithic architecture that needs to be broken down into microservices for better digital independence. Authentication Strategy Hardware security keys (YubiKey) replace mobile authenticators USB-C insertion with button press More convenient than SMS/app-based 2FA …
  continue reading
 
Feynman's Wisdom Applied to AI Learning Background Feynman helped create atomic bomb and investigated Challenger disaster Challenger investigation revealed bureaucracy prioritized power over engineering solutions Two key phrases found on his blackboard at death: "What I cannot create, I do not understand" "Know how to solve every problem that has b…
  continue reading
 
The Rise of Micro-Containers: When Less is More Podcast Episode Notes Opening (0:00 - 0:40) Introduction to micro-containers: containers under 100KB Contrast with typical Python containers (5GB+) Languages enabling micro-containers: Rust, Zig, Go Zig Code Example (0:40 - 1:10) // 16KB HTTP server exampleconst std = @import("std");pub fn main() !voi…
  continue reading
 
Software Development Job Market in 2025: Challenges & Opportunities Market Downturn Analysis Interest Rate Impact Fed rates rose from ~0% to 5%, ending era of "free money" for VCs Job postings dropped to COVID-era levels (index ~60) from 2022 peak (index ~220) High rates reducing startup funding and venture capital activity Monopoly Effects Big tec…
  continue reading
 
# Container Size Optimization in 2025 ## Core Motivation - Container size directly impacts cost efficiency - Python containers can reach 5GB - Sub-1MB containers enable: - Incredible performance - Microservice architecture at scale - Efficient resource utilization ## Container Types Comparison ### Scratch (0MB base) - Empty filesystem - Zero attack…
  continue reading
 
Regulatory Entrepreneurship and Alternative Governance Systems Key Concepts Regulatory Entrepreneurship Companies building businesses that require changing laws to succeed Examples: Uber, Airbnb, Tesla, DraftKings, OpenAI Core strategies: Operating in legal gray areas Growing "too big to ban" Mobilizing users as political force Comparison with Mafi…
  continue reading
 
WebSockets in Rust: From Theory to Implementation Episode Notes for Pragmatic Labs Technical Deep Dive Introduction [00:00-00:45] WebSockets vs HTTP request-response pattern analogy Real-time communication model comparison Rust's zero-cost abstractions and compile-time guarantees SQLite WebSocket demo introduction Rust's WebSocket Advantages [01:05…
  continue reading
 
Corporate America: A Prison Break Guide Key Themes Thoreau's "quiet desperation" frames corporate work as voluntary imprisonment Graeber's 5 BS jobs expose corporate dysfunction: Flunkies (middle managers) Goons (HR, enforcement) Duct-tapers (perpetual problem fixers) Box-tickers (DEI/compliance) Taskmasters (productivity enforcers) Soft Authoritar…
  continue reading
 
Zig's Memory Management Philosophy Explicit and transparent memory management Runtime error detection vs compile-time checks No hidden allocations Must handle allocation errors explicitly using try/defer/ensure Runtime leak detection capability Comparison with C and Rust C Differences Safer than C due to explicit memory handling No "foot guns" or e…
  continue reading
 
AI Propaganda and Market Reality Key Points LLMs are pattern matching systems, not true AI - similar to established clustering and regression techniques Innovation follows non-linear path, contrary to VC expectations VCs require exponential returns - 1/100 investments must generate massive profits Perfect competition emerging in AI market - open so…
  continue reading
 
Podcast Episode Notes: Understanding Zig's Place in Modern Programming Episode Overview Discussion of Zig programming language and its positioning among modern compiled languages like Rust and Go. Key Points Core Value Proposition Modern compiled language with C/C++-level control Focuses on extreme performance optimization and binary size control P…
  continue reading
 
Wage Slavery: The Modern Chains Opening Today we're examining wage slavery through the lens of personal experience and the work of intellectuals like Chomsky and Graeber. We'll explore how modern systems create dependencies that mirror traditional forms of control. Types of Income (Personal Framework) Green Money: Passive income (books, investments…
  continue reading
 
Programming Language Evolution: Data-Driven Analysis of Future Trends Episode Overview Analysis of programming language rankings through the lens of modern requirements, adjusting popularity metrics with quantitative factors including safety features, energy efficiency, and temporal relevance. Key Segments 1. Traditional Rankings Limitations (00:00…
  continue reading
 
Corporate America & VC Startup Scams: System-Level Analysis Episode Overview Critical analysis of systemic failures in corporate America and VC-funded startups. Focus on structural exploitation, control mechanisms, and loss of autonomy. Corporate America: Core System Failures 1. Ultra-Capitalist Firing Culture At-will employment enables arbitrary t…
  continue reading
 
Systems Engineering: Rust vs Python Analysis Core Principle: Delete What You Know Technology requires constant reassessment. Six-month deprecation cycle for skills/tools. Memory Safety Architecture Compile-time memory validation Zero-cost abstractions eliminate GC overhead Production metrics: 30% CPU reduction vs Python services Performance Charact…
  continue reading
 
UN Digital Human Rights Extensions: Key Points Article 3: Right to Life, Liberty, Security Protection from digitally-coordinated violence and mob incitement Safeguards against viral misinformation causing physical harm Emergency protocols for platform-amplified unrest Article 17: Property Rights Prevent monopolistic control of digital property Mand…
  continue reading
 
Food Industry Self-Regulation: A Case Study in Regulatory Economics Key Statistical Evidence Self-Regulation Metrics (2000-Present) 98.7% of food additives introduced through self-regulation 756 novel ingredients added without rigorous safety evidence Demonstrates significant Type II error risk in regulatory framework Regulatory Framework Compariso…
  continue reading
 
Loading …

Quick Reference Guide

Listen to this show while you explore
Play