[-] Technotica@lemmy.world 23 points 1 day ago

At least Lise Meitner is not forgotten, I currently work in a building on Lise-Meitner Street!

[-] Technotica@lemmy.world 6 points 2 weeks ago

Oh awesome, I think $2.99 is totally acceptable. I might just buy it to run on my c64.

[-] Technotica@lemmy.world 7 points 1 month ago

I use Arch! How dare you say that I am unhappy? I am frothing at my mouth! I am totally happy, can't you see that? CAN'T YOU SEE THAT???

[-] Technotica@lemmy.world 6 points 1 month ago

You think old, pea brained, waddling trump could fake being hit by a bullet and then apply fake blood (or have it applied) while on camera?

[-] Technotica@lemmy.world 9 points 1 month ago* (last edited 1 month ago)

How the heck do they know what people with their names look like?

I mean, sure they will meet some people who share their name, but, unless you have a very very common name you mostly will meet people with other names. And wouldn't your fashion be determined by your in group and social and work culture? Same with your hair, isn't that a trend most people follow? Aka 'Oh undercuts are in, everyone is having them... they look quite nice, I should get one'

or 'Oh mullets are ugly...' but everyone named Karl is sporting one?

[-] Technotica@lemmy.world 11 points 1 month ago

That looks... ugly.

[-] Technotica@lemmy.world 68 points 2 months ago* (last edited 2 months ago)

Stargate isn't a classic? The movie that spawned three tv shows? (It may not be great but it ain't shit! ;) )

[-] Technotica@lemmy.world 17 points 2 months ago

At some point some artist is going to screw with all of us by taking a real photo with a campfire in a tent.

[-] Technotica@lemmy.world 11 points 4 months ago

That sucks! But even with a publisher, surely it would have had trouble in a market where Dwarf Fortress exists? How is it compared to that?

[-] Technotica@lemmy.world 13 points 8 months ago

Thanks Jean!

[-] Technotica@lemmy.world 9 points 11 months ago

Dang, now we know why we live in the worst timeline... No Patrick Stewart Jedi... We could have had Patrick Steward in Star Wars...!!!

11
submitted 1 year ago* (last edited 1 year ago) by Technotica@lemmy.world to c/technology@lemmy.world

I think it would be a great way to give money to the hosters and get something that actually helps the community. Like having the cake and eating it too.

You donate a certain amount and get a sticker or something you can stick to threads like gilding in reddit.

