demesisx

joined 1 year ago
MODERATOR OF
[–] demesisx@infosec.pub 2 points 6 minutes ago* (last edited 3 minutes ago)

Go ahead. Block me. What discussion?

You said that election fraud is a feature not a bug.

You literally asserted that. That was the base point of ALL of your “discussion”….oh and the stupid point about making people who don’t vote have to hold the office themselves. Sounded like something Ted Nugent might suggest.

I don’t like Fascists that are happy about the corrupt state of the country I have to live in. I don’t consider people who actively fight FOR my worst interest to be friends.

[–] demesisx@infosec.pub 2 points 14 minutes ago (2 children)

The Democrats, with their supposedly undemocratic super-delegates, are at this point America's only genuine political party. It's not a bug that the DNC leadership can assert a direction as you suggest, it's a feature.

You literally said these things. Stop trolling.

[–] demesisx@infosec.pub 2 points 23 minutes ago* (last edited 23 minutes ago) (4 children)

These aren’t arguments. They’re facts.

You’re the one that is loudly cheering for election fraud and calling it “too democratic”.

Telling me (a leftist that watched both parties get taken over by corporatists/fascists BECAUSE the DNC literally stepped in to artificially subvert the will of the voters in 2016, which allowed Trump to win easily) that the crimes that they committed were “too democratic” is enough to stoke the fires of rage against you for the rest of my life.

fascism

[–] demesisx@infosec.pub 13 points 44 minutes ago (6 children)

This person is such a fascist that they’re pretending anti-democratic cheating is a “feature of democracy”.

[–] demesisx@infosec.pub 11 points 47 minutes ago

They’re both sham parties you strangely disingenuous fascist

The internal setup of the two parties is that

THEY ARE PRIVATE ORGANIZATIONS THAT ARE NOT SUBJECT TO FEDERAL ELECTION LAWS AND THEREFORE THEIR PRIMARIES ARE ACTUALLY LITERALLY ANTI-DEMOCRATIC SHAMS THAT PRETEND TO BE UNBIASED WHILE ADMITTING TO BEING BIASED IN LEGAL PROCEEDINGS WHERE THEIR INTEGRITY WAS CALLED INTO QUESTION.

[–] demesisx@infosec.pub 10 points 1 hour ago

Some of us are being dragged kicking and screaming into fascism. Some of us refuse to vote for the perpetuators of a genocide and therefore have no voice. Some of us will be fired from our jobs (or banned from various communities across the web including Lemmy) for speaking up about the genocide.

[–] demesisx@infosec.pub 15 points 1 hour ago (2 children)

You’re not mentioning the biggest reason for this: First Past the Post. first past the post

We have two corrupt parties in the US. A literal sham of a democracy. The UK has FPTP too and it shows. They’ll lose NHS pretty soon because of it.

[–] demesisx@infosec.pub 11 points 1 hour ago

I’m actually a programmer. There are ways to compensate us that doesn’t force people to pay rent for our work.

[–] demesisx@infosec.pub 75 points 16 hours ago (15 children)

Vote with your wallet. Boycott rent seeking companies that lock away their IP and charge money for access to it.

For example, FOR ADOBE TO DESERVE MY MONEY EVERY MONTH, 100% OF THEIR TECHNOLOGIES SHOULD BE OPEN SOURCE.

The only rent I happily pay for is a good VPN.

 

This presentation was recorded at YOW! 2016. #GOTOcon #YOW https://yowcon.com

Rob Howard - Software Engineer at Ambiata ‪@damncabbage‬

RESOURCES https://x.com/damncabbage https://chaos.social/@buzzyrobin https://github.com/damncabbage / buzzyrobin
https://rhoward.id.au

Links http://robhoward.id.au/talks/2016/04/... https://github.com/damncabbage/ylj16-... https://github.com/damncabbage/puresc... https://www.purescript.org

ABSTRACT This talk and workshop/jam will introduce you to PureScript, a strongly-typed, Haskell-inspired programming language that compiles to JavaScript. These sessions will focus on building a small game in incremental steps, from simple functions to a web-based app, giving you a chance to try out features and libraries along the way. You should leave the session with a grasp of PureScript fundamentals, and a self-sufficiency to tackle your own projects and experiments.

RECOMMENDED BOOKS Phil Freeman • PureScript by Example • https://leanpub.com/purescript Christopher Allen & Julie Moronuki • Haskell Programming • https://lorepub.com/product/haskellbook Edsger W. Dijkstra • A Discipline of Programming • https://amzn.to/3JlwHV6 Rebecca Skinner • Effective Haskell • https://amzn.to/3SxTpwY Uberto Barbini • From Objects to Functions • https://amzn.to/4cMDOmH

[–] demesisx@infosec.pub 21 points 1 day ago

