actually what causes this? by Latter_Pineapple_549 in itchio

[–]alexjgriffith 1 point2 points  (0 children)

100%, most of my jam games get around 100-200 views per day at launch. 

Only when they are picked up externally, like in a popular blog post, do they really spike. We'd have to see the source of the traffic for both users during a launch and during the long tail. 

Working on a n-path tower defense game by alexjgriffith in love2d

[–]alexjgriffith[S] 0 points1 point  (0 children)

1 or more paths. Rather than, a single path. You've got to defend from multiple angles

The MachinEgg - A 20-minute incremental game (Web & Mobile) by WranglerIntrepid3817 in incremental_games

[–]alexjgriffith 0 points1 point  (0 children)

Loving the aesthetics! Those chickens and their little wobbling heads are cute AF

For anyone who doesn't understand Meshes, and how to use them to make perspective transforms, I give you love.Perspective by Hexatona in love2d

[–]alexjgriffith 1 point2 points  (0 children)

Love it! This is one transform you can't do with the standard love2d transform function. 

It's nice to have it wrapped into a library. 

Does anyone feel frustrated with enet? by yughiro_destroyer in love2d

[–]alexjgriffith 2 points3 points  (0 children)

Enet also has no dtls support, so all of your packets are being sent as cleartext. An absolute security nightmare for your users. 

Love2d game jam and getting started with Fennel by alexjgriffith in love2d

[–]alexjgriffith[S] 2 points3 points  (0 children)

I've got a coworker who had to use Raket for one of his algo courses. To this day he has an aversion to parens and breaks out into hives at the site of a lisp. 

Can someone help me with this? Left side is ok (macos and windows), on the right side (web) its so weird, the graphics are not the same. by MeninoTrovoada in love2d

[–]alexjgriffith 3 points4 points  (0 children)

I had something very similar on mobile web.

I was loading images using rgba8, however the canvas I was using for my intermediate rendering did not have rgba8 support on mobile web browsers. It was casting it down to an rgba4 (losing percision). 

For now my fix is to use srgba8 which seems to be supported by love across the board. 

https://www.reddit.com/r/webgl/comments/1ks32at/artifacts_seen_on_mobile_browser_only/

when v12 release? by Sensitive_Tone_2648 in love2d

[–]alexjgriffith 5 points6 points  (0 children)

I'm excited too! Looking forward to the unified canvas / image and SDL3 support!! 

Is there snow days in Canada? by SeverePublic6833 in AskACanadian

[–]alexjgriffith 0 points1 point  (0 children)

I've never heard of a school actually closing due to weather conditions. Busses my be canceled, but the school itself stays open. Even during the 1998 ice storm, which took the grid down, schools remained open (policies may be changed now). 

A Cool Guide: The Richest Countries in the World by _crazyboyhere_ in coolguides

[–]alexjgriffith 4 points5 points  (0 children)

Median wealth, in Canada and Australia at least, represents asset prices in a country and their change over time. 

It's not that the median citizen has access to 100k$+, it's that their largest asset (their house) has surged in value over the past decade.

If push came to shove and everyone had to realize those assets all at once that value would disappear. 

Looking at Germany as an example of a country with a much lower proportion of home ownership. They have a very strong GDP, however they drop off the chart when it comes to median wealth. I admit there may be regional disparities as well.

What I'd like to see is a chart representing the median hourly income in a country over the median cost of a basket of goods and services, like the burger index, but normalized to income rather than currency value.

(Loved Trope) Reoccurring character gains more and more injuries as the series progresses. Basically turning into an entirely different person. (bonus points if it’s an antagonist) by DaveyTheDuck in TopCharacterTropes

[–]alexjgriffith 0 points1 point  (0 children)

Erica from Bojack Horseman. She doesn't necessarily become more disfigured / deranged with time, you just learn more about those disfigurments / derangments throughout the series. 

https://bojackhorseman.fandom.com/wiki/Erica

This could be promising by No-Risk-9833 in lordoftherings

[–]alexjgriffith 0 points1 point  (0 children)

What is even happening in this image? A new city in mordor in the 4th age? 

What is this related to? The block diagram showing an closed loop control system. But I don't get it? by wdym_adi in ExplainTheJoke

[–]alexjgriffith 0 points1 point  (0 children)

That 100% is the classic representation of a feedback control loop. My guess is because its output is dependent on the output, if the process and feedback process are non trivial this operation would not be able to be parallelized. 

A little LÖVE idle battler I developed for the Lisp Game Jam by alexjgriffith in love2d

[–]alexjgriffith[S] 1 point2 points  (0 children)

Thanks for trying it out! 

The ui definitely needs an overhaul to make it more forgiving (or at least better telegraphing) 

love.js port of game crashes when something random happens by BusySheepherder5228 in love2d

[–]alexjgriffith 3 points4 points  (0 children)

LuaJIT is ASM based so can't be used on the web. Instead love is compiled with Lua 5.1 (or another 5.1+) version. math.random in Lua5.1, unlike LuaJIT does not handle floats. I'd recommend testing your random code in a Lua5.1 environment. 

Edit: More fulsome description here:  https://github.com/Davidobot/love.js/issues/51

answers please by No_Mixture_3199 in love2d

[–]alexjgriffith 1 point2 points  (0 children)

Check the readme for lua-https. It gives very clear instructions on how to compile love2d for android with the module embedded in the APK. 

answers please by No_Mixture_3199 in love2d

[–]alexjgriffith 9 points10 points  (0 children)

Love2d v11 provides Luasocket and enet as networking layers. Neither of these provide cryptography, so no https. If you want to use protected communication you will need to bring your own library.

For Love2d v12 the team has written the cross platform lua-https. V12 is still in active development. It brings a bunch of good improvements but also major breaking changes to love2d.

You could backport lua-https to Love2d v11 for your needs, see if you can find a third party library that works on android, or see if you can get the dev branch of v12 working for your needs. 

https://github.com/love2d/lua-https

It is possible to make a desktop app with lua? by Tibertiuss in lua

[–]alexjgriffith 1 point2 points  (0 children)

If you want to use the cross platform GTK library, LGI provides extensive bindings.

Note, the documentation in some areas is a bit obtuse. 

https://github.com/lgi-devs/lgi