But instead of giving money to an evil corporation you`d give it to the people that actually enable us to have the fediverse.

31
submitted 1 year ago* (last edited 1 year ago) by Technotica@lemmy.world to c/technology@lemmy.world

The corporate web may be dying/reinventing itself. Everyone talks about FOSS and having a user driven experience.

But one thing we don't have is a true FOSS web, a protocol like HTTP that only allows FOSS websites to be hosted and bars any corporate interest from hosting for profit.

Would something like that be possible? A "dark web" but not for illicit schemes but for free and open hosted content?

You go to https://website for your comporate fix and to foss:// for none "open source" content. (Stuff like fediverse, self hosted websites etc.)

You'd have to have a governing body, something like the Free Software Foundation that ensures everyone hosting on the foss-web follows the open source guidelines and goes after violators.

[-] Technotica@lemmy.world 40 points 1 year ago

Thing is, it doesn't have to be ready. It doesn't have to have everyone here, just enough people to form a healthy community.

This is how it was in the olden days and it worked well.

If there is reddit with its gazillion users and the fediverse only has a few million that's enough for me.

Enough to have interesting discussions and learn new things.

And who the f**** really cares about celebrities like Nicki Minaj etc.

I'd rather talk to the most unremarkable person I can find than those manufactured personalities.

6
Vicuna 13B vs 33B (lemmy.world)
submitted 1 year ago* (last edited 1 year ago) by Technotica@lemmy.world to c/machinelearning@lemmy.ml

Hi! I posted this over at lemmy.world in the technology sublemmy, but I thought maybe some knowledgeable people here could answer the question easier.

Oh and I know it's not really designed to give out functioning code, but it does look good enough I thought I'd ask.

I have both Vicuna-13B and the preview version of Vicuna-33B running on my desktop and asked both a simple coding question from another user:

"What can I use to draw curved text in an SVG?"

I got these two answers, I am not really a code but, while the code looks like it could work, I don't think it is correct?

Can someone here tell me if either answer is correct or more correct than the other?

Thanks!

33B:

.....

User: How are you doing today?

Vicky: Today, I'm doing well, thank you for asking! How about you?

User: I am doing great! what can I use to draw curved text in an SVG?

Vicky: To draw curved text in an SVG, you can use the element. This allows you to wrap text along a path defined by an SVG path or elliptical arc. First, create the path using the 'path' or 'ellipse' element, then use the element to wrap the text along the path. Here's an example:

+++

html
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" viewBox="0 0 800 600">
  <path id="curve" d="M200,200 Q400,200 400,400" fill="none" stroke="black" stroke-width="2"/>
  <text text-anchor="middle" dominant-baseline="central" x="300" y="300" text-path="url(#curve)">
    The quick brown fox jumps over the lazy dog
  </text>
</svg>

+++

In this example, a quadratic curve is defined using the 'Q' command in the 'path' element, and the text is wrapped along the curve using the element with the 'url(#curve)' attribute. You can adjust the 'd' attribute of the path and the text's position to create different curves with the text. .....

13B:

.....

User: what can I use to draw curved text in an SVG?

Vicky: In SVG, you can use the "textPath" element to create curved text. You can also use the "text" element and position it using "transform" attributes to achieve the same effect.

User:Can you give me a code example for that?

Vicky: Sure! Here's an example using the "textPath" element:

+++

php
<svg width="100" height="100">
  <text xlink:href="#text1" y="50" text-anchor="middle" font-size="20">
    This text has a curved path.
  </text>
  <rect x="50" y="50" width="30" height="10" fill="#000" />
  <text xlink:href="#text2" x="70" y="50" text-anchor="middle" font-size="20">
    This text has a curved path.
  </text>
</svg>

+++

And here's an example using the "text" element:

+++

php
<svg width="100" height="100">
  <text xlink:href="#text1" y="50" text-anchor="middle" font-size="20">
    This text has a curved path.
  </text>
  <rect x="50" y="50" width="30" height="10" fill="#000" />
  <text x="70" y="50" text-anchor="middle" font-size="20">
    This text has a curved path.
  </text>
</svg>

+++

*Note that you'll need to define the curved path for each text element using an SVG path string. In this case, the path strings are #text1 and #text2.

To use the same path for multiple text elements, you can define the path once and then reference it using the xlink:href attribute. The text-anchor attribute determines the point of the text element where the path is anchored.*

.....

(no idea why Lemmy doesn't italicize that last text part)

13B-Vicky gave more code, no idea which code example is better. 13B runs much faster than 33B, it would be really interesting to know if either or both example codes are valid and if 13B, despite being the simpler model gave a correct answer. 33B is a preview model not the final version.

What I am noticing is that neither has actually used the textPath element, though 33B used text-path, no idea if that exists.

p.s. by offloading 41 of the 63 layers to gpu 33B runs as fast as 13B without offloading but with CUDA on my machine. Very interesting.

3

Thought about a meme, made this pic. Didn't work out. Someone got one that could fit?

134
submitted 1 year ago* (last edited 1 year ago) by Technotica@lemmy.world to c/memes@lemmy.ml
0
Unlimited power!!! (lemmy.world)
submitted 1 year ago* (last edited 1 year ago) by Technotica@lemmy.world to c/starwarsmemes@lemmy.world

I hope I am doing this right!

view more: next ›

Technotica

joined 1 year ago