It is. The machine learning algorithm has maxed out its parameters because Elon decided to get rid of redundancy. The machine learning algorithm had to invent new algorithms to do what redundancy would have easily done in far fewer lines of code. They are out of compute power BECAUSE they decided to cheap out and removed redundancy.

 

I stumbled onto this episode after fantasizing about just such a technology where we could take all of the positives of the Beam and bring them to the amazing OCamL compiler. This guy Leandro is incredibly clever and articulate. I loved his use of the word “free range” to describe a technology later in this podcast. A super interesting episode!

Leandro reminds me of myself (though I’m obviously not quite as bright), getting interested in bleeding edge, space age languages like Idris then dialing back the type astronautiness to more breathable air to achieve things in the real world with languages like OCamL. Enjoy! Hopefully some of you smart people can help push #RIOT forward. It seems like a great idea without peer in the tech world.

 

cross-posted from: https://lemmy.world/post/20776659

A quick, naive AI generated Purescript translation (quickly generated that probably doesn’t work but will help get me started later)


module Main where

import Prelude
import Effect (Effect)
import Effect.Aff (launchAff_)
import Effect.Aff.Timer (setInterval)
import Effect.DOM (window)
import Web.HTML (document)
import Web.HTML.Document (getElementById)
import Web.HTML.Element (Element, toElement)
import Web.HTML.HTMLCanvasElement (getContext2D, getCanvasElementById)
import Web.HTML.Canvas.Image (newImage, getWidth, getHeight, setSrc)
import Web.HTML.Canvas.CanvasRenderingContext2D (CanvasRenderingContext2D, drawImage)
import Web.HTML.Types (CanvasElement, Image)
import Web.DOM.Node.Types (Node)

foreign import requestAnimationFrame :: (Effect Unit -> Effect Unit) -> Effect Unit

-- Loads the image and begins the animation
startAnimation :: Effect Unit
startAnimation = do
  img <- newImage
  setSrc img "example1.jpg"
  canvas <- getCanvasElementById "myCanvas"
  context <- getContext2D canvas

  -- We defer animation start until the image is loaded
  imgOnLoad img (beginAnimation context img)

-- Sets the image `onload` handler, safely deferring canvas drawing until the image is ready
imgOnLoad :: Image -> Effect Unit -> Effect Unit
imgOnLoad img action = do
  foreignOnload img action

foreign import foreignOnload :: Image -> Effect Unit -> Effect Unit

-- Initializes the animation loop
beginAnimation :: CanvasRenderingContext2D -> Image -> Effect Unit
beginAnimation context img = do
  imageWidth <- getWidth img
  imageHeight <- getHeight img
  let row = imageHeight
  requestAnimationFrame (animate context img row imageWidth imageHeight)

-- Animates drawing row by row
animate :: CanvasRenderingContext2D -> Image -> Int -> Int -> Int -> Effect Unit
animate context img row imageWidth imageHeight = do
  drawImage context img 0 row imageWidth 1 0 0 imageWidth row
  let nextRow = if row > 0 then row - 1 else imageHeight
  requestAnimationFrame (animate context img nextRow imageWidth imageHeight)

main :: Effect Unit
main = do
  startAnimation

 

cross-posted from: https://beehaw.org/post/16413694

Appropriate levels of physical activity, sedentary behaviour and sleep (collectively termed movement behaviours) are essential for the healthy growth and development of preschool-aged children.

This was the impetus for creating the Canadian 24-Hour Movement Guidelines for the Early Years (birth to four years). Likewise, this is why the World Health Organization adopted the Canadian guidelines when creating the global guidelines on physical activity, sedentary behaviour and sleep for children under five years of age.

Considering the extensive benefits of movement behaviours, it is very alarming that a recent study found that only 14 per cent of preschoolers around the world are meeting movement behaviour guideline recommendations.

 

cross-posted from: https://beehaw.org/post/16402193

2024-10-05 by GIMP Team

This is a short development update on our progress towards the first release candidate for GIMP 3.0. We recently reached the string freeze milestone. What this means is that there will be no more changes in user-facing text (like GUI labels and messages) so that translators can work on the final translations for the 3.0 release.

 

King Gizzard & the Lizard Wizard - Polygondwanaland (Full Album) @kinggizzard @flightlessrecords @desertmossrecords https://kinggizzard.bandcamp.com/albu...

00:00 - Crumbling Castle 10:46 - Polygondwanaland 14:16 - The Castle In The Air 17:00 - Deserted Dunes Welcome Weary Feet 20:38 - Inner Cell 24:35 - Loyalty 28:13 - Horology 31:06 - Tetrachromacy 34:36 - Searching... 37:40 - The Fourth Colour

Purchase: https://opensea.io/collection/kgatlwp...


