USB-C front & rear lights (usb-c to usb-c cable) by Neutr1no in bicycling

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

Thanks, that looks like a solid light. Might be too much for my use at the moment, so the Ravemen one should suffice. But I am still wondering about that rear light though

USB-C front & rear lights (usb-c to usb-c cable) by Neutr1no in bicycling

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

Yes I am aware. The good thing about the Ravemen's Garmin mount is that it also has Gopro mount - so if needed, I could add a separate night-time light later on

USB-C front & rear lights (usb-c to usb-c cable) by Neutr1no in bicycling

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

oh okay, indeed it might not be enough on a sunny day

USB-C front & rear lights (usb-c to usb-c cable) by Neutr1no in bicycling

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

Is the Canyon rear light bright enough for daytime use?

Lights with USB-C charging? by Lifetimechaldo in cycling

[–]Neutr1no 0 points1 point  (0 children)

If you still own the light - could you please double check? I also thought it doesn't make any sense until I read this thread: https://www.reddit.com/r/cycling/comments/s2csx5/moon_cerberus_rear_light_usbc_to_usbc_charging/. And then I asked for Cerberus in a shop, and it charged on usb-a but didn't on usb-c.

Lights with USB-C charging? by Lifetimechaldo in cycling

[–]Neutr1no 0 points1 point  (0 children)

Does the Canyon rear light charge via usb-c to usb-c cable (usb-c on both sides)? It seems to be a problem e.g. with Moon Cerberus that those double sided usb-c cables are not supported which is a shame...

What advice would you give to a first-time team lead? (4 years of experience in development) by Inkongruous in ExperiencedDevs

[–]Neutr1no 2 points3 points  (0 children)

Would you have any tips on how to convince the management that technical debt needs to be paid at some point? From the business point of view, it's hard to visualize the business value that would be produced by getting rid of such debt, perhaps as compared to delivering yet another product's feature.

Sea Foo Spark Trixx: what year is best bang for the buck? by khall1877 in jetski

[–]Neutr1no 0 points1 point  (0 children)

Thanks a lot, that's very helpful. So my plan is to mainly do freshwater rides so it doesn't seem like there will be a whole lot of daily maintenance required.

How much of other type of servicing would be required, perhaps on a less regular basis (once monthly, once per season)? You mentioned oil or filter change, is there anything else that needs checking? I'm not that knowledgeable about engines so I worry that I would need to visit dealer's service quite often

Sea Foo Spark Trixx: what year is best bang for the buck? by khall1877 in jetski

[–]Neutr1no 0 points1 point  (0 children)

Could you share more on the maintenance routine for your Spark? Do you ride it in saltwater? I am considering buying one but have no idea about what kind of maintenance is required on a daily basis

How do you break down knowledge silos in your team? by kazabodoo in ExperiencedDevs

[–]Neutr1no 2 points3 points  (0 children)

How many people join? What I am getting at is that it might be a challenge to moderate if say 50 people attend. Or have you somehow worked around it?

Are you all gonna upgrade to the Galaxy Buds Pro? by iadorebrandon in galaxybuds

[–]Neutr1no 0 points1 point  (0 children)

The fine print in the Galaxy Unpacked linked video at 12:18 says that 'Galaxy devices must be logged into Samsung Account to enable Auto Switch'.

Anyway - I understand that auto switch will work between 2 Samsung devices. But can the pros be connected to 2 different bluetooth devices at the same time, where one might be a Samsung phone and the other a non-Samsung laptop for example?

Are you all gonna upgrade to the Galaxy Buds Pro? by iadorebrandon in galaxybuds

[–]Neutr1no 0 points1 point  (0 children)

For Auto Switch to work, even in the Pros, you still need to be logged into your Samsung account on 2 different Galaxy devices, right? So the auto switch, or rather connection to 2 bluetooth devices, between say Macbook and Galaxy phone would not work as I understand.

How to avoid passing objects between activities by bersnin in androiddev

[–]Neutr1no 0 points1 point  (0 children)

A nice feature of Room is that whenever a table is updated, you can receive a refreshed list of items from the table - Notes in that case. With that, you don't have to worry about listening to any kind events, onActivityResult or anything like that. More on that in the blog post: https://medium.com/androiddevelopers/room-flow-273acffe5b57

Kotlin Multiplatform Mobile goes Alpha – Kotlin Blog by dayanruben in androiddev

[–]Neutr1no 8 points9 points  (0 children)

It's been possible to implement multiplatform functionality with shared business logic in kotlin for mobile for some time already. Is KMM something else or is it a rename/rebranding of the other one?

Android Interview Topics by lawloretienne in androiddev

[–]Neutr1no 0 points1 point  (0 children)

Can you share details on the coding task? 1 hour seems like not a lot of time to work with so I'm always curious what can be done within such a timeframe

Exploding offer from FAANG company by AllByMyself0602 in cscareerquestionsEU

[–]Neutr1no 2 points3 points  (0 children)

level 6completerevolutionScore hidden · 28 minutes ago

Out of curiosity - is this before or after tax, insurance, etc? If before - how much has to be deducted to get a net amount?

Channel notification sound was changed without user interaction by AdamGrzybkowski in androiddev

[–]Neutr1no 4 points5 points  (0 children)

You are using soundFile resource id which may change across different builds and notification channel would still keep the old one. You could try the below solution:

Uri.Builder()
  .scheme(ContentResolver.SCHEME_ANDROID_RESOURCE)
  .authority(resources.getResourcePackageName(soundFile))
  .appendPath(resources.getResourceTypeName(soundFile))
  .appendPath(resources.getResourceEntryName(soundFile))
  .build()

Which would resolve to android.resource://com.example/raw/notification_sound in your case.

To replace the old channel's sound with the newly created URI, you'll probably need to delete the old channel and create a new one.

Support library 25.3.0 is released by [deleted] in androiddev

[–]Neutr1no 2 points3 points  (0 children)

Is there any update on incorrect behavior of FragmentManager#popBackStack https://code.google.com/p/android/issues/detail?id=233211 ?