Robert Dailey

Results 230 comments of Robert Dailey

Thank you. What is the specific reason to bring up 6.0? Is it changing how the value formatting is working?

Along the lines of making this more "Readable", I thought of another idea: Instead of saying: ```txt Expected a list of 4 items: - "Apple" - "Banana" - "Cantaloupe" -...

I have a few thoughts to share. First on closing the issue: In my view if we plan to address something, it should remain open. Github's UX is such that...

> This is going to sound pointed, and I really, really don't mean it to be: In this statement, who is the "we" that's addressing something? History shows that chances...

Unfortunately, I already have too many time commitments. That is why I spent so much time on this issue providing a great amount of detail.

My solution was similar: ```cpp JNIEXPORT void JNICALL Java_com_ttm_v2_sync_SyncService_init(JNIEnv* env, jobject obj) { auto instance = jni::Global( *env, jni::Wrap(env->NewGlobalRef(obj))); } ``` However, IMHO, the `NewGlobal` and `NewLocal` methods should offer...

Where are we on this 1 year later?

I struggle with this rule a lot. It doesn't make sense to me. Maybe that's because of my use case. My application is a .NET console app. I have two...

Putting credentials in the URI is a security issue.

Sorry, I made a false statement: As long as you're using SSL, the URI portion is encrypted. So it should be a non-issue. Right now I'm passing the Authorization header...