King Gizzard & the Lizard Wizard are an Australian rock band formed in 2010 in Melbourne, Victoria. The band consists of Stu Mackenzie (vocals, guitar, bass, keyboards, flute), Ambrose Kenny-Smith (vocals, harmonica, keyboards), Cook Craig (guitar, bass, keyboards, vocals), Joey Walker (guitar, bass, keyboards, vocals), Lucas Harwood (bass, keyboards), and Michael "Cavs" Cavanagh (drums, percussion). They are known for exploring multiple genres, staging energetic live shows and building a prolific discography, having released sixteen studio albums, two EPs, two compilations and seven live albums.

Michael Cavanagh – drums (tracks 1-10), percussion (tracks 1, 2, 3, 8, 10), glass marimba (track 1)

Cook Craig – electric guitar (tracks 1, 8, 10), synthesizers (tracks 9, 10)

Ambrose Kenny-Smith – harmonica (tracks 1, 3, 8, 10), vocals (tracks 8, 10)

Stu Mackenzie – vocals (all tracks), electric guitar (tracks 1, 2, 4, 7, 8, 10), bass guitar (tracks 1, 3-7, 9), acoustic guitar (tracks 2, 4, 8-10), synthesizers (all tracks), flute (tracks 1-3, 5-8), glass marimba (track 1), mellotron (tracks 2, 4), percussion (track 9)

Eric Moore – management (all tracks)

Lucas Skinner – bass guitar (track 10), synthesizer (track 7)

Joey Walker – electric guitar (tracks 1, 3, 5-7, 10), acoustic guitar (tracks 3, 5), bass guitar (tracks 1, 2, 4, 8), synthesizers (tracks 5-7, 9, 10), vocals (tracks 1-8, 10), percussion (tracks 1-3, 5, 7, 8, 10)

Additional musicians- Leah Senior – spoken word (track 3) #kinggizzardandthelizardwizard #flightlessrecords #recordlabel

 
 

cross-posted from: https://infosec.pub/post/18350400

Join Daniel Ribar, TK Princewill (Community Managers), and the rest of the community for TownHall 177

Tune in to live zoom event to participate in the call: https://bit.ly/3rCicSR

More info below. 👇👇👇

Too busy to watch it all?

📝 Skip over presentation slides: https://bit.ly/4eJlKdh

What's Project Catalyst? The largest decentralized innovation fund in the world now totalling almost 65,000 participants working together. You can join them today!

📣 Announcements only: https://t.me/cardanocatalyst 📧 Subscribe to the mailing list: https://bit.ly/3dSZJvx

🎥 Rewatch past town-halls: https://bit.ly/2UxT9Uv 💡 Browse insights, ideas, and proposals: http://cardano.ideascale.com 💬 Join main Telegram group: https://t.me/ProjectCatalystChat

🏟 Go deeper with Catalyst Discord: / discord
🤓 Become Community Advisor/Mentor: https://t.me/CatalystCommunityAdvisors 👩‍🔬 Join Proposal Owners: https://t.me/catalystproposers 🐝 Catalyst Swarm & Sessions: / discord

🐛 Help find bugs & test: https://t.me/catalystdryruns ⚙️ Get lost in data: https://bit.ly/ProjectCatalystDashboard 🎉 See all funded proposals at glance: https://bit.ly/3wiBHjP

 

Join Daniel Ribar, TK Princewill (Community Managers), and the rest of the community for TownHall 177

Tune in to live zoom event to participate in the call: https://bit.ly/3rCicSR

More info below. 👇👇👇

Too busy to watch it all?

📝 Skip over presentation slides: https://bit.ly/4eJlKdh

What's Project Catalyst? The largest decentralized innovation fund in the world now totalling almost 65,000 participants working together. You can join them today!

📣 Announcements only: https://t.me/cardanocatalyst 📧 Subscribe to the mailing list: https://bit.ly/3dSZJvx

🎥 Rewatch past town-halls: https://bit.ly/2UxT9Uv 💡 Browse insights, ideas, and proposals: http://cardano.ideascale.com 💬 Join main Telegram group: https://t.me/ProjectCatalystChat

🏟 Go deeper with Catalyst Discord: / discord
🤓 Become Community Advisor/Mentor: https://t.me/CatalystCommunityAdvisors 👩‍🔬 Join Proposal Owners: https://t.me/catalystproposers 🐝 Catalyst Swarm & Sessions: / discord

🐛 Help find bugs & test: https://t.me/catalystdryruns ⚙️ Get lost in data: https://bit.ly/ProjectCatalystDashboard 🎉 See all funded proposals at glance: https://bit.ly/3wiBHjP

 

This video demonstrates a quick way to have something nice running with purescript (react + tailwind css + shadcn/ui components)

Repository: https://github.com/Zelenya/purescript-shadcn-tailwind-copypaste

Check out my course "How to think like a functio programmer": https://impurepics.thi.

#fp #functionalprogramming #purescript

view more: next ›