Richard Bronosky

less info
884 reputation
717
bio website bronosky.com
location Atlanta, GA
age 34
visits member for 3 years, 11 months
seen yesterday
stats profile views 105

MySQL DBA, Internet Systems Manager (Manager of the Linux Sys Admins) at the Atlanta Journal-Constitution

I'm on LinkedIn, Facebook, Twitter

NOTE TO ALL: Everyone should have some form of contact info in their profiles. If nothing else, it is respectful to the people who answer your questions to allow them to tweet you to say, "I gave you a rock'n answer a few weeks ago, but you haven't given any feedback. Did it work for you?" or "Hey there are comments on your question asking for more details, but you are not giving us what we need to help you properly."


2d
comment How to find a user's home directory on linux or unix?
Sure. Glad I could help.
2d
revised How to find a user's home directory on linux or unix?
increase power!
2d
comment Vim no end of line on last line or eof
This is the best answer by far! In 1 sentence you give 3 powerful solutions to the OP's issue. I was able to combine vim -b myfile and :set noeol to meet my needs and now I have a skill that I can take anywhere. I don't have to have my .vimrc file to be powerful. I know how to use the power of the editor.
Apr
29
revised Installing meld on OS X
If you are going to claim something is available in the Open Source world, link to it.
Apr
29
suggested suggested edit on Installing meld on OS X
Apr
29
revised console.log() not outputting HTML of jQuery selection object
added link
Apr
23
comment Multiple simultaneous updates with MongoDB/PyMongo?
Thank you! based on docs.mongodb.org/manual/core/update/#update-multiple-documents I was trying collection.update(spec, doc, {'multi':True}). Subtle but important difference. ;-)
Apr
15
comment How do I build a debian package whose sources include symbolic links outside of the source tree?
@tripleee I have come back here 3 different times on 3 different days trying to figure out why you are down voting all the answers (I removed mine, but it was stackoverflow.com/a/15941526/117471 ) I think issue lies in the dual meanings of "build a debian package". I think the most common interpretation will be "create a debian package". However, the next to last sentence says "build a debian source tarball". That could be interpreted as "install a debian source tarball". The difference being producer vs. consumer.
Apr
11
answered Creating symlinks when packaging a Library (Debian)?
Apr
4
revised console.log() not outputting HTML of jQuery selection object
added 70 characters in body
Apr
4
revised console.log() not outputting HTML of jQuery selection object
added 99 characters in body
Apr
4
answered console.log() not outputting HTML of jQuery selection object
Mar
29
revised How to re-sign the ipa file?
removed the gist to avoid confusion
Mar
29
comment How to re-sign the ipa file?
@RahmathullahMPulikkal I see I had errantly hardcoded a path in the gist. You really should be using github.com/RichardBronosky/ota-tools/blob/master/ipa_sign instead of the gist. It's the maintained code.
Mar
28
comment console.log() not outputting HTML of jQuery selection object
brentonstrine's comment above doesn't quite work because of the way comments lose their line breaks. Try: var domLog = function($obj){ console.log.apply(console,$obj); }; domLog( $("div") );
Mar
28
answered console.log() not outputting HTML of jQuery selection object
Mar
28
suggested suggested edit on console.log() not outputting HTML of jQuery selection object
Mar
28
comment Proper way to deal with string which looks like json object but it is wrapped with single quote
Now if someone can figure out what search criteria you use to get your twitter data, they can send you a python injection. Tell us more about this project of yours.
Mar
26
answered Finding what methods an object has
Mar
26
comment Finding what methods an object has
since the OP is looking for a method and not just and attribute, I think you want to go a step further with: if hasattr(obj,method) and callable(getattr(obj,method)):