26
13
27
7
28
3
submitted 21 minutes ago by btaf45@lemmy.world to c/usa@lemmy.ml
29
125
Homosectional (lemmy.world)
30
45

“The implication here is that any code committed to a public repository may be accessible forever as long as there is at least one fork of that repository,” the report’s authors claim.

Am I dumb or is this exactly the purpose of forks? I feel like I'm missing something.

31
10
submitted 1 hour ago by FenrirIII@lemmy.world to c/news@lemmy.world
32
24
submitted 1 hour ago by ZenkorSoraz@lemmy.ml to c/asklemmy@lemmy.ml

Has it grown like people have kept predicting? or is this peak lemmy? Did Peak Lemmy already happen?

33
6
submitted 59 minutes ago by nanoUFO@sh.itjust.works to c/games@sh.itjust.works
34
5
submitted 27 minutes ago by jeffw@lemmy.world to c/news@lemmy.world
35
4
submitted 40 minutes ago by jeffw@lemmy.world to c/climate@slrpnk.net
36
1
submitted 1 minute ago by jeffw@lemmy.world to c/politics@lemmy.world
37
1
submitted 9 seconds ago by jeffw@lemmy.world to c/news@lemmy.world
38
24
39
2

Rear Window is a 1954 American mystery horror film directed by Alfred Hitchcock and written by John Michael Hayes based on Cornell Woolrich's 1942 short story It Had to Be Murder.

The film stars James Stewart, Grace Kelly, Wendell Corey, Thelma Ritter, and Raymond Burr.

https://en.wikipedia.org/wiki/Rear_Window

40
1
submitted 6 minutes ago by irreticent@lemmy.world to c/aww@lemmy.world
41
3
submitted 5 minutes ago by irreticent@lemmy.world to c/cat@lemmy.world
42
1
submitted 7 minutes ago by jeffw@lemmy.world to c/climate@slrpnk.net
43
1
Hilary Duff (lemmynsfw.com)
44
1

I created Bril, the Big Red Intermediate Language, to support the class's implementation projects. Bril isn't very interesting from a compiler engineering perspective, but I think it's pretty good for the specific use case of teaching compilers classes. Here's a factorial program:

@main(input: int) {
  res: int = call @fact input;
  print res;
}

@fact(n: int): int {
  one: int = const 1;
  cond: bool = le n one;
  br cond .then .else;
.then:
  ret one;
.else:
  decr: int = sub n one;
  rec: int = call @fact decr;
  prod: int = mul n rec;
  ret prod;
}

Bril is the only compiler IL I know of that is specifically designed for education. Focusing on teaching means that Bril prioritizes these goals:

  • It is fast to get started working with the IL.
  • It is easy to mix and match components that work with the IL, including things that fellow students write.
  • The semantics are simple, without too many distractions.
  • The syntax is ruthlessly regular.

Bril is different from other ILs because it prioritizes those goals above other, more typical ones: code size, compiler speed, and performance of the generated code.

Aside from that inversion of priorities, Bril looks a lot like any other modern compiler IL. It's an instruction-based, assembly-like, typed, ANF language. There's a quote from why the lucky stiff where he introduces Camping, the original web microframework, as "a little white blood cell in the vein of Rails." If LLVM is an entire circulatory system, Bril is a single blood cell.

Reference

GitHub

45
1
submitted 12 minutes ago by pe1uca@lemmy.pe1uca.dev to c/google@lemmy.world

cross-posted from: https://lemmy.pe1uca.dev/post/1434359

I was trying to debug an issue I have connecting to a NAS, so I was checking the logs of UFW and found out there are a lot of connections being blocked from my chromecast HD (AndroidTV) on different ports via the local IP.

Sometimes I use jellyfin, but that's over tailscale, so there shouldn't be any traffic over local IP, just over tailscale's IP.
But shouldn't have traffic right now since I wasn't using it and didn't have tailscale on.

The ports seem random, just sometimes they are tried two times back to back, but afterwards another random port is tried to be accessed.

After seeing this I enabled UFW in my daily machine and the same type of logs showed up.

So, do you guys know what could be happening here?
Why is chromecast trying to access random ports on devices in the same network?

46
3
submitted 8 minutes ago by PanArab@lemmy.ml to c/palestine@lemmy.ml
47
9
submitted 1 hour ago* (last edited 1 hour ago) by jimmydoreisalefty@lemmy.world to c/workreform@lemmy.world

Edit2: added direct link to article; added introduction of article, as a quote below

The union representing workers at the Apple store in Towson said it reached a contract agreement with the tech giant on Friday, calling it a first-of-its-kind deal, “historic” that gives its members “a voice in their futures.”

48
2
submitted 5 minutes ago by pooh@hexbear.net to c/chapotraphouse@hexbear.net
49
4
submitted 13 minutes ago by jeffw@lemmy.world to c/news@lemmy.world
50
97
submitted 2 hours ago by jeffw@lemmy.world to c/news@lemmy.world
view more: ‹ prev next ›

monyet.cc

2,255 readers
9 users here now

Welcome to monyet.cc!

This site is geared towards Malaysians, but is not restricted to Malaysians or Malaysian topics. All are welcome!

Signing up is easy. No email address needed!

Rules

1)Be Nice

Just get along and respect each other and we'll be fine.

2)No Bigotry

Malaysia is a multiracial country and sometime we tend to rub shoulder with each other, sometime stuff getting heated up. Argument is fine, disagreement is fine, as long as it stay civil and no one get banned. Bigotry include but not exclusive to: Racism, Sexism, Homophobia, Transphobia, Xenophobia, and so on.

3)No Porn

Do not post, share, or distribute any pornographic material, either here or posting to other instance using account made from here. NSFW discussion(in words only) is allowed, and should be marked as NSFW.

4)No Ads & Spam

Do not spam this Instance with irrelevant shitpost or ads. If your intention of creating an account or community is to flood this place or another instance with shitpost, rage bait, or content for the purpose of cyberbullying, then it break this rule, and will be banned without warning.

All the rule above also extend to the username, community name, banner, and avatar. Your action that breach above rule on another instance will count toward violation as well.

Need Help?

Alternative UI

founded 1 year ago
ADMINS