#LoqiGWG has 26 karma in this channel over the last year (140 in all channels)
gxt, strugee, loicm, swentel, gRegorLove, [tantek], jeremych_, superkuh, [KevinMarks], xsteadfastx and [LewisCowles] joined the channel
#[LewisCowles]GWG++, what are you using to turn docblocks into documentation? I started using doxygen as it has wide language support and produces documentation in a format I enjoy consuming, with some interesting visualisations of functions to show me "this one is glue, keep looking", this one does something etc.
#LoqiGWG has 27 karma in this channel over the last year (141 in all channels)
xsteadfastx, hs0ucy, KartikPrabhu, loicm and gxt joined the channel
#GWG[LewisCowles]: Nothing. Right now I'm just writing them.
#jeremycherfasIs doxygen the kind of thing that could also help me to understand someone else's programs?
joshghent joined the channel
#[LewisCowles]Doxygen is for developer-facing documentation and reference manuals as far as I've ever seen it used, but it's theoretically possible to also include content which is not reference manual by adding static assets
#[LewisCowles]what I quite like about it is that it's giving me call graphs of my code, which allows me to visually see "Oh that has a lot of failure points"
strugee, geoffo and vika_nezrimaya joined the channel
#GWG[LewisCowles]: I think PHPDocumentor is more popular for PHP code.
#[LewisCowles]It might be. I try to network benefits as I work in so many languages and I'm using phpdoc syntax
#[LewisCowles]afaik, my docblocks are the same for both as I don't add `@brief` or similar annotations
swentel joined the channel
#GWGI'm using WP PHPDoc standard, which don't use brief either
#GWGBut, it's been really helpful in identifying redundant code, actually describing it
[jgarber], IWSlackGateway2, nickodd, hs0ucy, [tantek], [LewisCowles], gRegorLove, [snarfed], jeremych_, strugee, superkuh, [KevinMarks] and loicm joined the channel; nickodd left the channel
#GWG[KevinMarks]: I created zones in my software, which are locations that, if I'm within a certain number of meters of them, it replaces the address with a label and hides the exact location
#GWGLet's say I have a location in London and I want to show a map of the greater area without disclosing where in London I am, how would I derive that from the coordinates?
#GWGChop off some decimal points? I currently round to 7, I think
strugee and [mapkyca] joined the channel
#GWGI'm doing documentation on my location plugin this week, and I've tightened up some of my return arrays, so good time to brainstorm on this