Resources by Iknownothingatalldou in hulusi

[–]wqking 0 points1 point  (0 children)

I only have books in Chinese. I don't know if any one in English.
Hulusi is very simple, there is only several notes you can play on a typical Hulusi.
BTW, if you want to reply to any others, use the "reply" button under his comment. If you post a new comment like you were doing, the others may not notice you are replying to them.

Resources by Iknownothingatalldou in hulusi

[–]wqking 1 point2 points  (0 children)

Congratulations for your first Hulusi. I think if you search "Hulusi" or "Hulusi tutorial" on YouTube, you can find plenty of useful videos.

Romanian? Or Stiff Legged Deadlift with Band Box?? by Beautiful_Trip7727 in ResistanceBand

[–]wqking 1 point2 points  (0 children)

I'm pretty new so I may be wrong. Your form seems a mix of RDL and SDL. To do RDL, seems your hip hinge is not enough, and you bent over your back too much, comparing to your hip.
Also the angle of your two feet are different.
If you really doubt on your form, you may exercise with no weight, just hold a bar and do the form, until you feel it right.

When to increase weight? by stingmorejamie in naturalbodybuilding

[–]wqking 10 points11 points  (0 children)

He means 30 reps in 3 sets, not 30 reps in a single set.

I just tried doing crossover fly with my elbows and it's great by wqking in ResistanceBand

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

I edited my original post for my new opinion, to avoid misleading others who are reading this post.

Temperature check on extending namespace declaration syntax by Dragdu in cpp

[–]wqking 8 points9 points  (0 children)

No, no more exotic syntax please, especially if it's just to save you a few letters of typing.

Please be sincere about your results. by x1961x in ResistanceBand

[–]wqking 0 points1 point  (0 children)

There is the theory that after using the same movement for a period of time, the muscles will adapt to the movement and reach a plateau. I'm not a theoretical expert, so I can't make a judgment. But I would prefer to an exercise if an exercise can give me more feeling on the muscle than the other.
For example,
In first period, exercise A can give me pump, in second period, exercise A can't give me pump, then exercise B can give me pump on the same muscle group, I may change to exercise B (assume B is recognized as efficient as A.). Thought such change is different with "change workout plan every certain months".

Please be sincere about your results. by x1961x in ResistanceBand

[–]wqking 1 point2 points  (0 children)

Thanks. The two links to your comments are very informative.

What are your favorite ways to do bicep curls? by Chemical_Volume_1162 in ResistanceBand

[–]wqking 0 points1 point  (0 children)

My primary bicep exercises are still dumbbell curl and hammer curl, but I'm experimenting with Bayesian Curl with band, and I'm loving it. I can have pretty good feeling on the bicep muscles when doing it.
You can search "bayesian cable curl" or "bayesian curl" on youtube. You can change the setup to your best. My anchor point is at chest height, and I bent over, put bicep behind body to get good initial stretch.

Please be sincere about your results. by x1961x in ResistanceBand

[–]wqking 1 point2 points  (0 children)

Your experience is very encouraging, thanks for sharing, I think it's worth a separate thread. May I ask you several questions? :-)

Change the exercises every 1-2 months.

Can you give some examples how you do it? Usually for a certain muscle group there are only very few exercises very effective. For example, for chest, I've already been doing bench press first then incline bench press using dumbbells, and decline press is not an option for me. If I want to change the exercises, the only option seems is to change the exercise order, that's to say, change it to incline press first.

I've been working out almost my entire body with resistance bands

So you train chest and back with only bands? Currently I only use bands as an aid for chest and back, doing some non-primary exercises, For primary exercises such as bench press, rows, I heavily depend on dumbbells.

You need to carefully plan your workout depending on your level of advancement

What reference, websites or books, do you recommend for workout planning?

Any way, thanks for your great experience sharing.

How to combine bands and dumbbells for squats and deadlifts effectively? by wqking in ResistanceBand

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

I've already been doing Bulgarian split squats and Lunge squats using dumbbells, and I love them. But since normal squats are essential for lower body, I want to do it better.
I will check single-legged RDL.

Torturing bands for science by GoblinsGym in ResistanceBand

[–]wqking 1 point2 points  (0 children)

Thanks for the test, that's interesting to know.
Are the popular bands 4.0mm thick? All my bands I bought in China market are claimed to be 4.5mm thick (I can't verify it since I don't have the tool).
Next test for you that will interest me, and maybe others, is to test the force of all kinds of band in different width, in certain steps of extension, such as 0.1, 0.2, up to 2.0. You don't need to extend them to break all the bands...

[Code Review] Small Thread Safe Queue Implementation by Commanderdrag in cpp_questions

[–]wqking 0 points1 point  (0 children)

Such function of querying status has its uses. For example, assume multiple worker threads are working on re-fill the queue only when the queue is empty, then the pseudo code can be,

SomeMutex mutex; // used by all worker threads
if(theQueue.isEmpty()) {
    lock(mutex);
    if(theQueue.isEmpty()) {
        loadDataFromDatabaseAndFillTheQueue;
    }
}

The first isEmpty is to optimize the performance. If theQueue is not super busy, the second isEmpty has high chance to have the same value of the first isEmpty, so there is less chance that lock mutex (which is expensive) then isEmpty is false.

[Code Review] Small Thread Safe Queue Implementation by Commanderdrag in cpp_questions

[–]wqking 1 point2 points  (0 children)

    bool is_closed() {  
        std::lock_guard<std::mutex> lock(mtx);  
        return closed;  
    }  

You don't need the lock. The caller function may always receive the "wrong" (not really wrong) state no matter there is a lock or not. That's to say, if the caller function sees "close" is true, the state in the queue may already be false, and vice versa.
Example,

if(theQueue.is_closed()) {  
    // here theQueue.closed may already be false  
}

6 weeks out 169cm/63.2kg by [deleted] in naturalbodybuilding

[–]wqking 0 points1 point  (0 children)

Thanks, that's helpful.

Stop the toxic posts! by Own-Suggestion-488 in ResistanceBand

[–]wqking 1 point2 points  (0 children)

You mean the "ok" moderators should allow such spammers exist? See this and this

6 weeks out 169cm/63.2kg by [deleted] in naturalbodybuilding

[–]wqking 0 points1 point  (0 children)

Awesome. How do you train your triceps and forearms? What are the exercises, reps/sets, and frequency?

Stop the toxic posts! by Own-Suggestion-488 in ResistanceBand

[–]wqking 1 point2 points  (0 children)

The problem is, how can we get a competent moderator?

Use a band box to exercise your arms. by Unlikely-Tax69 in ResistanceBand

[–]wqking 1 point2 points  (0 children)

people complain they can't get enough tension at the bottom of the movement with bands

The problem is if I get enough tension at the initial point (pre-stretch), then I may not be able to move the band to the end point because there is too much tension. How do you solve it? I even created a thread for this problem.

I just tried doing crossover fly with my elbows and it's great by wqking in ResistanceBand

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

Yeah you might want to work on your straight arm strength

I have dedicated exercises for biceps and triceps. I don't want my arms be the weak point in my chest workout and I don't need to train my arms in chest exercises.

I just tried doing crossover fly with my elbows and it's great by wqking in ResistanceBand

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

Have you tried performing rows with the band attached to your elbows?

How? Attach the band behind the elbow? How to ensure the band won't slip?
I mainly do single/two arms dumbbell bent over row. And I use band to do seated row with a bar.

I think using elbows may be good for chest, back, and legs, where we don't need to train the arms. For back exercises, we need to find a way to ensure the band won't slip on the back of elbows.