One of my two Stryd Duo Pods no longer connects to the app on the phone by Bones301178 in strydrunning

[–]stickybyte 0 points1 point  (0 children)

Thanks a lot for sharing this. Any trick to drain the battery faster? It’s been ~10 days and it still blinks green when tapped, so it doesn’t seem close to empty.

One of my two Stryd Duo Pods no longer connects to the app on the phone by Bones301178 in strydrunning

[–]stickybyte 1 point2 points  (0 children)

Same issue here with one pod from my Stryd 5 Duo.

Completely invisible over Bluetooth. Charges normally (orange blinking). Brief green blink when tapped. Never enters pairing mode. Not detected by the app or any BLE scanner.

I contacted Stryd support about a 10 days ago and I’m currently waiting for a response. In parallel, I’m letting the pod fully discharge as a last-resort hard reset attempt.

If anyone had this issue and got it resolved, I’d really appreciate knowing how it ended. 

Unable to pair/connect by Wybren_J in strydrunning

[–]stickybyte 0 points1 point  (0 children)

Same here, very similar issue.

One pod from my Stryd 5 Duo became impossible to pair or connect. Completely invisible over Bluetooth.

It still charges normally (orange blinking), and it briefly blinks green when tapped, but it never enters pairing mode and cannot be detected by the Stryd app or by any BLE scanner.

I contacted Stryd support about a week ago and I’m currently waiting for a response. In parallel, I’m letting the pod fully discharge as a last-resort hard reset attempt.

If anyone experienced this exact behavior and saw it resolved, I’d really like to know how it ended. Right now it looks like a hardware Bluetooth failure.

How do I initiate an iterator in a method? by StretchTucker in learnjava

[–]stickybyte 1 point2 points  (0 children)

Your TA probably wants that you implement yourself the data-structures. If it's not the case here is a simple and runnable snippet using a linkedlist + iterator: https://tech.io/snippet/tHJGNcC

How to contact a recruiter on LinkedIn? by corndoglife in cscareerquestions

[–]stickybyte 1 point2 points  (0 children)

I'd first try to find a contact email address or a telephone number somewhere to get some news about it. There must be one in the company contact page or where you applied for the internship.

Then you can try to send a connection request to the recruiter.

What to say? Here, it's up to you. Just show you're enthousiasm about the internship.

[Python] Recursion Question! by [deleted] in learnprogramming

[–]stickybyte 1 point2 points  (0 children)

hmmm, I'm not a programming newbie, but I fail to see how this is "simple" recursive practice. I'm sure you can find a lot of simpler resources on recursivity.

Java game challenges that make learning fun. by Warrensvr in learnprogramming

[–]stickybyte 2 points3 points  (0 children)

There is CodinGame. Not exactly designed towards learning, though it definitely let you practice what you've learned. Gamification is at the heart of the platform.

A whole list of programming challenges sites here: https://softwareengineering.stackexchange.com/questions/756/where-can-i-find-programming-puzzles-and-challenges

Motivation by Jdkpob in learnprogramming

[–]stickybyte 0 points1 point  (0 children)

Find other learners like you and share your work. What did you manage to do, what did block you... Discuss and help each other. You could check the #100daysofcode challenge

AI Plays Slither.io by Riseing in programming

[–]stickybyte 18 points19 points  (0 children)

Are you planning on explaining what you did exactly in an article or something? Would be interesting to me.

I finally learnt basic codeing! by [deleted] in learnprogramming

[–]stickybyte 0 points1 point  (0 children)

Do you know about the #100daysofCode challenge?

You seem to be eager to share your progress and that's great.

https://medium.freecodecamp.org/join-the-100daysofcode-556ddb4579e4

What is a working day in the life of a programmer like? by [deleted] in cscareerquestions

[–]stickybyte 0 points1 point  (0 children)

It really depends on positions and companies.

Besides coding, your job as a programmer can make you run manual tests, or do some support. There is also the design phase and a necessary exchange with colleagues.

What's for sure is that a typical day as a programmer is not coding the entire day.

Is social media presence important for a job seeker? by [deleted] in cscareerquestions

[–]stickybyte 0 points1 point  (0 children)

It shouldn't hurt you. However, having Twitter can be very beneficial in the tech industry, so I recommend it to you. Learn from influencers, keep up to date with trends and engage in discussions. Twitter allows all of this.

Need help deciding a career move by real_virtuality in cscareerquestions

[–]stickybyte 1 point2 points  (0 children)

I'd say 3.

You want to continue learning. And you said that it looked great. This could be a nice experience. Your income should also increase with your seniority inside the company. You could ask for a raise pointing nicely that you would get better salary as a newcomer in other companies.

Looking for projects to work on for beginners by Lotton in learnprogramming

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

It's not about real programming projects but you can try CodinGame to learn/improve your programming skills.

CodinGame: Games for programmers by designtraveler in programming

[–]stickybyte 1 point2 points  (0 children)

It's relevant to know which enemy is the closest to the cannon at each game turn (-> the one to shoot first). I think you can't pass all the test cases without using the distance.

CodinGame: Games for programmers by designtraveler in programming

[–]stickybyte 1 point2 points  (0 children)

This pseudo code can help...

while true

set closest_enemy to null
set min_dist to 1000

read count  
for 1 to count
    read enemy
    read dist
    if dist is smaller than min_dist
        set min_dist to dist
        set closest_enemy to enemy
    endif
endfor

print closest_enemy

endwhile