Romantic messages for your wife can range from simple expressions of love to deeper sentiments about your life together. Some examples include: “I love you more than words can say,” “Every day with you is a wonderful addition to my life,” or “You are the queen of my heart.” You can also focus on specific qualities you admire, like her smile, her kindness, or her intelligence. “Dear wife, You are the strongest person I know, and I admire your accomplishments so much.” Romantic ...| DailyFunnyQuote
I remember a conversation I had with a friend when I was first starting out. We were brainstorming ideas, talking about how we’d love to build a product that changed the world — and maybe one day reach that elusive unicorn status. It felt like a pipe dream at the time, but it also sparked […] The post Want your startup to become a unicorn? Experts say these 4 pillars will help you get there appeared first on KillerStartups.| KillerStartups
Scroll through TikTok and you’ll find a thousand tutorials on how to “monetize your downtime.” Drive a few rides before work, flip furniture on Facebook Marketplace, drop-ship dog sweaters at lunch — easy money, right? Yet when researchers at MarketWatch crunched real gig-platform data, they found the median side hustler clears only about $250 a […] The post Side hustles are quietly making millennials poorer—here’s the hidden math nobody talks about appeared first on KillerStart...| KillerStartups
A lot has happened this month, especially with the releases of new flagship models like GPT-4.5 and Llama 4. But you might have noticed that reactions to the...| Sebastian Raschka, PhD
A deep dive into DeepSeek’s Multi-Head Latent Attention, including the mathematics and implementation details. The layer is recreated in Julia using Flux.jl.| liorsinai.github.io
Peak memory consumption is a common bottleneck when training deep learning models such as vision transformers and LLMs. This article provides a series of tec...| Sebastian Raschka, PhD
Explaining what it is like to be autistic to non-autistic people can be difficult. To quote Dawn Prince-Hughes (Cultural Autism Studies at Yale), being autistic is like “being human without the skin”. This can be difficult for non-autistic people to understand. Seeing and feeling the blank looks and Double Empathy Problem (Milton, 2012) at a […]| Autistic Realms
“Quantumness tends to prosper in very cold systems that are carefully isolated rather than part of a tepid soup awash with other activity.” (Lewton, T. 2024) This may be a weird take, but … I think we could use the idea of quantumness and reframe it around an interpretation of marginalised groups living on the edges of […]| Autistic Realms
I believe that the DEEP (Double Empathy Extreme Problem) is at the heart of all the systemic ableist issues we have in our education, social and healthcare systems. The lack of an embodied presence and connection between people being together as humans is causing harm. It is leaving marginalised people further on the edges and […]| Autistic Realms
Neuroqueering in Liminal Spaces “By silencing our bodyminds, they (neurotypical society) have halted the growth of a chaotic self. We are no longer able to move fluidly through our experience, instead frozen like ice on an arctic tundra” (Gray-Hammond, 2023) David Gray-Hammond (Emergent Divergence) and I are responding to each other’s blogs to help expand the […]| Autistic Realms
“The growing cracks in the thin veneer of our “civilised” economic and social operating model are impossible to ignore”, Jorn Bettin (2021). The double empathy problem (Milton, 2012) creates a gap of disconnect experienced between people due to misunderstood shared lived experiences. It is “a breakdown in reciprocity and mutual understanding that can happen between people […]| Autistic Realms
Deep, meaningful, and thought-provoking quotes that inspire different perspectives and introspection. Inspirational Deep Thoughts Think Different – The majority of individuals are mired in th…| LittleNivi.Com
A series on automatic differentiation in Julia. Part 5 shows how the MicroGrad.jl code can be used for a machine learning framework like Flux.jl. The working...| liorsinai.github.io
A series on automatic differentiation in Julia. Part 4 extends part 3 to handle maps, getfield and anonymous functions. It creates a generic gradient descent...| liorsinai.github.io
A series on automatic differentiation in Julia. Part 3 uses metaprogramming based on IRTools.jl to generate a modified (primal) forward pass and to reverse d...| liorsinai.github.io
A series on automatic differentiation in Julia. Part 2 uses metaprogramming to generate a modified (primal) forward pass and to reverse differentiate it into...| liorsinai.github.io
A series on automatic differentiation in Julia. Part 1 provides an overview and defines explicit chain rules.| liorsinai.github.io
A transformer for generating text in Julia, trained on Shakespeare’s plays. This model can be used as a Generative Pre-trained Transformer (GPT) with further...| liorsinai.github.io
Mike Farah’s yq yaml processor has a a rich set of operators and functions for advanced usage. In this article, I will illustrate how to update deeply nested elements in yaml. This can be done for both known paths as well as arbitrarily deep paths. Sample yaml We will use the following yaml files to ... yq: updating deeply nested elements| Fabian Lee : Software Engineer
If you have a simple directory containing multiple template files that should be generated on a target host, the ‘with_fileglob‘ lookup plugin provides an easy way to render them. Below is an example rendering all the files from the ‘templates’ directory of a role. - name: create file out of every file in template directory ... Ansible: generating templates with deep directory structure using with_filetree| fabianlee.org
Today, the PyTorch Team has finally announced M1 GPU support, and I was excited to try it. Here is what I found.| Sebastian Raschka, PhD
In this article, we are going to understand how self-attention works from scratch. This means we will code it ourselves one step at a time. Since its introdu...| Sebastian Raschka, PhD