Pepin, our Probabilistic Approximate Volume Counter


URL: https://www.msoos.org/2023/09/pepin-our-probabilistic-approximate-volume-counter/ Let’s say you are allowed to have cubes in a 3-dimensional space that happens to be binary. In this space, x1, x2, and x3 are the axis, and for example the cube x1=0 is a cube that happens to have 4 points in it: 000, 001, 010, and 011. So far, so good. Now, let’s say we need to calculate the total volume of two cubes in this space.…
Read more ⟶

Computer Scientists Invent an Efficient New Way to Count | Quanta Magazine


URL: https://www.quantamagazine.org/computer-scientists-invent-an-efficient-new-way-to-count-20240516/ Imagine that you’re sent to a pristine rainforest to carry out a wildlife census. Every time you see an animal, you snap a photo. Your digital camera will track the total number of shots, but you’re only interested in the number of unique animals — all the ones that you haven’t counted already. What’s the best way to get that number? “The obvious solution requires remembering every animal you’ve seen so far and comparing each new animal to the list,” said Lance Fortnow, a computer scientist at the Illinois Institute of Technology.…
Read more ⟶

Did MIT hold back AI for decades?


URL: https://blog.paulbohm.com/p/did-mit-hold-back-ai-for-decades?utm_source=profile&utm_medium=reader2 Symbolic AI and Connectionism are two contrasting approaches to artificial intelligence (AI), both aiming to recreate human intelligence through distinct methods. Symbolic AI, also known as “Good Old-Fashioned AI” (GOFAI), focuses on the development of rule-based systems that manipulate symbols and apply logical reasoning to solve problems. These systems are designed to imitate human thought processes by utilizing symbolic representations and formal logic, which are believed to underlie human cognition.…
Read more ⟶

Using Cuelang With Go for LLM Data Extraction


URL: https://cybernetist.com/2024/05/13/using-cuelang-with-go-for-llm-data-extraction/ I have been aware of Cuelang (CUE) pretty much since the early stages of its development. It always seemed to me the language had the potential to solve a lot of problems in the ocean of YAML which we found ourselves drowning in the Cloud Native ecosystem. CUE excels in validating data against strictly defined schemas and is equally capable of generating code for data models from them. These are wonderful features, though I hadn’t found the perfect application for them in any of the projects I had been working on.…
Read more ⟶

Symmetrization, Mirroring and External Reality: An ‘Inner’ Perspective | European Review | Cambridge Core


URL: https://www.cambridge.org/core/journals/european-review/article/symmetrization-mirroring-and-external-reality-an-inner-perspective/0E5A78E93B6C1DAC6A90BBC3D1AB35F0 Alighieri, D (1979) La Divina Commedia: Inferno. Florence: Le Monnier. Google Scholar Andrews-Hanna, JR (2012) The brain’s default network and its adaptive role in mentation. The Neuroscientist 18, 251–270, https://doi.org/0.1177/1073858411403316. CrossRef Google Scholar PubMed Benedetti, G (1980) Alienazione e Personazione nella Psicoterapia della Malattia Mentale. Turin: Giulio Einaudi. Google Scholar Battilotti, G (2014a) Symmetry vs. duality in logic: an interpretation of bi-logic to model cognitive processes beyond inference. International Journal of Cognitive Informatics and Natural Intelligence 8, 83–97, https://doi.…
Read more ⟶

The Revenge of the Home Page


URL: https://www.newyorker.com/culture/infinite-scroll/the-revenge-of-the-home-page Infinite Scroll The Revenge of the Home Page As social networks become less reliable distributors of the news, consumers of digital journalism are seeking out an older form of online real estate. By Kyle Chayka May 1, 2024 Illustration by Nicholas Konrad / The New Yorker Save this storySave this story Save this storySave this story Nilay Patel, the editor-in-chief of the digital technology publication The Verge, has lately taken to describing theverge.…
Read more ⟶

Andrej Plenković pred izazovima desnog radikalizma - Velike Priče


