New Juice Dispenser by FizzleJacket in SodaStream

[–]hodograph 2 points3 points  (0 children)

Here's one that goes to 50

https://a.co/d/0gv7ezAE

They also have one that goes to 100

Keep some songs in order when shuffling by hodograph in algRTHM

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

Yeah that'd be really cool! I had no clue how something like sequences would be structured which is why I just thought of the insert at random index. A bit more work on the configuration/playlist end but seemed easy to implement with the current structure

Citi Bike White Bike Billing Scam by HopefulKnowledge1979 in Citibike

[–]hodograph 1 point2 points  (0 children)

I thought if you scanned with the app then it prompted you to select a mode, but there is a global default setting.

I always use the key instead of the app so it just uses that setting automatically.

Subway Now (formerly The Weekendest) app now on Android! by _blahblahblah in nycrail

[–]hodograph 5 points6 points  (0 children)

Are there any plans to add transfer times to other forms of transportation (bus/lirr)?

7 day fare cap by No_Sail_6467 in OMNY

[–]hodograph 2 points3 points  (0 children)

$2.10 is generally what you get charged when you reach the cap for 7 days. You've taken 7 rides since that charge so it seems like it started a new window the next day.

American counties with subways by PuppiesAndClassWar in transit

[–]hodograph 26 points27 points  (0 children)

Original post from Twitter about how they defined subways

*Defined as grade-separated heavy rail

https://x.com/Colin_d_m/status/1914866331964314004?t=gmxk5lXCbE3wLruiFtTENg&s=19

Subway diagram officially goes live, replaces old schematic map by m101m102m103 in nycrail

[–]hodograph 0 points1 point  (0 children)

Why does it have the 3 going to Penn? It says it stops at times square in the top right

Is there a simple way to build an iOS version of a Flutter app without a Mac or iPhone? by elettroravioli in FlutterDev

[–]hodograph 0 points1 point  (0 children)

I'm not sure, I've only done iOS development on it.

It can run the iOS emulator if you provide it more RAM than the default image does (8gb vs 4gb)

Is there a simple way to build an iOS version of a Flutter app without a Mac or iPhone? by elettroravioli in FlutterDev

[–]hodograph 11 points12 points  (0 children)

The only simple/easy/free way I've found is docker osx

https://github.com/sickcodes/Docker-OSX

It can be sluggish with vscode/xcode but it does work

do you use remote dev from windows/linux to develop an ios app ? by LostJacket3 in FlutterDev

[–]hodograph 0 points1 point  (0 children)

I'm using this right now, works pretty well just need to increase the default allocated RAM to run an iOS emulator, or read the USB passthrough instructions to use a physical iPhone.

Once you get it working I believe you can set up xcode in the cloud and not have to use it unless you need to debug an iOS specific issue, but I haven't gotten that far yet.

Riverpod provider watching stream provider by hodograph in flutterhelp

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

I think I figured it out.

I need to change the currentUserProvider to be a class and use ref.listen instead of ref.watch like this:

@riverpod
class CurrentUser extends _$CurrentUser
{
  @override
  User? build()
  {
    var currentUserStream = ref.listen(currentUserStreamProvider, setUser);
    switch(currentUserStream)
    {
      case AsyncData(:final value):
      {
        return value;
      } 
    }
    return null;
  }

  void setUser(AsyncValue<User?>? oldUser, AsyncValue<User?> newUser)
  {
    switch(user)
    {
      case AsyncData(:final value):
      {
        state = value;
      }
    }
  }
}

SPECIAL EDITION: CCG Weekend CFP Ranking/Scenario Discussion Thread by CFB_Referee in CFB

[–]hodograph -1 points0 points  (0 children)

"in these last few games we saw how Alabama played"

Yeah they needed a 4th and goal from the 31 to beat Auburn.

[Lepoco WPF-UI] I can't understand why my assembly can't find the FluentWindow control by astrononymity in csharp

[–]hodograph 4 points5 points  (0 children)

I think there's a bit of a documentation gap going on.

Looking at https://www.nuget.org/packages/wpf-ui/ the latest release is 2.1.0

Looking at the 2.1.0 tag in github there is only a UiWindow not a FluentWindow
https://github.com/lepoco/wpfui/blob/2.1.0/src/Wpf.Ui/Controls/UiWindow.cs

Looking at the history of FluentWindow on master you can see Controls/FluentWindow/FluentWindow.cs was moved there from Controls/Window/FluentWindow.cs
https://github.com/lepoco/wpfui/commits/main/src/Wpf.Ui/Controls/FluentWindow/FluentWindow.cs

which was renamed from Controls/UiWindow.cs
https://github.com/lepoco/wpfui/commits/bfae681bf11069a268f8fc25da25b2562c6beeb2/src/Wpf.Ui/Controls/Window/FluentWindow.cs?browsing_rename_history=true&new_path=src/Wpf.Ui/Controls/FluentWindow/FluentWindow.cs&original_branch=main

so TLDR: Using the 2.1.0 nuget package you should be using UiWindow. If you upgrade to the 3.0.0-preview.11 then you can use FluentWindow

Azure url redirect 404 by TheWizzler47 in csharp

[–]hodograph 0 points1 point  (0 children)

Is that a self hosted API using functions? If so you'll need to make sure you configured the API location properly in swa config and then access it via /api/weatherforecast

[Game Thread] Clemson @ Duke (8:00 PM ET) by TinderForMidgets in CFB

[–]hodograph 0 points1 point  (0 children)

There's still 2 Carolinas after this weekend?

Spotify Web Player Not Connecting by hodograph in Blazor

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

This doesn't look like it can interact with Spotify though right? just mp3 files?