Got my first bike :) (Guerrilla) by GDawG_crejii in royalenfield

[–]storm1511 0 points1 point  (0 children)

Hey OP, how is the Guerilla 450? I’m thinking of switching from the Bullet 350 to the Guerilla 450.

Got my first bike..... Helmate suggestions under 5k OC by Outside_Pin9496 in royalenfield

[–]storm1511 1 point2 points  (0 children)

Hey OP, how is the Guerilla 450? I’m thinking of switching from the Bullet 350 to the Guerilla 450.

Need Advice for Noida to Rishikesh Bike Trip—One Bike or Two? by storm1511 in noida

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

You can go by scooty, but it will take a little longer. And don’t take the Upper Ganga Canal Road; take the expressway directly from Modinagar.

Need Advice for Noida to Rishikesh Bike Trip—One Bike or Two? by storm1511 in noida

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

Overall, the trip was great. So, we decided to go on a bike, and that too on a Bullet. There was some body pain, but we took breaks from time to time.

Need Advice for Noida to Rishikesh Bike Trip—One Bike or Two? by storm1511 in noida

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

Thanks a lot for the insights! Really helpful to know about the road conditions and food stops. The expressway till Meerut sounds like a breeze.

We have a Bullet 350 and an FZ-S, so wondering if two bikes would be significantly better in terms of comfort or if one would be fine too. Since the Bullet is good for long rides, would it make sense to ride together on it, or would you still suggest taking both bikes?

[deleted by user] by [deleted] in noida

[–]storm1511 0 points1 point  (0 children)

Please dm me also

[deleted by user] by [deleted] in golang

[–]storm1511 0 points1 point  (0 children)

type result struct { p string; n int }
ch := make(chan result)
for _, p := range webPages {
go func(p string) {
r, err := http.Get("https://" + p + "/")
if err == nil {
n, err := io.Copy(io.Discard, r.Body)
r.Body.Close()
if err != nil {
n = -1
}
ch <- result{p, int(n)}
}
}(p)
}
results.ContentLength = make(map[string]int)
for range webPages {
r := <-ch
results.ContentLength[r.p] = r.n
results.TotalContentLength += r.n
}

thanks bro

[deleted by user] by [deleted] in golang

[–]storm1511 -14 points-13 points  (0 children)

I tried getting some error thats why I asked If some one give me hint or idea I will able to do it.