home.social

Search

50 results for “ultramagnetic”

  1. Ultramagnetic MCs played #SanFrancisco a few days ago. Did anyone get a chance to see it?

    Kool Keith's solo shows can be hit or miss, but I love that the #UltramagneticMCs are performing again.#HipHop

  2. From Ultramagnetic MC’s Critical Beatdown LP This is me covering Traveling at the Speed of Thought using my own guitar riff, yo! Bumblebee the lemon beagle is my no.1 fan and is never far. Ha! January 2025 #ultramagneticmcs #hiphop #coversongs #cedgee #koolkeith #twyg #dafizz #indieload

  3. From Ultramagnetic MC’s Critical Beatdown LP This is me covering Traveling at the Speed of Thought using my own guitar riff, yo! Bumblebee the lemon beagle is my no.1 fan and is never far. Ha! January 2025 #ultramagneticmcs #hiphop #coversongs #cedgee #koolkeith #twyg #dafizz #indieload

  4. From Ultramagnetic MC’s Critical Beatdown LP This is me covering Traveling at the Speed of Thought using my own guitar riff, yo! Bumblebee the lemon beagle is my no.1 fan and is never far. Ha! January 2025 #ultramagneticmcs #hiphop #coversongs #cedgee #koolkeith #twyg #dafizz #indieload

  5. From Ultramagnetic MC’s Critical Beatdown LP This is me covering Traveling at the Speed of Thought using my own guitar riff, yo! Bumblebee the lemon beagle is my no.1 fan and is never far. Ha! January 2025 #ultramagneticmcs #hiphop #coversongs #cedgee #koolkeith #twyg #dafizz #indieload

  6. From Ultramagnetic MC’s Critical Beatdown LP This is me covering Traveling at the Speed of Thought using my own guitar riff, yo! Bumblebee the lemon beagle is my no.1 fan and is never far. Ha! January 2025 #ultramagneticmcs #hiphop #coversongs #cedgee #koolkeith #twyg #dafizz #indieload

  7. Kool Keith is still spinning up new artist accounts with the same name on Bandcamp. I saw 5 #KoolKeith accounts on BC with over 70 different albums released in the last 20 years! That's not even counting major releases like Dr Octagon or Ultramagnetic MCs.

    Though #DrOctagon is "dead", Keith is still releasing concept albums under various characters like Black Elvis, Dr. Dooom, Alvin Kelly, Mr Controller, & The Preacher. Wikipedia says he's released music under 58 different monikers as of 2012.

  8. Classic UK Garage tune today: Hyper Funk - DJ Antonio 👊

    youtube.com/watch?v=iQUkD1fTVPs

    The drought of those drums... And that 1:45 drop wooo 🔥

    Killer vocal sampled from the Ultramagnetic MC's :

    youtube.com/watch?v=TFKLANwD4Mg

    #UKG #HouseNation #OldSkool #champaign #music #sampling

  9. #Java EffectHandlers without the boilerplate?

    In Higher-Kinded-J 0.4.1 — you define the what, the tooling generates the how.

    You write this:

    @EffectAlgebra
    public sealed interface PaymentGatewayOp<A>
    permits Authorise, Charge, Refund { ... }

    It generates five classes:
    ✦ Kind marker + Witness — HKT plumbing
    ✦ KindHelper — safe widen/narrow conversions
    ✦ Functor — auto-detects your mapK method
    ✦ Ops + Bound — smart constructors for building programs
    ✦ Interpreter skeleton — abstract class with exhaustive switch

    Composing multiple effects?

    @ComposeEffects
    public record AppEffects(
    Class<GatewayOp<?>> gateway,
    Class<FraudOp<?>> fraud,
    Class<LedgerOp<?>> ledger) {}

    This generates Inject factories, a composed Functor, a BoundSet, and an interpret() bridge. All type-safe. All compile-time checked.

    You define records. You write interpreters. The processor handles everything in between.

    👉 higher-kinded-j.github.io/late

    #Java #DOP #FP #OpenSource #FunctionalProgramming

  10. Higher-Kinded-J 0.4.2 ships EffectBoundary: write your Spring business logic once, interpret it three ways.

    🏭 Production: boundary.runIO(program) → real IO, actuator metrics, HTTP response
    🧪 Tests: TestBoundary.of(stub).run(program) → Id monad, no Spring, ms-fast, no mocks
    📋 Audit: swap in a WriterT interpreter for structured logging

    Same OrderService. Same program. Different interpreter at the edge.

    👉 higher-kinded-j.github.io/late

    #Java #SpringBoot #Spring #FP

  11. 🚀 New Selective support in latest #higher-kinded-j release🚀
    Bringing the power of conditional effects to #Java
    * Either<E, *> - EitherSelective
    * Maybe - MaybeSelective
    * Optional - OptionalSelective
    * List - ListSelective
    * IO - IOSelective
    * Reader<R, *> - ReaderSelective
    * Id - IdSelective
    * Validated<E, *> - ValidatedSelective
    Find out more: higher-kinded-j.github.io/func

  12. 🚀 New Profuctor support in #higher-kinded-j🚀
    Functional programming meets Java with powerful new features:
    ✨ Protofunctors - Transform both inputs & outputs of your functions with dimap, lmap, rmap
    🔍 Protofunctor enhanced Optics - Lens, Prism, Traversal & Iso for immutable data manipulation
    🎯 Type-Safe HKTs - Functor, Applicative, Monad patterns that actually work in Java

    Perfect for developers wanting functional patterns without leaving the JVM ecosystem!
    Check out the docs, with loads of examples to get you started!
    Try it: higher-kinded-j.github.io/func
    #Java #FP #FunctionalProgramming #Optics #Protofunctor #HigherKinded

  13. Using new Optics support in #higher-kinded-j is easy, just add a simple annotation to automatically generate Lenses, Prisms, and Isomorphisms then compose lenses for incredibly readable, deep updates:

    // Create a "shortcut" lens by composing others
    var userToStreetName = UserLenses.address()
    .andThen(AddressLenses.street())
    .andThen(StreetLenses.name());

    // Perform the deep update in a single line
    User updatedUser = userToStreetName.set("New Street", user);

    You can perform effectful operations (failable, async, stateful). The library is also fully extensible, allowing you to define custom Traversal instances for any data structure.

    Check out the docs, with loads of examples to get you started!
    higher-kinded-j.github.io/

    #Java #FunctionalProgramming #JavaDev #FP #Optics #HigherKindedTypes

  14. Power up your functional programming in Java! 🚀
    The new Optics support in #higher-kinded-j is here, built directly on our powerful Higher-Kinded Types simulation. This brings a new level of abstraction and power to your code, not just cleaner data access.

    Add a simple annotation, and get automatically generated Lenses, Prisms, Isomorphisms and Traversals.

    🔧 Why it's a game-changer:

    - Built on HKT: Unlocks powerful, abstract, and effectful operations.
    - Zero-Boilerplate: Annotation-based generation of powerful tools.
    - Extensible & Composable: A flexible foundation for your data manipulation needs.

    Check out the docs, with loads of examples to get you started!
    higher-kinded-j.github.io/

    #Java #FunctionalProgramming #JavaDev #FP #Optics #HigherKindedTypes

  15. Writing functional Java just got a whole lot cleaner. ✨
    The new For-Comprehension builder in #higher-kinded-j helps de-sugar complex monadic chains into a simple, sequential script.
    It brings the elegance of Scala to your functional Java projects.
    Compose sequences of monadic operations (like flatMap and map) in a highly readable, linear style.
    Key Features:
    ➡️ from(…): A generator that extracts a value from a monadic context (flatMap).
    ➡️ let(…): Binds the result of a pure computation to a new variable (map).
    ➡️ when(…): Filters results, short-circuiting with the monad's "zero" element (for MonadZero types like List or Maybe).
    ➡️ yield(…): Concludes the comprehension, producing the final monadic value.
    It's especially powerful for taming complex structures like monad transformers (StateT, EitherT).
    Come see how it works! Any feedback is welcome. [higher-kinded-j.github.io/for_]
    #Java #FunctionalProgramming #FP #Monad #HKT #Library #OpenSource #HKJ

  16. Learn how to use the State monad and IO monad in #Java with higher-kinded types by building a playable Draughts game with the new #higher-kinded-j functional library. #fp #functional #monad #hkj higher-kinded-j.github.io/drau

  17. garciat.com/posts/java-type-cl This is excellent. Really interesting post with lots pearls to digest. I had been thinking a lot about similar things around embedded kind system for checking bounds. #java #hkt #fp

  18. There is also #SpringSecurity integration and #Actuator integration examples on the website. Really interested to hear feedback from #Spring developers.

  19. There is also integration and integration examples on the website. Really interested to hear feedback from developers.