URL: https://velikeprice.com/politika/andrej-plenkovic-pred-izazovima-desnog-radikalizma/ Punih osam godina, otkako je postao premijer Hrvatske 2016. godine, Andrej Plenković je sprečavao prodor radikalne desnice u vlast. Isto je činio i sa svojom partijom, Hrvatskom demokratskom zajednicom (HDZ), nakon što je naslijedio Tomislava Karamarka, čovjeka poznatog po izjavi „nikad više u ponižavajućoj koaliciji sa SDSS-om“ (Samostalnom demokratskom srpskom strankom, koju vodi Milorad Pupovac). Karamarko je smatrao da je Hrvatska, nakon što je završila pregovore o pristupanju Europskoj uniji, spremna za – od desnice dugo odgađan i priželjkivan – obračun sa svim onim što su vidjeli kao politiku koju im je nametnula Europska unija.…
Read more ⟶

Eurosong i sumrak europske civilizacije - Index.hr


URL: https://www.index.hr/magazin/clanak/eurosong-i-sumrak-europske-civilizacije/2564740.aspx GODINA je 1998. Europskim ulicama, osim prostora bivše Jugoslavije koje se oporavljaju od rata, teče med i mlijeko. Žitelji Starog kontinenta, posebno zapadnog dijela, imaju život iz snova. Koliko si uložio u znanje i obrazovanje, toliko ti se vrati. Doktori, inženjeri, arhitekti, svi bez problema mogu kupiti nekretninu. Oni koji nisu imali sreće u životu također ne trebaju očajavati. Socijalni programi država su jaki, brinu se za nemoćne članove društva.…
Read more ⟶

Smrt ormaru, sloboda LGBT narodu! - Portal Novosti


URL: https://www.portalnovosti.com/smrt-ormaru-sloboda-lgbt-narodu Bauk kruži Hrvatskom – bauk autanja. Sile heteropatrijarhalne Hrvatske sjedinile su se u obrani svetinje ormara, sve političke stranke i liberalni medijski establišment, Željka Markić i Nina Čolović, pravobraniteljica za ravnopravnost spolova i kolaboracionisti heteropatrijarhata iz većine LGBT organizacija. Njihov je cilj orkestriranim napadima i uskraćivanjem prava na javnost neistomišljenicima fingirati konsenzus o neupitnosti ormara uvijek i svugdje, bez obzira na to što je ormar heteropatrijarhalno nasilje nad slobodom i dostojanstvom LGBT ljudi.…
Read more ⟶

Post by jjude, @jjude@cpn.jjude.com


URL: https://cpn.jjude.com/@jjude/statuses/01HXBY7JZEQ8S8N34EMX1ESF3K How to use #duckdb with #golang DuckDB has golang sdk and it is easy to integrate both. Here is the code. DuckDB’s golang SDK follows the same database/sql interface, so using duckdb with golang is as easy as using sqlite. import ( "database/sql" _ "github.com/marcboeker/go-duckdb" ) var db *sql.DB func initDB() error { var err error // if you don't specify a db name, it will be a in-memory db db, err = sql.…
Read more ⟶

U teorije zavjere naviše vjeruju birači Mosta i DP-a, a najmanje Možemo - Portal Novosti


URL: https://portalnovosti.com/u-teorije-zavjere-navise-vjeruju-biraci-mosta-i-dp-a-a-najmanje-mozemo Organizacija Jadranski opservatorij za digitalne medije (ADMO) predstavila je u ponedjeljak u Zagrebu rezultate istraživanja pod naslovom „Tko vjeruje u teorije zavjere i za koga oni glasaju na izborima?“ ADMO je regionalni multidisciplinarni centar za borbu protiv dezinformacija, čiji su članovi u Hrvatskoj Gong, Sveučilište u Dubrovniku, te Filozofski fakultet (FFZG), Fakultet političkih znanosti (FPZG) i Fakultet elektrotehnike i računarstva u Zagrebu. Predstavljeno anketno istraživanje provedeno je u dva navrata ove godine, na uzorku od 924 osobe stare između 18 i 65 godina koje su korisnice interneta.…
Read more ⟶

Why Full Text Search is Hard


URL: https://transactional.blog/blog/2023-why-full-text-search-is-hard ↤ S3-Compatible Cloud Storage Costs ↑ Blog ↑ dbdiag: ophistory ↦ It’s easy to find documents containing “large” and “elephant”. It’s hard to find documents in German which have “large” and “elephant” together in a sentence, or words with similar meanings to large, and provide only the 10 most relevant documents. Full text search comprises three things: Tokenizing Searching Ranking And the sense that full-text search should be easy often stems from fixating on the middle part of “What’s so hard about implementing an inverted index?…
Read more ⟶