Searching We.Love.Privacy.Club

Twts matching #1:
Sort by: Newest, Oldest, Most Relevant

RT by @mind_booster: so went and dig around to find out that Portugal is investing 77m in AI, from EU funds - that’s settled then - but it goes to 1 consortium of an AI company based in the States and to 1 other company. both of them are proud of their investors and investments
so went and dig around to find out that Portugal is investing 77m in AI, from EU funds - that’s settled then - but it goes to 1 consortium of an AI company based in the States and to 1 other company. both of them are proud of their investors a … ⌘ Read more

⤋ Read More

QOA Benchmark Results and File Format Specification
The specification for the Quite OK Audio Format,
announced in a previous blog post,
is now finalized. QOA is a lossy audio compression format. Typical audio
signals (44100hz, stereo) are encoded into 278 kbits/s, or more precisely 3.2
bits per sample – exactly 1/5 of the bits needed for an uncompressed WAV.

Image

The QOA-Specification [fits on a single … ⌘ Read more

⤋ Read More

**RT by @mind_booster: 1/3 🚨Recent @POLITICOEurope leak revealed that US & EU officials have agreed to cooperate on measures to turn public opinion against #encryption.

Experts’ statements by @edri & @globalencrypt have called out against this plan

➡️https://edri.org/our-work/eu-us-plan-offensive-to-legitimise-police-access-to-data-civil-society-responds-amid-growing-fears-press-release/
➡️https://www.globalencryption.org/2023/04/statement-on-eu-us-cooperation-against-encryption/**
1/3 🚨Recent [@POLITICOEurope](https … ⌘ Read more

⤋ Read More

@prologic@twtxt.net @carsten@yarn.zn80.net

(1) You go to the store and buy a microwave pizza. You go home, put it in the microwave, heat it up. Maybe it’s not quite the way you like it, so you put some red pepper on it, maybe some oregano.

Are you a pizza chef? No. Do we know what your cooking is like? Also no.

(2) You create a prompt for StableDiffusion to make a picture of an elephant. What pops out isn’t quite to your liking. You adjust the prompt, tweak it a bunch, till the elephant looks pretty cool.

Are you an artist? No. Do we know what your art is like? Also no.

The elephant is “fake art” in a similar sense to how a microwave pizza is “fake pizza”. That’s what I meant by that word. The microwave pizza is a sort of “simulation of pizza”, in this sense. The generated elephant picture is a simulation of art, in a similar sense, though it’s even worse than that and is probably more of a simulacrum of art since you can’t “consume” an AI-generated image the way you “consume” art.

⤋ Read More

On LinkedIn I see a lot of posts aimed at software developers along the lines of “If you’re not using these AI tools (X,Y,Z) you’re going to be left behind.”

Two things about that:

  1. No you’re not. If you have good soft skills (good communication, show up on time, general time management) then you’re already in excellent shape. No AI can do that stuff, and for that alone no AI can replace people
  2. This rhetoric is coming directly from the billionaires who are laying off tech people by the 100s of thousands as part of the class war they’ve been conducting against all working people since the 1940s. They want you to believe that you have to scramble and claw over one another to learn the “AI” that they’re forcing onto the world, so that you stop honing the skills that matter (see #1) and are easier to obsolete later. Don’t fall for it. It’s far from clear how this will shake out once governments get off their asses and start regulating this stuff, by the way–most of these “AI” tools are blatantly breaking copyright and other IP laws, and some day that’ll catch up with them.

That said, it is helpful to know thy enemy.

⤋ Read More

**RT by @mind_booster: Há 2 semanas, a Universidade Lusíada do Porto realizou um debate sobre #VotoEletrónico

Opiniões dos intervenientes: 🧶
1/
https://www.porto.pt/pt/noticia/voto-eletronico-e-uma-inevitabilidade-mas-tem-muito-caminho-para-andar**
Há 2 semanas, a Universidade Lusíada do Porto realizou um debate sobre #VotoEletrónico

Opiniões dos intervenientes: 🧶

1/

[porto.pt/pt/noticia/voto-ele…](https://www.porto.pt/pt/noticia/voto-eletronico-e-uma-inevitab … ⌘ Read more

⤋ Read More

Building GitHub with Ruby and Rails
Since the beginning, GitHub.com has been a Ruby on Rails monolith. Today, the application is nearly two million lines of code and more than 1,000 engineers collaborate on it daily. We deploy as often as 20 times a day, and nearly every week one of those deploys is a Rails upgrade. Upgrading Rails weekly Every […] ⌘ Read more

⤋ Read More

RT by @mind_booster: Two ‘discourses of climate delay’ which are super prevalent right now
1⃣ “The solution is nuclear”. The Swiss Govt is pushing this one, via Energy, Climate & Transport Minister Rösti (also a fossil fuel lobbyist and climate denier) & lobby groups are advertising with billboards.

Two ‘discourses of climate delay’ which are super prevalent right now

1⃣ “The solution is nuclear”. The Swiss Govt is pushing this one, via Energy, Climate & Transport Minister Rösti (also a fossil fuel lobbyi … ⌘ Read more

⤋ Read More

So. Some bits.

i := fIndex(xs, 5.6)

Can also be

i := Index(xs, 5.6)

The compiler can infer the type automatically. Looks like you mention that later.

Also the infer is super smart.. You can define functions that take functions with generic types in the arguments. This can be useful for a generic value mapper for a repository

func Map[U,V any](rows []U, fn func(U) V) []V {
  out := make([]V, len(rows))
  for i := range rows { out = fn(rows[i]) }
  return out
}


rows := []int{1,2,3}
out := Map(rows, func(v int) uint64 { return uint64(v) })

I am pretty sure the type parameters goes the other way with the type name first and constraint second.

func Foo[comparable T](xs T, s T) int

Should be


func Foo[T comparable](xs T, s T) int

⤋ Read More

RT by @mind_booster: A tarde hoje vai ser ocupada com actividades práticas, vamos ter 1 hackthon; e oficinas de @wikipedia, @wikidata, @commons, cujo tema será JAZZ, em jeito de homenagem a José Duarte que faleceu esta semana. #rádioportuguesa #jazz #ameninadança href=”https://we.loveprivacy.club/search?q=%235minutosdejazz”>#5minutosdejazz**
A tarde hoje vai ser ocupada com actividades práticas, vamos ter 1 hackthon; e oficinas de @wikipedia, @wikidata, [@commons](https://nitter.net/Com … ⌘ Read more

⤋ Read More

CodeQL zero to hero part 1: the fundamentals of static analysis for vulnerability research
Learn more about static analysis and how to use it for security research!
In this blog post series, we will take a closer look at static analysis concepts, present GitHub’s static analysis tool CodeQL, and teach you how to leverage static analysis for security research by writing custom CodeQL queries. ⌘ Read more

⤋ Read More