#AHMED #IDRIS
semantic-search.aepiot.com/advanced-sea...
#ANTÔNIO #CONSELHEIRO
advanced-search.aepiot.com/advanced-sea...
allgraph.ro
#ABUBAKAR #BONNI #IDRIS
aepiot.ro/advanced-sea...
#PETRONELLA #BARKER #ACTRESS #BORN 1942
aepiot.ro/advanced-sea...
#JAMSHID #ESHAGHI
multi-search-tag-explorer.allgraph.ro/advanced-sea...
aepiot.ro
#NAIM #MOKTAR
headlines-world.com/advanced-sea...
#TUNKU #IDRIS #ISKANDAR
advanced-search.aepiot.ro/advanced-sea...
allgraph.ro
RE: hachyderm.io/@BoydStephenSmithJr/1162...
Anyone out there with some opinions on both @codeberg and @gitlab particularly for developing #Haskell, #Idris, #Lean, or #Agda ? If you can,, please address my concerns in the quoted toot.
@scoopit | Jean Zay, le plus puissant supercalculateur de France.
🤝 #IDRIS #CNRSIdFSud
www.forumlabo.fr/fr/community/f8944d20-f2...
Okay, I'm declaring my #idris library https://gitlab.com/bss03/type-aligned done. I don't have any issues/tasks remaining. `pack-db` should automatically pick up the latest commit during the next update, within 24 hours.
I'm still open for all kinds of feedback, but until I get some, I think […]
Best Idris kit?
🚀 Torpedoes or ⚡ Exodus laser?
Which loadout are you choosing and why? Sound off below.
Wanna get your own? Visit our store!
theimpound.com
#StarCitizen #Idris #SpaceCombat
Worked through the first round of issues for #idris type-aligned, but I came up with a couple more today: https://gitlab.com/bss03/type-aligned/-/issues
As usual, any feedback is appreciated.
Ugh. I just SUCKED in a online 80 minute coding assessment for a new job.
I tried to do part of it in Haskell, which was a bad idea because they really wanted you to use an *array* algorithm, so the *list* solution I put forth just did not scale. (I needed a bit of a sliding window; the list […]
If anyone want to help out an #Idris project with some relatively small tasks, I finally took the time to organize my thoughts into some relatively stand-alone issues for my current library project: https://gitlab.com/bss03/type-aligned/-/issues
Might be a good chance to practice reading and […]
This week's @cassidoo.co challenge: find the majority element in an array. I'm using #idris for this one..
codingkata.tardate.com/idris/majori...
Taking a quick look at #idris 2 - a language designed for type-driven development.
codingkata.tardate.com/idris/about/
Damson Idris at the 32nd annual Actor Awards. #ActorAwards #Damson #Idris #fyp
📸: getty
New #idris problem. I'm trying to use the `--dumpcases` option documented idris2.readthedocs.io/en/latest/reference/debu... and implemented around github.com/idris-lang/Idris2/blob/m... but (a) no file is created and (b) I don't […]
I guess I need to join the #Idris mailing list. I have something I think of as a "bug", but is arguably a feature request so I should at least ping the list to see what they think before opening a bug.
The docs say: "To help with resolution, the arguments of an implementation must be […]
Help. #Idris is refusing to find one of my definitions again, and I don't understand:
```
$ pack build && ( cd test && pack build )
[ info ] Found local config at /path/type-aligned/pack.toml
[ info ] Using package collection nightly-260227
[ info ] Building: type-aligned
[ info ] Found local […]
And here's his (arguably) better half, Idris "Karate Croc" Cruz. His hard life has made him quite the cocky prick, but he's got the skills to back it up. When he's not crashing dojos, he's writing rap songs or working DJ gigs.
🎨 @gemsterarts.bsky.social
#OCArt #Idris
I'm sure maintaining the pack-db for #idris is a thankless job, so I don't want to _bother_ any of the people doing it...
BUT, I'm wondering how to make sure the tests in my package(s) run as part of checking the package collection. The test package is mentioned in the pack.toml so that `pack […]
Any #idris developers out there using https://github.com/shogochiai/idris2-coverage ?
I'd like to get coverage based on my tests BUT I also want the tests to be in a separate package. So, I'm not quite sure how to organize my repo / call this tool. Maybe I can just point it at the test package […]
I want to be your next #FediHire !
I've been a programmer since 1985 (as a child), I've been an IT professional since 1995 (pulling wires and swapping cards and configuring MS Windows). I graduated from University of Arkansas Fayetteville with a BS in CS in December of 2003. A full resume is […]
I spent a few hours with #lean last night, and even on neovim the UX is pretty slick.
I got stuck on an issue where my #idris code for nested recursion gets stuck on the lack of cumulativity, but I learned about ULift and PLift this morning, so maybe I can fix things when I revisit.
Overall, I […]
I'd really appreciate any feedback you can give on https://gitlab.com/bss03/type-aligned/ -- stylistic, organizational, correctness, limitations, or just questions I might need to answer in the docs (API or other).
It's supposed to be like id #Haskell […]
I've been doing a bunch of #idris lately, but I really should learn some #lean.
One feature that Idris has for writing executables is erasure -- you can "guarantee" a value won't exist at runtime by erasing (all of) the bindings. The UX is definitely not perfect, but there are some relatively […]
Is it worth opening an issue for an #idris compiler error like:
`Error: INTERNAL ERROR: Can't happen, can't find type of Type_aligned.Multiple.Show implementation at Type_aligned:107:5--113:43`
The code that triggered it is clearly bad, passing the wrong number of arguments to `Show`. So, I'm […]
bsky.app/profile/did:...
better-experience.blogspot.com/2026/01/the-...
#COGNITIVE #REMEDIATION #THERAPY
headlines-world.com/advanced-sea...
#AHMED #IDRIS #WASE
aepiot.ro/advanced-sea...
#NEPAL #POLICE #CLUB
headlines-world.com/advanced-sea...
aepiot.ro
better-experience.blogspot.com/2026/02/aepi...
#SPEEDING #TIME
aepiot.com/advanced-sea...
#AHMED #IDRIS #WASE
aepiot.ro/advanced-sea...
#JOSEPH #LANZA
multi-search-tag-explorer.aepiot.com/advanced-sea...
aepiot.ro
In the #idris stdlib, Control.Relation.Closure.TransClosure.(::) captures the intermediate index/element as a relevant, but implicit argument.
My approach gitlab.com/bss03/type-aligned/-/blo... erases the indexes/elements.
The definitions of […]
#idris experts, is there a reasonable way to write a single `Show` implementation for a type like:
```idris
public export
data Sum : (0 p, q : a -> a -> Type) -> a -> a -> Type where
Left : {0 p : a -> a -> Type} -> p x y -> Sum p q x y
Right : {0 q : a -> a -> Type} -> q x y -> Sum p q x y
``` […]
QQ: Is it a good sign or a bad sign when they type of one of your hole doesn't fit on (one screen of) your terminal?
#idris
#Idris erasure experts why does this work:
```
0 Equal0 : (0 x : a) -> (0 y : b) -> Type
Equal0 x y = Equal x y
```
But, I can't pass `Equal` into a `(0 p : (0 x, y : a) -> Type)` parameter to a function/type?
In general, I'm not sure when I should be aggressive about erasing parameters (or […]