[{"data":1,"prerenderedAt":1526},["ShallowReactive",2],{"content-/cperez/2026-08-20/ai-code-review-verifying-generated-software":3},{"article":4,"all":457},{"_path":5,"_dir":6,"_draft":7,"_partial":7,"_locale":8,"title":9,"description":10,"publishDate":6,"image":11,"author":12,"tags":15,"excerpt":10,"body":20,"_type":451,"_id":452,"_source":453,"_file":454,"_stem":455,"_extension":456},"/cperez/2026-08-20/ai-code-review-verifying-generated-software","2026-08-20",false,"","AI Can Write the Code. Who Verifies It?","AI Code Review: Who Verifies AI-Generated Software?","/cperez/2026-08-20/img/ai-code-review-verifying-generated-software.jpg",{"name":13,"user":14},"Carlos Perez","cperez",[16,17,18,19],"ai code review","ai software development","vibe coding","humans in the loop",{"type":21,"children":22,"toc":432},"root",[23,34,39,44,49,54,64,71,76,81,86,91,97,102,107,112,117,122,127,143,148,154,159,164,169,174,179,185,190,195,200,205,210,216,221,226,231,237,242,247,252,257,262,276,281,287,292,297,302,307,329,334,340,345,350,360,365,370,376,383,388,394,399,405,410,416,421,427],{"type":24,"tag":25,"props":26,"children":27},"element","p",{},[28],{"type":24,"tag":29,"props":30,"children":31},"strong",{},[32],{"type":33,"value":10},"text",{"type":24,"tag":25,"props":35,"children":36},{},[37],{"type":33,"value":38},"AI has changed one of the basic economics of software development by making code much faster to produce.",{"type":24,"tag":25,"props":40,"children":41},{},[42],{"type":33,"value":43},"A developer can ask an agent to implement a feature, migrate an API, generate tests, fix a bug, or refactor a component, and often have a plausible solution waiting within minutes. That can create a real productivity gain, especially when the work is repetitive or well defined, but it also shifts the bottleneck.",{"type":24,"tag":25,"props":45,"children":46},{},[47],{"type":33,"value":48},"Someone still has to determine whether the code is actually right.",{"type":24,"tag":25,"props":50,"children":51},{},[52],{"type":33,"value":53},"That means more than checking whether it compiles, whether the tests pass, or whether the feature behaves correctly in the most obvious scenario. The real question is whether the software still does what the business expects, handles the cases that matter, respects the architecture and security model, and avoids changing something elsewhere in the system.",{"type":24,"tag":25,"props":55,"children":56},{},[57,59],{"type":33,"value":58},"As code generation gets cheaper, ",{"type":24,"tag":29,"props":60,"children":61},{},[62],{"type":33,"value":63},"verification becomes more valuable.",{"type":24,"tag":65,"props":66,"children":68},"h3",{"id":67},"what-does-good-ai-code-review-require",[69],{"type":33,"value":70},"What does good AI code review require?",{"type":24,"tag":25,"props":72,"children":73},{},[74],{"type":33,"value":75},"Reviewing AI-generated code requires more than checking syntax or style. Developers need to verify the intended business behavior, inspect the assumptions behind the implementation, evaluate whether the tests are meaningful, and understand how the change interacts with the rest of the application.",{"type":24,"tag":25,"props":77,"children":78},{},[79],{"type":33,"value":80},"That means experienced developers still need to ask whether the implementation actually solved the requested problem, whether it preserved existing behavior that wasn’t explicitly mentioned in the prompt, and whether it introduced a new security or architectural risk.",{"type":24,"tag":25,"props":82,"children":83},{},[84],{"type":33,"value":85},"They also need to understand what happens when the happy path breaks down. Incomplete data, unusual inputs, failed integrations, permission boundaries, and edge cases often matter more than the scenario that was easiest to demonstrate.",{"type":24,"tag":25,"props":87,"children":88},{},[89],{"type":33,"value":90},"AI can help with parts of that review, but the organization still needs someone responsible for deciding when the evidence is strong enough to trust the change.",{"type":24,"tag":65,"props":92,"children":94},{"id":93},"passing-tests-isnt-the-same-as-being-correct",[95],{"type":33,"value":96},"Passing tests isn’t the same as being correct",{"type":24,"tag":25,"props":98,"children":99},{},[100],{"type":33,"value":101},"Automated tests are some of the best tools developers have for making software safer to change, and they become even more valuable when AI is producing more implementation more quickly.",{"type":24,"tag":25,"props":103,"children":104},{},[105],{"type":33,"value":106},"There is a catch, though: AI can generate the tests along with the code.",{"type":24,"tag":25,"props":108,"children":109},{},[110],{"type":33,"value":111},"If the same misunderstanding appears in both places, everything may pass while the feature is still wrong.",{"type":24,"tag":25,"props":113,"children":114},{},[115],{"type":33,"value":116},"Suppose an agent misinterprets a pricing rule, implements the wrong calculation, and then generates tests based on that same interpretation. From the development environment’s perspective, the feature looks healthy because the code and tests agree with each other.",{"type":24,"tag":25,"props":118,"children":119},{},[120],{"type":33,"value":121},"The business rule is still wrong.",{"type":24,"tag":25,"props":123,"children":124},{},[125],{"type":33,"value":126},"That’s why good AI-assisted development needs tests that are grounded independently in requirements, existing behavior, known examples, and domain expertise. A passing test suite is useful evidence, but developers still have to understand what that evidence actually proves.",{"type":24,"tag":25,"props":128,"children":129},{},[130,132,141],{"type":33,"value":131},"Art+Logic encountered a version of this problem during an ",{"type":24,"tag":133,"props":134,"children":138},"a",{"href":135,"rel":136},"https://artandlogic.com/ai-assisted-modernization/",[137],"nofollow",[139],{"type":33,"value":140},"AI-assisted modernization project",{"type":33,"value":142},". Earlier automated attempts at migrating the application produced software that compiled while removing or disabling important functionality. Art+Logic instead used AI for bounded, repetitive work while experienced engineers retained responsibility for architecture, review, testing, and validation.",{"type":24,"tag":25,"props":144,"children":145},{},[146],{"type":33,"value":147},"The important distinction wasn’t whether AI could produce working code. It was whether the team could prove that the migrated application still worked for the people who depended on it.",{"type":24,"tag":65,"props":149,"children":151},{"id":150},"the-harder-the-business-rules-the-more-verification-matters",[152],{"type":33,"value":153},"The harder the business rules, the more verification matters",{"type":24,"tag":25,"props":155,"children":156},{},[157],{"type":33,"value":158},"Many applications contain behavior that isn’t obvious from the code alone.",{"type":24,"tag":25,"props":160,"children":161},{},[162],{"type":33,"value":163},"A strange condition may exist because of a customer contract, an unusual workflow may reflect a regulatory requirement, or a validation rule that looks redundant may protect against a problem users encountered years ago. AI can analyze the implementation, but it may not know why that behavior exists unless the relevant context is available somewhere it can use.",{"type":24,"tag":25,"props":165,"children":166},{},[167],{"type":33,"value":168},"That makes collaboration with domain experts increasingly important.",{"type":24,"tag":25,"props":170,"children":171},{},[172],{"type":33,"value":173},"A developer reviewing generated code may need to ask the client or product owner whether a particular behavior is actually correct, because the answer can’t always be inferred from the repository. This is one reason Art+Logic’s development process combines the client’s domain knowledge with software-engineering experience: the client knows what the business requires, while developers turn those requirements into software that can be tested, operated, and changed safely.",{"type":24,"tag":25,"props":175,"children":176},{},[177],{"type":33,"value":178},"AI can accelerate that process, but it doesn’t eliminate the need for the conversation.",{"type":24,"tag":65,"props":180,"children":182},{"id":181},"ai-can-increase-the-amount-of-software-that-needs-to-be-reviewed",[183],{"type":33,"value":184},"AI can increase the amount of software that needs to be reviewed",{"type":24,"tag":25,"props":186,"children":187},{},[188],{"type":33,"value":189},"There’s another consequence of faster code generation: teams can produce more change than reviewers can comfortably absorb.",{"type":24,"tag":25,"props":191,"children":192},{},[193],{"type":33,"value":194},"A developer who once implemented one feature may now direct several agents, explore multiple approaches, and generate a much larger set of tests and supporting changes in the same period. That sounds like pure productivity until review becomes the limiting step.",{"type":24,"tag":25,"props":196,"children":197},{},[198],{"type":33,"value":199},"At that point, the development question changes from “How quickly can we generate the implementation?” to “How much change can we verify with confidence?”",{"type":24,"tag":25,"props":201,"children":202},{},[203],{"type":33,"value":204},"That’s a different kind of capacity problem, and the answer probably isn’t to review every AI-generated line with identical intensity. Instead, teams need better ways to evaluate risk.",{"type":24,"tag":25,"props":206,"children":207},{},[208],{"type":33,"value":209},"A copy change and a database migration shouldn’t receive the same review, just as a small UI correction shouldn’t be treated like a change to authorization logic. The more consequential the change, the stronger the review should be.",{"type":24,"tag":65,"props":211,"children":213},{"id":212},"what-should-always-receive-closer-human-review",[214],{"type":33,"value":215},"What should always receive closer human review?",{"type":24,"tag":25,"props":217,"children":218},{},[219],{"type":33,"value":220},"Every team will draw the boundary differently, but some changes deserve more scrutiny because mistakes are expensive, difficult to detect, or difficult to reverse.",{"type":24,"tag":25,"props":222,"children":223},{},[224],{"type":33,"value":225},"That usually includes work involving authentication and authorization, sensitive or regulated data, database schemas and migrations, financial calculations, infrastructure, critical business rules, public APIs, external integrations, major architectural changes, and irreversible operations.",{"type":24,"tag":25,"props":227,"children":228},{},[229],{"type":33,"value":230},"AI may still contribute substantially to those changes, but the point isn’t that developers have to type everything themselves. It’s that someone with enough context and experience needs to understand what is changing and accept responsibility for the result.",{"type":24,"tag":65,"props":232,"children":234},{"id":233},"the-reviewer-needs-to-understand-the-system-not-just-the-diff",[235],{"type":33,"value":236},"The reviewer needs to understand the system, not just the diff",{"type":24,"tag":25,"props":238,"children":239},{},[240],{"type":33,"value":241},"In software development, a “diff” is the set of lines that were added, removed, or changed. A reviewer can inspect that diff and decide that the code looks clean and reasonable, but still miss a problem if they don’t understand the surrounding system.",{"type":24,"tag":25,"props":243,"children":244},{},[245],{"type":33,"value":246},"There’s also a business reason developers can’t become detached from the code AI produces.",{"type":24,"tag":25,"props":248,"children":249},{},[250],{"type":33,"value":251},"When a customer reports an issue, asks how a feature behaves, or wants to understand why a particular decision was made, the development team still needs to navigate the application and explain what’s happening. A developer who can only say, “The agent wrote that part, and the tests passed,” hasn’t transferred responsibility to the AI provider; the client still depends on the development team.",{"type":24,"tag":25,"props":253,"children":254},{},[255],{"type":33,"value":256},"That makes code comprehension an important part of verification.",{"type":24,"tag":25,"props":258,"children":259},{},[260],{"type":33,"value":261},"Good review isn’t just a gate before deployment. It’s also one of the ways a team maintains enough shared understanding to support the software later.",{"type":24,"tag":25,"props":263,"children":264},{},[265,267,274],{"type":33,"value":266},"This connects directly to another risk Art+Logic has written about: ",{"type":24,"tag":133,"props":268,"children":271},{"href":269,"rel":270},"https://artandlogic.com/newsletters/how-turnover-reveals-weak-architecture/",[137],[272],{"type":33,"value":273},"key-person dependency and weak architecture",{"type":33,"value":275},". Systems become fragile when understanding is concentrated in a few people rather than expressed through architecture, tests, documentation, and consistent patterns.",{"type":24,"tag":25,"props":277,"children":278},{},[279],{"type":33,"value":280},"AI-generated software can create the same problem in a new form if teams allow code to accumulate faster than they can understand it.",{"type":24,"tag":65,"props":282,"children":284},{"id":283},"ai-should-make-repetitive-work-cheaper-not-judgment-optional",[285],{"type":33,"value":286},"AI should make repetitive work cheaper, not judgment optional",{"type":24,"tag":25,"props":288,"children":289},{},[290],{"type":33,"value":291},"The best use of coding agents isn’t to pretend developers no longer need to understand implementation. It’s to change where developers spend their time.",{"type":24,"tag":25,"props":293,"children":294},{},[295],{"type":33,"value":296},"AI can take on more of the repetitive work, including generating boilerplate, applying known patterns, drafting tests, tracing dependencies, converting framework conventions, or producing a first implementation for review. That gives experienced developers more time to focus on the decisions that require judgment.",{"type":24,"tag":25,"props":298,"children":299},{},[300],{"type":33,"value":301},"Is this the right architecture? Does the change match the business requirement? Is the security model still intact? Is there a simpler approach? What are the likely failure modes, and can another developer maintain this later?",{"type":24,"tag":25,"props":303,"children":304},{},[305],{"type":33,"value":306},"Those questions become more important, not less, as implementation speeds up.",{"type":24,"tag":25,"props":308,"children":309},{},[310,312,318,320,327],{"type":33,"value":311},"Art+Logic has taken that approach in both ",{"type":24,"tag":133,"props":313,"children":315},{"href":135,"rel":314},[137],[316],{"type":33,"value":317},"AI-assisted modernization",{"type":33,"value":319}," and its broader work with AI-enabled software ",{"type":24,"tag":133,"props":321,"children":324},{"href":322,"rel":323},"https://artandlogic.com/ai/",[137],[325],{"type":33,"value":326},"AI-enabled software",{"type":33,"value":328},": use AI where it improves development efficiency while keeping experienced engineering judgment around architecture, quality, security, and maintainability.",{"type":24,"tag":25,"props":330,"children":331},{},[332],{"type":33,"value":333},"The objective isn’t to preserve old ways of writing software. It’s to take advantage of faster implementation without giving up confidence in the result.",{"type":24,"tag":65,"props":335,"children":337},{"id":336},"the-new-bottleneck-may-be-trust",[338],{"type":33,"value":339},"The new bottleneck may be trust",{"type":24,"tag":25,"props":341,"children":342},{},[343],{"type":33,"value":344},"AI coding tools will keep improving, and teams will almost certainly become more comfortable delegating larger portions of implementation.",{"type":24,"tag":25,"props":346,"children":347},{},[348],{"type":33,"value":349},"That doesn’t make verification disappear; it changes what verification looks like.",{"type":24,"tag":25,"props":351,"children":352},{},[353,355],{"type":33,"value":354},"Some confidence will come from automated tests, static analysis, security tooling, evaluation frameworks, and even additional AI agents reviewing other agents’ work. However, a business still needs a defensible answer to a basic question: ",{"type":24,"tag":29,"props":356,"children":357},{},[358],{"type":33,"value":359},"Why do we believe this software is correct?",{"type":24,"tag":25,"props":361,"children":362},{},[363],{"type":33,"value":364},"For low-risk changes, that answer may become increasingly automated. For changes involving important business logic, customer data, architecture, security, or irreversible actions, experienced people will still need to understand the evidence and make the call.",{"type":24,"tag":25,"props":366,"children":367},{},[368],{"type":33,"value":369},"AI can write more code than ever before, which is useful. The competitive advantage will increasingly come from knowing which code to trust, which code to question, and how to tell the difference.",{"type":24,"tag":65,"props":371,"children":373},{"id":372},"faqs",[374],{"type":33,"value":375},"FAQs",{"type":24,"tag":377,"props":378,"children":380},"h4",{"id":379},"does-ai-generated-code-still-need-human-review",[381],{"type":33,"value":382},"Does AI-generated code still need human review?",{"type":24,"tag":25,"props":384,"children":385},{},[386],{"type":33,"value":387},"Yes, particularly when a change affects important business rules, security, sensitive data, architecture, integrations, or other high-impact behavior. Automated tools can provide evidence, but experienced developers still need to determine whether the implementation satisfies the real requirement.",{"type":24,"tag":377,"props":389,"children":391},{"id":390},"can-ai-generated-tests-be-trusted",[392],{"type":33,"value":393},"Can AI-generated tests be trusted?",{"type":24,"tag":25,"props":395,"children":396},{},[397],{"type":33,"value":398},"They can be useful, but generated tests shouldn’t be treated as independent proof of correctness. If the AI misunderstands the requirement, it may encode the same misunderstanding in both the implementation and the tests.",{"type":24,"tag":377,"props":400,"children":402},{"id":401},"what-should-developers-check-when-reviewing-ai-generated-code",[403],{"type":33,"value":404},"What should developers check when reviewing AI-generated code?",{"type":24,"tag":25,"props":406,"children":407},{},[408],{"type":33,"value":409},"Developers should verify business behavior, architectural fit, security boundaries, error handling, edge cases, test quality, maintainability, and interactions with other parts of the application. Review depth should increase with the risk of the change.",{"type":24,"tag":377,"props":411,"children":413},{"id":412},"is-ai-replacing-software-developers",[414],{"type":33,"value":415},"Is AI replacing software developers?",{"type":24,"tag":25,"props":417,"children":418},{},[419],{"type":33,"value":420},"AI is changing how developers spend their time rather than eliminating the need for software engineering. As implementation becomes faster, architecture, verification, system understanding, security, and business-rule validation become more important.",{"type":24,"tag":377,"props":422,"children":424},{"id":423},"why-is-verification-becoming-a-bottleneck-in-ai-software-development",[425],{"type":33,"value":426},"Why is verification becoming a bottleneck in AI software development?",{"type":24,"tag":25,"props":428,"children":429},{},[430],{"type":33,"value":431},"Coding agents can produce implementation and tests much faster than developers traditionally could, which increases the volume of software changes that need to be understood, evaluated, and validated before they can safely reach production.",{"title":8,"searchDepth":433,"depth":433,"links":434},3,[435,436,437,438,439,440,441,442,443],{"id":67,"depth":433,"text":70},{"id":93,"depth":433,"text":96},{"id":150,"depth":433,"text":153},{"id":181,"depth":433,"text":184},{"id":212,"depth":433,"text":215},{"id":233,"depth":433,"text":236},{"id":283,"depth":433,"text":286},{"id":336,"depth":433,"text":339},{"id":372,"depth":433,"text":375,"children":444},[445,447,448,449,450],{"id":379,"depth":446,"text":382},4,{"id":390,"depth":446,"text":393},{"id":401,"depth":446,"text":404},{"id":412,"depth":446,"text":415},{"id":423,"depth":446,"text":426},"markdown","content:cperez:2026-08-20:ai-code-review-verifying-generated-software.md","content","cperez/2026-08-20/ai-code-review-verifying-generated-software.md","cperez/2026-08-20/ai-code-review-verifying-generated-software","md",[458,471,480,493,508,520,528,538,549,558,570,581,592,601,611,622,635,646,655,665,673,680,689,697,706,716,726,735,744,752,763,771,779,788,796,806,814,822,830,838,846,854,862,872,880,890,898,908,918,929,939,949,963,975,987,997,1007,1019,1029,1042,1054,1064,1073,1084,1098,1108,1111,1122,1132,1145,1154,1164,1174,1184,1194,1206,1218,1232,1246,1261,1269,1277,1286,1295,1304,1313,1322,1331,1340,1349,1358,1369,1382,1392,1400,1408,1416,1424,1436,1448,1458,1467,1476,1486,1495,1505,1514],{"_path":459,"title":460,"description":461,"image":462,"publishDate":463,"tags":464,"_id":467,"author":468},"/alalande/2023-1/escaping_text","Thinking Like a Programmer: Escaping Text","In this progressive and vivid explanation, we explore the HOW and WHY of quoting, nesting, and escaping text.","/alalande/2023-1/img/header.png","2024-02-15",[465,466],"series","educational","content:alalande:2023-1:escaping_text.md",{"user":469,"name":470},"alalande","Anthony Lalande",{"_path":472,"title":473,"description":474,"image":475,"publishDate":476,"tags":477,"_id":478,"author":479},"/alalande/2023-2/heuristics","Thinking Like a Programmer: Heuristics","We want to help you turbo-charge your decision making.","/alalande/2023-2/img/heuristics.png","2024-03-15",[465,466],"content:alalande:2023-2:heuristics.md",{"user":469,"name":470},{"_path":481,"title":482,"description":483,"tags":484,"publishDate":487,"image":488,"_id":489,"author":490},"/areichert/2023-10/rapid-testing-techniques-for-web-and-mobile","Rapid Testing Techniques for Web & Mobile Apps","Testing rapidly or the need to test quickly under shortened execution cycles is not new. Rapid testing has been around for as long as software testing has existed but increases when a product release is imminent, strained, or behind schedule. There are many reasons development gets behind schedule. Similar to testing, development is prone to surprise requirements changes and increases in scope and complexity.",[485,486],"software-testing","qa","2024-06-01","/areichert/2023-10/img/rapid_testing.png","content:areichert:2023-10:Rapid Testing techniques for web and mobile.md",{"user":491,"name":492},"areichert","Amy Reichert",{"_path":494,"title":495,"description":496,"image":497,"publishDate":498,"tags":499,"_id":504,"author":505},"/asherbrooke/2020-4/watchwah","Bringing an Idea to Life: WatchWah Proof of Concept","\"Wouldn't it be cool if...\"","/asherbrooke/2020-4/img/Guitar_and_Watch.jpeg","2020-04-01",[500,501,502,503],"ios","apple","watch","juce","content:asherbrooke:2020-4:watchwah.md",{"user":506,"name":507},"asherbrooke","Andrew Sherbrooke",{"_path":509,"title":510,"description":511,"publishDate":512,"tags":513,"_id":516,"author":517},"/avogan/2012-07/salt","What Your Users Don't Know (Part 1)","What's wrong with this code?","2012-07-13",[514,515,465],"cryptography","security","content:avogan:2012-07:salt.md",{"user":518,"name":519},"avogan","Andrew Vogan",{"_path":521,"title":522,"description":523,"publishDate":524,"tags":525,"_id":526,"author":527},"/avogan/2012-07/salt-2","What Your Users Don't Know (Part 2)","In my last post we saw that what your users don't know can hurt them. In other words, how securely you handle your users' private data behind the scenes can have profound implications both for your business and your users' well being. To put it bluntly, it's bad for your business to be publicly shamed over your handling of sensitive data, and it's bad for your users to have their bank accounts pilfered -- those being some of the worse case scenarios.","2012-07-26",[514,515,465],"content:avogan:2012-07:salt-2.md",{"user":518,"name":519},{"_path":529,"title":530,"description":531,"publishDate":532,"image":533,"_id":534,"author":535},"/bporter/2012-5/cd_player","My First CD Player","I started college right about the time when the first CD players were coming onto the market -- there weren't many available, and they were all obscenely expensive. At the time, my dad was dong a lot of traveling to Japan for business, and he was able to bring me a really nice Yamaha CD player back from a shop in Akihabara for about 1/4th of what a similar unit would have cost me here in the US.","2012-05-01","/bporter/2012-5/img/cd_player.jpg","content:bporter:2012-5:cd_player.md",{"user":536,"name":537},"bporter","Brett Porter",{"_path":539,"title":540,"description":541,"publishDate":542,"tags":543,"image":546,"_id":547,"author":548},"/bporter/2012-5/improtech","ImproTech Paris-New York 2012","Last week, I took a vacation day to attend one day of workshops at NYU as part of ImproTech 2012 Paris-New York That website descibes the event as:","2012-05-24",[544,545],"improvisation","music","/bporter/2012-5/img/affichemartin.jpg","content:bporter:2012-5:improtech.md",{"user":536,"name":537},{"_path":550,"title":551,"description":552,"publishDate":553,"tags":554,"_id":556,"author":557},"/bporter/2012-5/learntocode","Yes, Do Learn To Code!","My usual pre-work routine is to walk the dog (working at home, this is my counterpart to a commute), pour my first cup of coffee, and then curl up for a little while with Google Reader. I don't know if it's because I've selected feeds that are too closely aligned with my values and personal agenda, but it's really rare that I'll read a post that is just so wrong that it makes me angry. Jeff Atwood wrote a post like that: Please Don't Learn To Code","2012-05-15",[555],"learn-to-code","content:bporter:2012-5:learntocode.md",{"user":536,"name":537},{"_path":559,"title":560,"description":561,"publishDate":562,"tags":563,"image":567,"_id":568,"author":569},"/bporter/2012-6/dsl","Watch Your Language","Interesting to see a theme emerge in my Pinboard account this week -- lots of stuff about the idea of 'programming language'. I've spent the last few weeks preparing to dive back into a personal interactive music project that I've been working on sporadically since I was in graduate school. I had recently realized that the conceptual roadblock I hit before my last hiatus was something that I'd need to address by adding some sort of little programming language into the system. After following Martin Fowler's many blog posts over the years discussing domain specific languages, I finally broke down and bought his book on the topic. It's too early yet for me to have much concrete to say about the book, but I remember getting enough out of those blog posts to be confident that it will be worth the money and time to read.","2012-06-29",[564,565,566],"dsl","erlang","go","/bporter/2012-6/img/dsl.jpg","content:bporter:2012-6:dsl.md",{"user":536,"name":537},{"_path":571,"title":572,"description":573,"image":574,"publishDate":575,"tags":576,"_id":579,"author":580},"/bporter/2019-3/animator","Friz: A flexible animation controller for JUCE","As is often the case, I found myself working on a personal project and had some UI elements that really wanted to have some life to them on the screen.","/bporter/2019-3/img/animator.png","2019-03-01",[503,577,578],"ui","c++","content:bporter:2019-3:animator.md",{"user":536,"name":537},{"_path":582,"title":583,"description":584,"image":585,"publishDate":586,"tags":587,"_id":590,"author":591},"/bporter/2019-4/aesannounce","Art+Logic In the Real World","There are a few events coming up in the next few weeks where A+L will have people in attendance. If you're going to be there or nearby, please get in touch and we'll meet up.","/bporter/2019-4/img/aesLogo.jpg","2019-04-01",[588,589],"a+l","event","content:bporter:2019-4:aesAnnounce.md",{"user":536,"name":537},{"_path":593,"title":594,"description":595,"image":596,"publishDate":597,"tags":598,"_id":599,"author":600},"/bporter/2020-10/reanimated","Re-animated","Last year, I posted here about an animation control framework called 'Friz' that works within the JUCE Application Framework.","/bporter/2020-10/img/module.png","2020-10-01",[503,577,578],"content:bporter:2020-10:reanimated.md",{"user":536,"name":537},{"_path":602,"title":603,"description":604,"image":605,"publishDate":575,"tags":606,"_id":607,"author":608},"/bstevens/2019-3","Coding the Impossible","As you can see on the Art+Logic website, our slogan is Coding the \"impossible.\"®","/bstevens/2019-3/img/impossible.png",[588],"content:bstevens:2019-3:index.md",{"user":609,"name":610},"bstevens","Ben Stevens",{"_path":612,"title":613,"description":614,"publishDate":615,"tags":616,"_id":618,"author":619},"/ckeefer/2013-1/misc","JS Hints & Shortcuts","During the course of any complex project (and even many simple ones), on the way to accomplish the actual goal, you're certain to encounter any number of small hurdles along the way - little problems which need to be resolved for the bigger picture to come into focus.","2013-09-01",[617],"js","content:ckeefer:2013-1:misc.md",{"user":620,"name":621},"ckeefer","Christopher Keefer",{"_path":623,"title":624,"description":625,"publishDate":626,"tags":627,"image":632,"_id":633,"author":634},"/ckeefer/2013-2/xslt","XML and XSLT","Not terribly long ago, XML was the darling of the web. HTML4 was reformulated as XHTML 1.0, SOAP messages were XML, and let us not forget XMLHttpRequest.","2013-10-08",[628,629,630,631],"data-formats","xml","xsl","xslt","/ckeefer/2013-2/img/xslt-processing.png","content:ckeefer:2013-2:xslt.md",{"user":620,"name":621},{"_path":636,"title":637,"description":638,"publishDate":639,"tags":640,"image":643,"_id":644,"author":645},"/ckeefer/2013-3/ajax-upload","Ajax Upload Part I: Framed (and jQuery Deferred)","Inevitably, people want their files on the Internet. If your project is about cute cats, someone will task you with allowing users to upload photos of their cats, videos of their cats, long rambling audio clips in which they attempt to convince their cat to stop attacking the microphone, etcetera. If your project is about the nature and proclivities of mold, someone, somewhere will want to share detailed photographic evidence of their mold problem. The need to upload files is a given.","2013-03-20",[617,641,642],"jquery","html5","/ckeefer/2013-3/img/upframe.jpg","content:ckeefer:2013-3:ajax-upload.md",{"user":620,"name":621},{"_path":647,"title":648,"description":649,"publishDate":650,"tags":651,"_id":653,"author":654},"/ckeefer/2013-4/teaching-programming","Can (and Should) Everyone Learn to Program?","Fair warning: The following article is long, rambly, and contains no code. It does, however, contain some rumination on the idea that everyone can and should learn to program.","2013-12-03",[652],"programming","content:ckeefer:2013-4:teaching-programming.md",{"user":620,"name":621},{"_path":656,"title":657,"description":658,"publishDate":659,"tags":660,"image":662,"_id":663,"author":664},"/ckeefer/2013-5/ajax-uploader","Ajax Upload XHR2, Take 2","It's a pleasure to be able to interact with files in the browser at long last, isn't it? Reading files in without needing to bounce them against the server first opens up a lot of possibilities - and getting progress from a chunked ajax upload is miles away from the indeterminate form uploads of days past.","2014-02-19",[641,617,661],"xhr2","/ckeefer/2013-5/img/html5.jpg","content:ckeefer:2013-5:ajax-uploader.md",{"user":620,"name":621},{"_path":666,"title":667,"description":668,"publishDate":669,"tags":670,"_id":671,"author":672},"/ckeefer/2013-07/anchors-hash","Anchors, Hash Sign, javascript:void(0)","So, you've got a link that, in reality, is just a click target for performing some javascript function. You want the appearance of a standard anchor link, but if it's not performing the intended function, should it really be an anchor? And if so, what should we fill that 'href' attribute in with?","2013-07-29",[617],"content:ckeefer:2013-07:anchors-hash.md",{"user":620,"name":621},{"_path":674,"title":675,"description":676,"publishDate":677,"_id":678,"author":679},"/ckeefer/2013-07/static-vmware-host","Static Hosting with VMWare","Virtualization is one of the many benefits of the excess (metaphorical) horsepower available to us with modern hardware. Need to test against (Windows XP/7/8/NT || Fedora || Mint || Ubuntu || FreeBSD || MacOSX || etc)? Fire up the VM. Need a Linux environment for the packages your server relies on, but need to test in the iPad simulator? VM's to the rescue.","2013-07-26","content:ckeefer:2013-07:static-vmware-host.md",{"user":620,"name":621},{"_path":681,"title":682,"description":683,"publishDate":684,"tags":685,"_id":687,"author":688},"/ckeefer/2013-08/fullproof-fulltext-search","Client-side Fulltext Searching with Fullproof","Recently, I was engaged in a genial argument with a friend of an older generation, each of us taking an opposing stance on some obscure trivia neither of us was entirely certain about - but which we were both ready to defend with all the wit and rhetoric at our disposal. When we had finally exhausted all attempts to make the other budge on the matter, we turned to an authoritative 3rd-party source to lay the matter to rest for us - a Google search.","2013-08-29",[686,631],"search","content:ckeefer:2013-08:fullproof-fulltext-search.md",{"user":620,"name":621},{"_path":690,"title":691,"description":692,"publishDate":693,"tags":694,"_id":695,"author":696},"/ckeefer/2013-11/jquery-ajax-blobs","jQuery Ajax Blobs and Array Buffers","A big part of what makes jQuery a regular part of so many web projects is the clean interface it offers us for a number of sometimes messy built-in aspects of javascript. The most obvious is the DOM interface; and in second place, jquery ajax and its various shorthand methods. Abstracting away the difference between ActiveXObject and XMLHttpRequest is one of the most obvious benefits - but even if you don't need to worry about supporting old versions of IE, you might well enjoy the clean, object-based, promise-returning interface that jquery ajax offers.","2013-11-21",[617,641],"content:ckeefer:2013-11:jquery-ajax-blobs.md",{"user":620,"name":621},{"_path":698,"title":699,"description":700,"publishDate":701,"tags":702,"_id":704,"author":705},"/ckeefer/2013-12/deploying-with-git","Deploying Websites with Git","Deploying your webapp is an important part of the web development equation - your client's site isn't going to attract a lot of attention sitting in your local dev directory. Deployment concerns tend to fall to the bottom of the priority list, though, and the end result tends to be kludgy, hastily thrown-together deployment scripts; and because they are so kludgy and, often, time consuming, when time crunches threaten, a developer may resort to making changes directly on the remote server that need to be (but sometimes never are) backported to the code living in your version control.","2013-12-23",[703],"git","content:ckeefer:2013-12:deploying-with-git.md",{"user":620,"name":621},{"_path":707,"title":708,"description":709,"publishDate":710,"tags":711,"image":713,"_id":714,"author":715},"/ckeefer/2014-1/still-using-php","Still Using PHP?","Poor PHP. It's so lonely and unloved these days.","2014-01-29",[712],"php","/ckeefer/2014-1/img/php.jpg","content:ckeefer:2014-1:still-using-php.md",{"user":620,"name":621},{"_path":717,"title":718,"description":719,"publishDate":720,"tags":721,"image":723,"_id":724,"author":725},"/ckeefer/2014-2/ajax-upload-2","Ajax Upload Part II: XHR2 (and FileReader)","So, the client has told you their users should be able to upload their drunken party pictures for all the internet to see. \"We want the very best experience possible,\" they tell you. \"Simple, seamless - maybe using that new html5 thing I've heard so much about.\"","2013-04-09",[617,722],"xmlhttprequest","/ckeefer/2014-2/img/html5.jpg","content:ckeefer:2014-2:ajax-upload-2.md",{"user":620,"name":621},{"_path":727,"title":728,"description":729,"publishDate":730,"tags":731,"_id":733,"author":734},"/ckeefer/2014-3/customgmapsinfowindow","Custom Google Maps Info Windows","When it comes time to relate the ephemeral world of data to the physical world, Maps are key in both enterprise and consumer applications. Whatever else you might think of it, Google Maps tends to be the default option - certainly, its the only one I've ever had clients ask for by name.","2014-02-26",[617,732],"google-maps","content:ckeefer:2014-3:customgmapsinfowindow.md",{"user":620,"name":621},{"_path":736,"title":737,"description":738,"publishDate":739,"tags":740,"_id":742,"author":743},"/ckeefer/2014-4/hidden-options","Hidden Options: A Workaround","Here's the situation: You've got a select. Maybe a whole bunch of selects, with a ton of options each (metric ton - let's keep our imaginary hyperbolic units straight here); and these are meant to be complex interactive elements, with options made visible or not as some programmatic condition dictates.","2014-04-23",[741,617,641],"how-to","content:ckeefer:2014-4:hidden-options.md",{"user":620,"name":621},{"_path":745,"title":746,"description":747,"publishDate":748,"tags":749,"_id":750,"author":751},"/ckeefer/2014-5/cgwin2","Custom Google Info Windows: Updated, Live","April 30, 2014 at 3:22 am Remy says:","2014-05-09",[617,732],"content:ckeefer:2014-5:cgwin2.md",{"user":620,"name":621},{"_path":753,"title":754,"description":755,"publishDate":756,"tags":757,"image":760,"_id":761,"author":762},"/ckeefer/2014-6/backbonesocketsync","Websockets for Backbone","Backbone's had some of its thunder stolen lately by trendier frameworks like Meteor and Angular; for good reason, in most cases, as without the prosthetic functionality offered by the likes of Marionette, Backbone's view handling (amongst a few other lacks and warts) is really just 'roughed in'.","2014-06-25",[617,758,759],"websockets","backbone","/ckeefer/2014-6/img/WebsocketsPlusBackbone.png","content:ckeefer:2014-6:backbonesocketsync.md",{"user":620,"name":621},{"_path":764,"title":765,"description":766,"publishDate":767,"tags":768,"_id":769,"author":770},"/ckeefer/2014-7/promises","It's a (jQuery-style) Promise","Way back when I brought up the topic of promises (particularly, jQuery Deferred), and I promised we would come back to the topic someday.","2014-10-16",[617,641],"content:ckeefer:2014-7:promises.md",{"user":620,"name":621},{"_path":772,"title":773,"description":774,"publishDate":775,"tags":776,"_id":777,"author":778},"/ckeefer/2014-8/behold-views","Behold! (JavaScript Views)","JavaScript has the propensity to be very untidy - if you let it, it will sprawl all over the place. Hundreds of global variables scattered across dozens of files, messy half-measures towards object-orientation, mixed in seemingly at random with ungrouped functions - anyone who's had a client bring them a failed project from some other development team knows just how bad it can get.","2015-01-07",[617],"content:ckeefer:2014-8:behold-views.md",{"user":620,"name":621},{"_path":780,"title":781,"description":782,"publishDate":783,"tags":784,"image":785,"_id":786,"author":787},"/ckeefer/2015-1/writeonce","Write Once, Debug Everywhere","It's pretty seldom that anyone mentions web pages these days, other than in historical reference to days long gone by (yes, a whole few years ago). Web sites, sure, but not if what is really wanted is to replace something that, not so long ago, would have been some native code for a smartphone (or a little further back still, a desktop computer). Generally speaking, the most common term tripping from client's lips these days is 'web applications' - or webapps, because who has time for spaces and proper spelling, amirite?","2015-02-02",[617],"/ckeefer/2015-1/img/html5java.jpg","content:ckeefer:2015-1:writeonce.md",{"user":620,"name":621},{"_path":789,"title":790,"description":791,"publishDate":792,"tags":793,"_id":794,"author":795},"/ckeefer/2015-2/js-frameworks","The What and Why of Javascript Frameworks","JavaScript has the propensity to be very untidy if you let it be. This isn't a problem unique to JavaScript, of course - many other languages suffer from a lack of native organization, especially for specific tasks.","2015-05-29",[617],"content:ckeefer:2015-2:js-frameworks.md",{"user":620,"name":621},{"_path":797,"title":798,"description":799,"publishDate":800,"tags":801,"_id":804,"author":805},"/ckeefer/2015-3/emailvalidation","Email Validation with Django and python-social-auth","When it comes to user accounts, the standard litmus test is email validation. Besides the immediate benefits - of offering us a straightforward unique identifier for users, and making it more difficult to automate creating a mass of accounts on our service - by requiring that each account have an email address and interact therewith to confirm the addresses validity, it also offers us the chance to associate a known-working email account with a user account. This is important for transactional emails such as password resets or for potential two-factor authentication use... and if you're a little less ethical, for sending marketing desirable and informative emails about interesting products and services.","2015-07-23",[802,803],"python","django","content:ckeefer:2015-3:EmailValidation.md",{"user":620,"name":621},{"_path":807,"title":808,"description":809,"publishDate":810,"tags":811,"_id":812,"author":813},"/ckeefer/2015-5/file-reader-chunking","FileReader Chunking and Base64 DataURLs","In a hurry? You can now use our HUp jquery plugin to read files in a chunked fashion as data URLs. Hooray!","2015-12-15",[617,641],"content:ckeefer:2015-5:file-reader-chunking.md",{"user":620,"name":621},{"_path":815,"title":816,"description":817,"publishDate":818,"tags":819,"_id":820,"author":821},"/ckeefer/2016-1/ajaxbinarycaching","Caching Binary Data With jQuery Ajax and IndexedDB","After long, grueling months (years? or does it only feel like years?), your web application nears completion. It is tightly coded, well documented, works across all modern browsers, and is well received by your beta testers. It's nearly time to go live, and a smile of pure relief plays upon your lips... and freezes into a rictus grin when your client turns to you, and asks, \"so, hey, can we speed up the dynamic cat pic loading? Especially when I close the browser and come back to it later. I think that's really key to the whole application.\"","2016-04-25",[617,641],"content:ckeefer:2016-1:ajaxBinaryCaching.md",{"user":620,"name":621},{"_path":823,"title":824,"description":825,"publishDate":826,"tags":827,"_id":828,"author":829},"/ckeefer/2016-2/paymentprocessing","Payment Processing with Braintree","You've built the web application of the century, and the users have rightly flooded to it. Cat pictures for everyone!","2016-05-11",[803,617,641,802],"content:ckeefer:2016-2:paymentprocessing.md",{"user":620,"name":621},{"_path":831,"title":832,"description":833,"publishDate":834,"tags":835,"_id":836,"author":837},"/ckeefer/2016-3/djangochannels1","Django Channels: From the Ground Up - Part 1","You stare mournfully into the mass of code you've inherited. At some point, it's clear, the requirements called for the server to push information to the client, because there's an unholy mix of Server-Side Events, long-polling, hidden iframes and even a Java applet in there, all supporting some level of long-term connectivity with the server. It's almost fascinating in its barely functional hideousness, and you would be inclined to leave well enough alone... except for the new feature specifications you've been assigned, which require the client to be able to send data back to the server in response to the received events, in as close to real-time as you can get.","2016-06-13",[803,802,758],"content:ckeefer:2016-3:djangoChannels1.md",{"user":620,"name":621},{"_path":839,"title":840,"description":841,"publishDate":842,"tags":843,"_id":844,"author":845},"/ckeefer/2016-4/djangochannels2","Django Channels: From the Ground Up - Part 2","Last time, we decided to embark on a brave new adventure and give our Django framework a big upgrade with the inclusion of Django Channels. We got just far enough to get the development server running, but while this may be an adequate start, it's better to develop against something like what we intend to deploy, right?","2016-06-15",[803,802,758],"content:ckeefer:2016-4:djangochannels2.md",{"user":620,"name":621},{"_path":847,"title":848,"description":849,"publishDate":850,"tags":851,"_id":852,"author":853},"/ckeefer/2016-6/gofetch1","Go Fetch! (JavaScript Fetch API)","Long ago, we briefly brushed upon the topic of what has made jQuery such a valuable part of the web developer's toolset for such a long time - namely, a cleaner interface for interacting with the DOM, and the $.ajax abstraction over XMLHttpRequest.","2016-10-03",[617,641,465],"content:ckeefer:2016-6:goFetch1.md",{"user":620,"name":621},{"_path":855,"title":856,"description":857,"publishDate":858,"tags":859,"_id":860,"author":861},"/ckeefer/2016-7/gofetch2","Go Fetch 2! (JavaScript Fetch API)","Last time we discussed the Fetch API in general, taking a look at how it differed from the XMLHttpRequest API, and some of its advantages. Today, we're going to take a look at a little library that you can include in your projects today that offers you localStorage caching for the Fetch API.","2016-10-10",[617,641,465],"content:ckeefer:2016-7:goFetch2.md",{"user":620,"name":621},{"_path":863,"title":864,"description":865,"publishDate":866,"tags":867,"_id":870,"author":871},"/ckeefer/2016-8/herokupdf","Generating PDFs: wkhtmltopdf & Heroku","So, it has come to this.","2016-12-21",[868,869,802],"heroku","pdf","content:ckeefer:2016-8:HerokuPDF.md",{"user":620,"name":621},{"_path":873,"title":874,"description":875,"publishDate":876,"tags":877,"_id":878,"author":879},"/ckeefer/2017-1/downloadingclientsidecontent","Downloading Client-side Generated Content","A young developer, new to the Tao of the client-side, comes to a Master of the way, and speaks thusly: \"Oh Master, our application nears completion; and lo, cat pics can be drawn upon, and captions fixated thereto, for the creation of humour and the bounteous enjoyment of our users.\"","2017-02-06",[617],"content:ckeefer:2017-1:downloadingclientsidecontent.md",{"user":620,"name":621},{"_path":881,"title":882,"description":883,"publishDate":884,"tags":885,"_id":888,"author":889},"/ckeefer/2017-2/morepwatoya-part1","More PWA to Ya! (Progressive Web Apps, Part 1)","It's project kickoff time, and you're having a conversation with your client about what form the application will take:","2017-02-01",[886,887,465],"pwa","mobile","content:ckeefer:2017-2:MorePWAToYa-Part1.md",{"user":620,"name":621},{"_path":891,"title":892,"description":893,"tags":894,"publishDate":895,"_id":896,"author":897},"/ckeefer/2017-3/morepwatoya-part2","More PWA to Ya! (Progressive Web Apps, Part 2)","Last time, we got into the nitty gritty on how to make your web application into a Progressive Web Application (PWA to it's friends). I promised we'd dig even deeper this time, and show you how to make your web app a little more 'native' on Android - and how to deal with iOS Safari's special snowflake syndrome.",[887,886,465],"2017-03-01","content:ckeefer:2017-3:MorePWAToYa-Part2.md",{"user":620,"name":621},{"_path":899,"title":900,"description":901,"image":902,"publishDate":903,"tags":904,"_id":906,"author":907},"/ckeefer/2019-1/unlockingwebaudio","Unlocking Web Audio","\"It's going to be the coolest thing ever.\"","/ckeefer/2019-1/img/featured_image.jpg","2019-01-01",[617,905],"audio","content:ckeefer:2019-1:UnlockingWebAudio.md",{"user":620,"name":621},{"_path":909,"title":910,"description":911,"publishDate":912,"image":913,"tags":914,"_id":916,"author":917},"/ckeefer/2020-1/why-vue","Why Vue","Why choose Vue over any other front-end framework?","2020-01-01","/ckeefer/2020-1/img/vue-wall.jpg",[617,915],"vue","content:ckeefer:2020-1:Why Vue.md",{"user":620,"name":621},{"_path":919,"title":920,"description":921,"tags":922,"image":925,"publishDate":926,"_id":927,"author":928},"/ckeefer/2024-3/e2e_testing","E2E Testing: To What End?","Friend, can we agree that tests are a good idea? I won't scorn you for sometimes omitting them - time and budget constraints are what they are, and even the best intentioned of us sometimes have to just give our projects a lick and a promise. \"Proper test coverage soon\", you sweetly croon as you rock it to sleep, the knowledge that you're telling a dark, terrible lie twisting you up inside. Maybe you could just scrape enough budget together for some simple unit tests? Then, at least, you'd have \"tests\", right?",[486,485,923,924],"e2e","playwright","/ckeefer/2024-3/img/E2E_Testing_2024.png","2024-06-15","content:ckeefer:2024-3:e2e_testing.md",{"user":620,"name":621},{"_path":930,"title":931,"description":932,"tags":933,"image":935,"publishDate":936,"_id":937,"author":938},"/ckeefer/2024-7/vpubsub","Vue 3 Pub / Sub: All aboard the (event) bus","We like Vue at A+L. We think it's one of the best frontend frameworks, and a great choice pretty much anywhere you might otherwise be tempted to use React.",[617,915,934],"pub/sub","/ckeefer/2024-7/img/event_bus.png","2024-08-15","content:ckeefer:2024-7:VPubSub.md",{"user":620,"name":621},{"_path":940,"title":941,"description":942,"publishDate":943,"tags":944,"_id":945,"author":946},"/cmacksey/2012-5/php-musings","PHP Musings","Ran into an interesting, but thorough, rant the other day - PHP: A Fractal of Bad Design. The part that grabbed me the most was the analogy at the beginning, which was all too perfect:","2012-05-07",[712],"content:cmacksey:2012-5:php-musings.md",{"user":947,"name":948},"cmacksey","Chris Macksey",{"_path":950,"title":951,"description":952,"publishDate":953,"image":954,"author":955,"tags":956,"_id":962},"/cperez/2026-06-17/xamarin-to-maui","Migrating a Xamarin Medical Application to .NET MAUI","A widely used medical reference application built with Xamarin had become increasingly difficult to maintain as platform support deadlines approached. The client needed to modernize the application before operating system changes and framework deprecations created larger compatibility risks.","2026-06-22","/cperez/2026-06-17/img/xamarin-to-maui.png",{"name":13,"user":14},[957,958,959,960,961,887],"legacy modernization","xamarin",".net","maui","app migration","content:cperez:2026-06-17:xamarin-to-maui.md",{"_path":964,"title":965,"description":966,"publishDate":967,"image":968,"author":969,"tags":970,"_id":974},"/cperez/2026-06-25/ai_makes_modernization_feasible","How AI-Assisted Legacy Modernization Reduces Cost, Risk, and Project Timelines","Many organizations know they need to modernize their legacy applications. They also know why they haven't.","2026-06-25","/cperez/2026-06-25/img/ai_makes_modernization_feasible.png",{"name":13,"user":14},[957,971,972,973],"tech debt","ai","legacy migration","content:cperez:2026-06-25:ai_makes_modernization_feasible.md",{"_path":976,"title":977,"description":978,"publishDate":979,"image":980,"author":981,"tags":982,"_id":986},"/cperez/2026-06-30/how-ceos-should-evaluate-ai-investments","How Should CEOs Evaluate AI Investments?","CEOs should evaluate AI investments by asking whether the investment improves a measurable business outcome, changes a real workflow, keeps humans appropriately involved, has a realistic path to production, and creates value that outweighs cost and risk.","2026-06-30","/cperez/2026-06-30/img/how-ceos-should-evaluate-ai-investments.jpg",{"name":13,"user":14},[983,984,19,972,985],"agentic ai","ai investment","software development","content:cperez:2026-06-30:how-ceos-should-evaluate-ai-investments.md",{"_path":988,"title":989,"description":990,"publishDate":991,"image":992,"author":993,"tags":994,"_id":996},"/cperez/2026-07-02/hidden-costs-of-legacy-software","What Are the Hidden Costs of Legacy Software?","Legacy software is rarely “bad” software.","2026-07-02","/cperez/2026-07-02/img/hidden-costs-of-legacy-software.jpg",{"name":13,"user":14},[957,995],"legacy software","content:cperez:2026-07-02:hidden-costs-of-legacy-software.md",{"_path":998,"title":999,"description":1000,"publishDate":1001,"image":1002,"author":1003,"tags":1004,"_id":1006},"/cperez/2026-07-07/why-ai-projects-fail","Why Do Most AI Projects Fail?","AI projects rarely fail because the model was not powerful enough.","2026-07-07","/cperez/2026-07-07/img/why-ai-projects-fail.jpg",{"name":13,"user":14},[972,1005,985,18],"ethics","content:cperez:2026-07-07:why-ai-projects-fail.md",{"_path":1008,"title":1009,"description":1010,"publishDate":1011,"image":1012,"author":1013,"tags":1014,"_id":1018},"/cperez/2026-07-09/5-rs-application-modernization-legacy-software","Art+Logic’s 5 Rs of Application Modernization: How to Choose the Right Path for Legacy Software","Legacy software creates a strange kind of tension.","2026-07-09","/cperez/2026-07-09/img/5-rs-application-modernization-legacy-software.jpg",{"name":13,"user":14},[1015,1016,972,1017],"5-rs","legacy","application modernization","content:cperez:2026-07-09:5-rs-application-modernization-legacy-software.md",{"_path":1020,"title":1021,"description":1022,"publishDate":1023,"image":1024,"author":1025,"tags":1026,"_id":1028},"/cperez/2026-07-16/rebuild-vs-modernize-software-cfo-guide","Rebuild or Modernize? A Guide to Making the Right Software Investment","Every aging software system eventually reaches a financial decision point.","2026-07-16","/cperez/2026-07-16/img/rebuild-vs-modernize-software-cfo-guide.jpg",{"name":13,"user":14},[1027,973,971,1017,995],"modernization","content:cperez:2026-07-16:rebuild-vs-modernize-software-cfo-guide.md",{"_path":1030,"title":1031,"description":1032,"publishDate":1033,"image":1034,"author":1035,"tags":1036,"_id":1041},"/cperez/2026-07-21/building-digital-health-platforms-beyond-samd","Beyond SaMD: Building a Digital Health Platform That Can Evolve","A medical application can work exactly as designed and still fall short of what the organization needs next.","2026-07-21","/cperez/2026-07-21/img/building-digital-health-platforms-beyond-samd.jpg",{"name":13,"user":14},[1037,1016,1027,1038,1039,958,1040],"samd","biomedical","healthcare",".net maui","content:cperez:2026-07-21:building-digital-health-platforms-beyond-samd.md",{"_path":1043,"title":1044,"description":1045,"publishDate":1046,"image":1047,"author":1048,"tags":1049,"_id":1053},"/cperez/2026-07-23/why-ai-agents-need-software-developers","Beyond the Chatbot: Your AI Agent Is a Software Product, Not a Prompt","The AI-agent demo usually looks simple.","2026-07-23","/cperez/2026-07-23/img/why-ai-agents-need-software-developers.jpg",{"name":13,"user":14},[972,19,984,1050,983,1051,515,1052],"chatbots","ai agents","ai development","content:cperez:2026-07-23:why-ai-agents-need-software-developers.md",{"_path":1055,"title":1056,"description":1057,"publishDate":1058,"image":1059,"author":1060,"tags":1061,"_id":1063},"/cperez/2026-07-28/ai-assisted-legacy-modernization-business-logic","AI-Assisted Legacy Modernization: How to Move Faster Without Losing the Business Logic","AI can translate your Legacy Code. Can it preserve what your business actually depends on?","2026-07-28","/cperez/2026-07-28/img/ai-assisted-legacy-modernization-business-logic.jpg",{"name":13,"user":14},[957,1017,1062,971],"code migration","content:cperez:2026-07-28:ai-assisted-legacy-modernization-business-logic.md",{"_path":1065,"title":1066,"description":1067,"publishDate":1068,"image":1069,"author":1070,"tags":1071,"_id":1072},"/cperez/2026-08-04/technical-debt-enterprise-value","Technical Debt and Enterprise Value: What Your Software Is Really Costing the Business","Technical debt rarely announces itself as a financial problem.","2026-08-04","/cperez/2026-08-04/img/technical-debt-enterprise-value.jpg",{"name":13,"user":14},[971,957,973],"content:cperez:2026-08-04:technical-debt-enterprise-value.md",{"_path":1074,"title":1075,"description":1076,"publishDate":1077,"image":1078,"author":1079,"tags":1080,"_id":1083},"/cperez/2026-08-06/turnover-reveals-weak-software-architecture","Can Employee Turnover Reveal Weak Software Architecture?","When an engineer leaves, the initial plan usually feels manageable: someone else will step in, spend a few days getting up to speed, and keep the roadmap moving forward. However, this is often the moment when the questions begin. Suddenly, the team finds themselves wondering why changing a simple field breaks the reporting process, or which service is actually responsible for a specific calculation. They might encounter a dependency that everyone is afraid to touch or find that the application behaves unpredictably in production without any clear explanation.","2026-08-06","/cperez/2026-08-06/img/turnover-reveals-weak-software-architecture.png",{"name":13,"user":14},[1081,957,1082],"engineering turnover","software architecture","content:cperez:2026-08-06:turnover-reveals-weak-software-architecture.md",{"_path":1085,"title":1086,"description":1087,"publishDate":1088,"image":1089,"author":1090,"tags":1091,"_id":1097},"/cperez/2026-08-11/ai-prototype-to-production-business-results","Your AI Prototype Is Finished. The Software Project Isn’t.","The demonstration went well. The application accepted a request, generated the right response, and completed a task that normally takes someone much longer, so everyone left the meeting impressed.","2026-08-11","/cperez/2026-08-11/img/ai-prototype-to-production-business-results.jpg",{"name":13,"user":14},[17,1092,1093,1094,1095,1096],"software rescue","vibe-coded application rescue","ai prototype development","ai application modernization","custom ai software development","content:cperez:2026-08-11:ai-prototype-to-production-business-results.md",{"_path":1099,"title":1100,"description":1101,"publishDate":1102,"image":1103,"author":1104,"tags":1105,"_id":1107},"/cperez/2026-08-18/legacy-software-holding-business-back","Is Your Legacy Software Holding the Business Back?","The software still works, which is usually the first argument for leaving it alone.","2026-08-18","/cperez/2026-08-18/img/legacy-software-holding-business-back.jpg",{"name":13,"user":14},[957,972,1106,973],"ai-assisted modernization","content:cperez:2026-08-18:legacy-software-holding-business-back.md",{"_path":5,"title":9,"description":10,"publishDate":6,"image":11,"author":1109,"tags":1110,"_id":452},{"name":13,"user":14},[16,17,18,19],{"_path":1112,"title":1113,"description":1114,"publishDate":1115,"tags":1116,"_id":1118,"author":1119},"/dpopowich/2021-07-30/data-collector","Asynchronous Python - A Real World Example","A dive into a real example of async Python usage.","2021-07-30",[802,741,1117],"async","content:dpopowich:2021-07-30:data-collector.md",{"user":1120,"name":1121},"dpopowich","Daniel Popowich",{"_path":1123,"title":1124,"description":1125,"tags":1126,"image":1128,"publishDate":1129,"_id":1130,"author":1131},"/dpopowich/2023-8/postgres-pubsub","Using PostgreSQL for Pub/Sub","A+L has been working on a Single Page Application (SPA) wherein our client's users take on the role of Staff Users (think: project managers) as they aid their Customer Users in using the application to complete a complex project.",[1127,802,1117],"postgresql","/dpopowich/2023-8/img/psql_pub_sub.png","2024-04-15","content:dpopowich:2023-8:postgres-pubsub.md",{"user":1120,"name":1121},{"_path":1133,"title":1134,"description":1135,"tags":1136,"image":1139,"publishDate":1140,"_id":1141,"author":1142},"/ewahl/2025-05/escape_deployment_hell","Escape Deployment Hell: IaC, CDK, Ephemeral Environments, and the Pragmatic Path to Platform Power","Another Friday afternoon, another deployment fire. If this sounds familiar, you're not alone. On too many projects, the chasm between application code and infrastructure management breeds manual configuration nightmares, crippling complexity, and agonizingly slow development cycles. But what if your team could sidestep this chaos, focusing on building features instead of constantly battling deployment gremlins?",[1137,1138,802],"devops","aws","/ewahl/2025-05/img/deployment_hell.png","2025-05-13","content:ewahl:2025-05:escape_deployment_hell.md",{"user":1143,"name":1144},"ewahl","Edward F. Wahl",{"_path":1146,"title":1147,"description":1148,"publishDate":1149,"image":1150,"tags":1151,"_id":1152,"author":1153},"/ewahl/2025-06/argued_with_ai","I Argued With an AI for 20 Minutes About Async Code &mdash; And I'm Surprisingly Happy","If you have ever spent twenty minutes debating an obscure AWS Lambda invocation pattern with an AI, you might question your life choices. But here I am: amused by the wasted time but ultimately happy with the outcome and understanding I gained.","2026-06-01","/ewahl/2025-06/img/argued_with_ai.png",[1137,1138,802],"content:ewahl:2025-06:argued_with_ai.md",{"user":1143,"name":1144},{"_path":1155,"title":1156,"description":1157,"publishDate":1158,"image":1159,"author":1160,"tags":1161,"_id":1163},"/ewahl/2026-07/goodharts-law-ai-coding-agents","Why AI Coding Agents Still Need Human Experts","An AI coding agent quietly steered my protected test suite away from a money bug — the same failure mode that forced OpenAI to retire SWE-bench Verified. Goodhart's Law explains why, and why the demand for senior engineers goes up, not down, as agents improve.","2026-07-30","/ewahl/2026-07/img/goodharts-law-ai-coding-agents.jpg",{"name":1144,"user":1143},[972,983,1162],"human in the loop","content:ewahl:2026-07:goodharts-law-ai-coding-agents.md",{"_path":1165,"title":1166,"description":1167,"tags":1168,"image":1169,"publishDate":586,"_id":1170,"author":1171},"/jbagley/2019-4/makingspectrogramsinjuce","Making Spectrograms in JUCE","Art+Logic's Incubator project has made a lot of progress. In a previous post I mentioned that Dr. Scott Hawley's technique to classify audio involved converting audio to an image and using a Convolution Neural Network (CNN) to classify the audio based on this image. That image is a spectrogram. I'm going to go into some detail about what we do to create one, and why to the best of my ability.",[503,578,905],"/jbagley/2019-4/img/Fortissimo_Trumpet_Ensemble_Matrix_Swells_61.wav-2048x1700.png","content:jbagley:2019-4:MakingSpectrogramsInJUCE.md",{"user":1172,"name":1173},"jbagley","Jason Bagley",{"_path":1175,"title":1176,"description":1177,"tags":1178,"image":1180,"publishDate":1181,"_id":1182,"author":1183},"/jbagley/2021-07/softwaresenescence","Legacy Vulnerabilities AKA Software Senescence","Does your business still have an XT computer in the back office because it's\nrunning that one version of some database software that your business depends\non? Yeah, we know there is. Most modern software doesn't work like that.",[1016,1179],"project-management","/jbagley/2021-07/img/old_software_to_new.jpg","2021-07-01","content:jbagley:2021-07:SoftwareSenescence.md",{"user":1172,"name":1173},{"_path":1185,"title":1186,"description":1187,"tags":1188,"image":1190,"publishDate":1191,"_id":1192,"author":1193},"/jbagley/2021-08-01/accuratetiming","Accurate Timing","In many tasks we need to do something at given intervals of time. The most obvious ways may not give you the best results.",[578,1189],"timing","/jbagley/2021-08-01/img/accurateTiming.jpg","2021-08-01","content:jbagley:2021-08-01:AccurateTiming.md",{"user":1172,"name":1173},{"_path":1195,"title":1196,"description":1197,"tags":1198,"image":1202,"publishDate":1203,"_id":1204,"author":1205},"/jbagley/2023-06-01/universal_ffmpeg_custom_builds","Building Universal FFmpeg Custom Binaries","I am using a very pared down set of FFMpeg features for a macOS project that I\nbuild into a custom library. I had a script set up to configure the build which\nworked fine on my Intel based MacBook Pro. Then I upgraded to an Apple Silicon\nMacBookPro and wanted to run natively, or at least see what happened when I\ndid. To build, FFMpeg uses autoconf which produces a makefile that then handles\nthe build.",[1199,1200,1201,501],"c","bash","ffmpeg","/jbagley/2023-06-01/img/header.png","2024-04-01","content:jbagley:2023-06-01:Universal_FFMPEG_custom_builds.md",{"user":1172,"name":1173},{"_path":1207,"title":1208,"description":1209,"publishDate":1210,"image":1211,"tags":1212,"_id":1216,"author":1217},"/jbagley/2025-08/a_developers_primer_on_apple_tracking_transparency","A Primer on Apple's App Tracking Transparency","If an app tracks user activity, Apple requires them to declare all information they collect as well as whether that data is linked or tracked. This includes collection by the app itself and any third parties the app uses. The app owner is responsible for knowing and correctly reporting privacy information for all components in the app.","2026-05-22","/jbagley/2025-08/img/apple_app_transparency.png",[1213,1214,500,1215],"app tracking transparency","att","macos","content:jbagley:2025-08:a_developers_primer_on_apple_tracking_transparency.md",{"user":1172,"name":1173},{"_path":1219,"title":1220,"description":1221,"tags":1222,"image":1226,"publishDate":1227,"_id":1228,"author":1229},"/jestep/2023-3/fastapi","FastAPI: A High-Performance Python Framework for Rapid Web Development","FastAPI is a modern and high-performance Python web framework designed specifically for building APIs and web applications quickly and efficiently. Developed by Sebastián Ramírez and first released in 2018, FastAPI has rapidly gained traction in the developer community thanks to its focus on providing key features for API and web app development with excellent performance.",[802,1223,803,1224,1225],"fastapi","flask","pyramid","/jestep/2023-3/img/header.png","2024-05-01","content:jestep:2023-3:fastapi.md",{"user":1230,"name":1231},"jestep","Jagger Estep",{"_path":1233,"title":1234,"description":1235,"publishDate":1236,"tags":1237,"image":1241,"_id":1242,"author":1243},"/nharrison/2012-07/core-data","Securing Your Core Data with Transformable Attributes","In order to store private data in an iOS Core Data database, there are several methods available for encryption, including:","2012-07-30",[1238,1239,500,515,1240],"core-data","encryption","objective-c","/nharrison/2012-07/img/superman.jpg","content:nharrison:2012-07:core-data.md",{"user":1244,"name":1245},"nharrison","Noah Harrison",{"_path":1247,"title":1248,"description":1249,"tags":1250,"publishDate":1255,"image":1256,"_id":1257,"author":1258},"/phendry/2019-3/restfromthebottomup","REST from the Bottom Up","The RESTful API has a funny place in the software development world: it's widely regarded as the best general-purpose pattern for building web application APIs, and yet it's also nebulous enough of a concept to cause endless disagreements within teams over exactly how to implement one.",[1251,1252,1253,1254],"rest","api","web","architecture","2019-10-01","/phendry/2019-3/img/feature_image.png","content:phendry:2019-3:RestFromTheBottomUp.md",{"user":1259,"name":1260},"phendry","Paul Hendry",{"_path":1262,"title":1263,"description":1264,"tags":1265,"publishDate":1181,"image":1266,"_id":1267,"author":1268},"/phendry/2021-06/smoothupgradestovue3","Smooth Upgrades to Vue 3","This post assumes basic familiarity with Vue.js v2.x.",[617,915,741],"/phendry/2021-06/img/vue-transition.jpg","content:phendry:2021-06:SmoothUpgradesToVue3.md",{"user":1259,"name":1260},{"_path":1270,"title":1271,"description":1272,"image":1273,"tags":1274,"publishDate":1115,"_id":1275,"author":1276},"/phendry/2021-07-30/spotthevulndataranges","Spot the Vulnerability: Data Ranges and Untrusted Input","In 1997, a flaw was discovered in how Linux and Windows handled IP fragmentation, a Denial-of-Service vulnerability which allowed systems to be crashed remotely.","/phendry/2021-07-30/img/vulnerability.jpg",[515,465],"content:phendry:2021-07-30:SpotTheVulnDataRanges.md",{"user":1259,"name":1260},{"_path":1278,"title":1279,"description":1280,"tags":1281,"image":1282,"publishDate":1283,"_id":1284,"author":1285},"/phendry/2021-08-15/exploringdependenttypesinidris","Exploring Dependent Types in Idris","When I'm not coding the \"impossible\" at Art+Logic, I take a lot of interest in new programming technologies and paradigms; even if they're not yet viable for use in production, there can often be takeaways for improving your everyday code.",[652],"/phendry/2021-08-15/img/dependent-types.jpg","2021-08-15","content:phendry:2021-08-15:ExploringDependentTypesInIdris.md",{"user":1259,"name":1260},{"_path":1287,"title":1288,"description":1289,"tags":1290,"image":1291,"publishDate":1292,"_id":1293,"author":1294},"/phendry/2021-10-30/spotthevulnloopsandtermconditions","Spot the Vulnerability: Loops and Terminating Conditions","In memory-unsafe languages like C, special care must be taken when copying untrusted data, particularly when copying it to another buffer. In this post, we'll spot and mitigate a past vulnerability in Linux's NTP daemon.",[515,465],"/phendry/2021-10-30/img/vulnerability-2.jpg","2021-10-30","content:phendry:2021-10-30:SpotTheVulnLoopsAndTermConditions.md",{"user":1259,"name":1260},{"_path":1296,"title":1297,"description":1298,"image":1299,"tags":1300,"publishDate":1301,"_id":1302,"author":1303},"/phendry/2022-07-21/migratingfromexpresstofastifypart1","Migrating from Express to Fastify, Part 1","Express.js has for years been the dominant lightweight Web framework for Node.js, but over time its development has stalled, with its latest major version (5.0) still in pre-release nearly eight years after its first alpha release. There's a lot to be said for this sort of stability in a foundational dependency for a project, but it's worth assessing whether the added features of competing frameworks are worth making a switch. In this article we'll be looking at Fastify in particular, to understand what it has to offer compared to Express and how difficult it is to migrate an existing Express project.","/phendry/2022-07-21/img/Migrating from Express to Fastify, Part 1.png",[617,465],"2023-12-01","content:phendry:2022-07-21:MigratingFromExpressToFastifyPart1.md",{"user":1259,"name":1260},{"_path":1305,"title":1306,"description":1307,"image":1308,"tags":1309,"publishDate":1310,"_id":1311,"author":1312},"/phendry/2022-07-28/migratingfromexpresstofastifypart2","Migrating from Express to Fastify, Part 2","In Part 1, we looked at the features of the Fastify Node.js Web framework compared to Express.js. In Part 2, we'll work through migrating an example Express.js application to Fastify.","/phendry/2022-07-28/img/Migrating from Express to Fastify, Part 2.png",[617,465],"2023-12-31","content:phendry:2022-07-28:MigratingFromExpressToFastifyPart2.md",{"user":1259,"name":1260},{"_path":1314,"title":1315,"description":1316,"tags":1317,"image":1318,"publishDate":1319,"_id":1320,"author":1321},"/phendry/2023-01-19/badcode","\"Bad\" Code (Or, Why Software Development is Hard)","Recently, the Dutch government open-sourced the iOS application for their \"DigiD\" authentication service. A tweet with a snippet of that source code, presumably making fun of it, blew up into a debate about whether mocking it is even justified. The amount of debate over such a simple snippet of code highlights, in my mind, just how tricky software development can be.",[515,465],"/phendry/2023-01-19/img/Bad Code.png","2024-01-15","content:phendry:2023-01-19:BadCode.md",{"user":1259,"name":1260},{"_path":1323,"title":1324,"description":1325,"image":1326,"publishDate":1327,"tags":1328,"_id":1329,"author":1330},"/phendry/2023-01-31/forgetaboutcodestyle","Forget About [Code] Style","Good code style, being highly subjective, is something often debated among developers. After all, we spend more time reading code than writing it, so it's worth making sure our code is styled to be as easy as possible to read and to understand. On the other hand, deciding upon and continuously enforcing a style is also time-consuming, and the benefits are near-impossible to quantify. Given that modern code formatting tools can fully automate the process, is it still worth fretting about style?","/phendry/2023-01-31/img/forget_style_header.png","2024-02-01",[652],"content:phendry:2023-01-31:ForgetAboutCodeStyle.md",{"user":1259,"name":1260},{"_path":1332,"title":1333,"description":1334,"image":1335,"tags":1336,"publishDate":1337,"_id":1338,"author":1339},"/phendry/2023-04-02/semantichtml","Don't Give Up on Semantic HTML","Since the early days of the Web, there has been tension between the ideal of \"semantic HTML\" and the practical reality of designing complex page layouts, which often could not be achieved without inserting style concerns into the document. More recently, frameworks like Tailwind CSS have emerged which challenge the very idea that semantic HTML is an ideal to strive for, and which commit to thoroughly embedding style concerns into HTML documents. With modern CSS features however, semantic HTML is more achievable than ever, and I do think it remains a worthy goal.","/phendry/2023-04-02/img/Don't Give Up on Semantic HTML.png",[652],"2024-03-01","content:phendry:2023-04-02:SemanticHtml.md",{"user":1259,"name":1260},{"_path":1341,"title":1342,"description":1343,"image":1344,"tags":1345,"publishDate":1346,"_id":1347,"author":1348},"/phendry/2023-05-16/doyouneedacsspreprocessor","Do You Need a CSS Preprocessor in 2023?","CSS preprocessors like Less, Sass and Stylus have long provided powerful features that vanilla CSS lacked: variables, nesting of rulesets, mixins, control flow constructs, etc. These days however, the feature gap is considerably narrower, and it's not so clear that the benefits of a preprocessor outweight the burdens of setting it up.","/phendry/2023-05-16/img/css_preprocessor_header.png",[652],"2023-01-01","content:phendry:2023-05-16:DoYouNeedACSSPreprocessor.md",{"user":1259,"name":1260},{"_path":1350,"title":1351,"description":1352,"image":1353,"publishDate":1354,"tags":1355,"_id":1356,"author":1357},"/phendry/2023-07-28/dependencymanagement","Software Dependency Management: Best Practices","Leveraging third-party libraries and frameworks is essential in most modern software projects, and the projects we build at Art+Logic are no exception. The pressure on developers to rapidly deliver features is high, and there are so many commonalities in the details of each project (particularly in Web development) that a lot of development time can be saved by using well-designed libraries that handle the details.","/phendry/2023-07-28/img/dependency_header.png","2023-01-02",[652],"content:phendry:2023-07-28:DependencyManagement.md",{"user":1259,"name":1260},{"_path":1359,"title":1360,"description":1361,"tags":1362,"publishDate":1365,"image":1366,"_id":1367,"author":1368},"/phendry/2023-11-06/frontendframeworksin2024","Frontend Frameworks in 2024: React, Svelte and Vue","Several years ago, Art+Logic settled on Vue.js as our preferred frontend Web framework. Now, in 2024, we feel it's time to revisit the frontend framework landscape to see how things have (or haven't) changed.",[652,1363,1364,915],"react","svelte","2024-05-15","/phendry/2023-11-06/img/frontend_frameworks_2024.png","content:phendry:2023-11-06:FrontendFrameworksIn2024.md",{"user":1259,"name":1260},{"_path":1370,"title":1371,"description":1372,"publishDate":1373,"tags":1374,"image":1377,"_id":1378,"author":1379},"/rbrubaker/2012-06/arduino-thermometer","Turn Your Mac into a Thermometer with Arduino","The topic of the Arduino came up around A&L's \"virtual water cooler\" last week. About a year and a half ago, I purchased a SparkFun Inventor's Kit for Arduino. The kit is a fun way for a hardware novice like me to get started and learn some basics. It comes with more than a dozen sample projects such as lighting LEDs, spinning a motor and generating audio.","2012-06-28",[1375,1376],"arduino","java","/rbrubaker/2012-06/img/arduino1.jpg","content:rbrubaker:2012-06:arduino-thermometer.md",{"user":1380,"name":1381},"rbrubaker","Ryan Brubaker",{"_path":1383,"title":1384,"description":1385,"publishDate":1386,"tags":1387,"_id":1390,"author":1391},"/rbrubaker/2012-06/coffe-backbone-1","Fun with CoffeeScript and Backbone.js : Part 1","CoffeeScript has been all the rage lately and I've been wanting to hop on board the bandwagon. I've also seen Backbone.js mentioned quite a bit and was even more intrigued after listening to this .NET Rocks podcast. I decided to convert some plain JavaScript code I had in a side project to use both CoffeeScript and Backbone.js and see how things went.","2012-06-06",[1388,1389,642,465],"backbone-js","coffeescript","content:rbrubaker:2012-06:coffe-backbone-1.md",{"user":1380,"name":1381},{"_path":1393,"title":1394,"description":1395,"publishDate":1396,"tags":1397,"_id":1398,"author":1399},"/rbrubaker/2012-06/coffee-backbone-2","Fun with CoffeeScript and Backbone.js : Part 2","In this post I’ll discuss the code that handles updating the UI.","2012-06-07",[1388,1389,642,465],"content:rbrubaker:2012-06:coffee-backbone-2.md",{"user":1380,"name":1381},{"_path":1401,"title":1402,"description":1403,"publishDate":1404,"tags":1405,"_id":1406,"author":1407},"/rbrubaker/2012-06/coffee-backbone-3","Fun with CoffeeScript and Backbone.js : Part 3","In this post I’ll discuss my thoughts on CoffeeScript and Backbone.js.","2012-06-08",[1388,1389,642,465],"content:rbrubaker:2012-06:coffee-backbone-3.md",{"user":1380,"name":1381},{"_path":1409,"title":1410,"description":1411,"publishDate":1412,"tags":1413,"_id":1414,"author":1415},"/rbrubaker/2012-07/prototypal-js","Prototypal vs. Functional Inheritance in JavaScript","If you ever found JavaScript's prototypal inheritance confusing, do yourself a favor and open this article, open a JavaScript console and code each example in the article. You will definitely come away with a better understanding of how prototypal inheritance works in JavaScript.","2012-07-11",[1389,617],"content:rbrubaker:2012-07:prototypal-js.md",{"user":1380,"name":1381},{"_path":1417,"title":1418,"description":1419,"publishDate":1420,"tags":1421,"_id":1422,"author":1423},"/rbrubaker/2012-07/whither-pm","Whither Project Management?","When I was first asked to manage a project at Art & Logic, I had my reservations. Did I really want to start down a career path that led to less development? Would my skills as a developer go stale? My first few projects as a manager were solo projects so I still had plenty of development work and fortunately, I found myself to be a pretty easy person to manage. As time went on I started managing larger projects and with them came the responsibility to manage other developers. To my surprise I found project management to be rewarding and dare I say, even fun. It's very satisfying to work with clients, helping them define their visions and seeing those visions come to life.","2012-07-25",[1179],"content:rbrubaker:2012-07:whither-pm.md",{"user":1380,"name":1381},{"_path":1425,"title":1426,"description":1427,"tags":1428,"image":1431,"publishDate":586,"_id":1432,"author":1433},"/scharette/2019-4/discover_machine_learning","Discover Machine Learning","Computers have been around for less than 100 years.  In that short period of time, some incredible things have happened:  they've been universally adopted so quickly that we have them in our houses.  In our cars.  Even in our pockets.  In the last 40 years, there have been many significant events when it comes to computers:",[1429,1430,578],"machine-learning","neural-networks","/scharette/2019-4/img/discover_machine_learning.png","content:scharette:2019-4:discover_machine_learning.md",{"user":1434,"name":1435},"scharette","Stéphane Charette",{"_path":1437,"title":1438,"description":1439,"publishDate":1440,"image":1441,"tags":1442,"_id":1444,"author":1445},"/shuey/2012-05/baas","BaaS Offerings Continue to Grow","The makers of Simplenote recently introduced their Backend as a Service (BaaS) offering called Simperium that looks to compete in an increasingly crowded space with services like CloudMine, Kinvey, and Parse and to some extent with iCloud for iOS and OS X only apps. So just how crowded is this space? Back in February, Kinvey published their own map of the BaaS ecosystem that highlights different tiers of the ecosystem and various relationships between them.","2012-05-10","/shuey/2012-05/img/header.png",[1443],"baas","content:shuey:2012-05:baas.md",{"user":1446,"name":1447},"shuey","Steven Huey",{"_path":1449,"title":1450,"description":1451,"publishDate":1452,"tags":1453,"image":1455,"_id":1456,"author":1457},"/shuey/2012-05/cloud","Under the Sheets with iCloud and Core Data","Drew McCormack is writing a great series (Part 1, Part 2, Part 3) of posts about using iCloud for syncing Core Data managed data. It's harder than Apple lets on and Drew has done a great job of uncovering how this actually works.","2012-05-28",[501,1454],"icloud","/shuey/2012-05/img/icloud.jpg","content:shuey:2012-05:cloud.md",{"user":1446,"name":1447},{"_path":1459,"title":1460,"description":1461,"publishDate":1462,"tags":1463,"_id":1465,"author":1466},"/shuey/2012-05/economics-android","The Economics of Android","If you haven't already do yourself a favor and head over to asymco.com to catch Horace Deidu's multi-post series on \"The Economics of Android\". Horace and Dan Benjamin discuss the series during this week's Critical Path podcast as well. Horace is a former analyst for Nokia and has been writing Asymco for a few years now. His analysis of the mobile industry and Apple's place within it in particular has been featured in publications such as Bloomberg and Forbes.","2012-05-17",[1464],"android","content:shuey:2012-05:economics-android.md",{"user":1446,"name":1447},{"_path":1468,"title":1469,"description":1470,"publishDate":943,"tags":1471,"_id":1474,"author":1475},"/shuey/2012-05/iot","The Internet of Things and Big Data","I've been following the developments in the \"Internet of Things\" and Big Data / Open Data markets as new apps and tools are released and they look to be two exciting technologies on a collision course. With the advent of internet connected home appliances like Wattvision and Nest that provide real utility to the average home owner at reasonable prices along with crowd funded projects like Air Quality Egg or Twine we should see an explosion in the kinds and amount of useful and real-time or near real-time data that is available to anyone with a smartphone. Health metric or \"quantitative self\" tracking devices such as Fitbit, Jawbone Up, and the Pebble watch will fuel this data explosion as well.",[1472,1473],"big-data","iot","content:shuey:2012-05:iot.md",{"user":1446,"name":1447},{"_path":1477,"title":1478,"description":1479,"publishDate":1480,"tags":1481,"image":1483,"_id":1484,"author":1485},"/shuey/2012-05/rubymotion","RubyMotion Brings Ruby to iOS","RubyMotion is a new development toolchain that allows you to build iOS apps using Ruby created by Laurent Sansonetti, a former Apple engineer and contributor to the MacRuby project. It has garnered a lot of attention the past few weeks and some detailed reviews have already been written:","2012-05-14",[500,1482],"ruby","/shuey/2012-05/img/logotype-icon.png","content:shuey:2012-05:rubymotion.md",{"user":1446,"name":1447},{"_path":1487,"title":1488,"description":1489,"publishDate":1490,"tags":1491,"image":1492,"_id":1493,"author":1494},"/shuey/2012-06/thoughts-ios6","A few thoughts on iOS 6","Apple made their session videos from WWDC 2012 available earlier this week in record time. It's nice to see since tickets for this years event sold out in under two hours. Apple has an iOS 6 Preview page touting some of the new features such as Siri's new abilities, tighter integration with Facebook, Photo Stream sharing, and things like iCloud tabs for Safari all of which look great.","2012-06-21",[501,500],"/shuey/2012-06/img/ios6.jpg","content:shuey:2012-06:thoughts-ios6.md",{"user":1446,"name":1447},{"_path":1496,"title":1497,"description":1498,"publishDate":1499,"tags":1500,"image":1502,"_id":1503,"author":1504},"/shuey/2012-07/mixer","A Simple Mixer Using AVFoundation","In iOS 4.0 Apple introduced the AV Foundation APIs that made working with audio and video media much easier than it had been in previous versions of iOS. Apple then brought these APIs to Mac OS X in OS X 10.7 \"Lion\". In this post I'll show how to use some of the APIs to create a simple four track mixer.","2012-07-02",[501,1501,500],"cocoa","/shuey/2012-07/img/mixer-screenshot.jpg","content:shuey:2012-07:mixer.md",{"user":1446,"name":1447},{"_path":1506,"title":1507,"description":1508,"publishDate":1509,"tags":1510,"image":1511,"_id":1512,"author":1513},"/shuey/2012-07/reset-button","The Reset Button","Horace Dediu of Asymco has been publishing some fantastic insights and analysis of the mobile market in the past few weeks. I linked to some of Dediu's analysis of the Economics of Android in an earlier post, and since then he's updated his work with the latest data and is studying RIM and Microsoft's efforts in the space as well.","2012-07-19",[1464,501,500],"/shuey/2012-07/img/kevin.jpg","content:shuey:2012-07:reset-button.md",{"user":1446,"name":1447},{"_path":1515,"title":1516,"description":1517,"publishDate":1518,"tags":1519,"image":1521,"_id":1522,"author":1523},"/tfarrel/2012-07","Looking at Steganography","With the help of one of my favorite news aggregators, I discovered this article on using JavaScript and the canvas element to hide information inside images. I've long been fascinated by steganography and this article and demonstration makes it even more accessible. If you can't be bothered to read the article, it describes a method of using the HTML5 File API and the canvas element to embed a message in images.","2012-07-24",[1520],"steganography","/tfarrel/2012-07/img/white.png","content:tfarrel:2012-07:index.md",{"user":1524,"name":1525},"tfarrel","Troy Farrel",1787245444761]