Claris Beyond Meetup – FileMaker Diagnostics, Analysis, and Data Visualization with InspectorPro

Beezwax’s Vincenzo (Vince) Menanno is presenting to audiences of FileMaker developers at meetups and conferences, on the topic of “InspectorPro 8 for FileMaker: Investigate, Accelerate, Collaborate”.

At the March 2024 Claris Beyond Meetup, Vince covers diagnostics, analysis and data visualization with InspectorPro for FileMaker. He shares the latest research, development best practices, and product offerings. Vince also has a number of surprises up his sleeves that he can’t wait to show. If you’re a FileMaker Developer attending, we hope to see you there!

Continue reading “Claris Beyond Meetup – FileMaker Diagnostics, Analysis, and Data Visualization with InspectorPro”

FileMaker Meetups Ann Arbor + Milwaukee – InspectorPro 8: Investigate, Accelerate, Collaborate

Beezwax’s Vincenzo (Vince) Menanno is presenting to audiences of FileMaker developers at meetups and conferences, on the topic of “InspectorPro 8 for FileMaker: Investigate, Accelerate, Collaborate”.

At the March 2024 shared meetups for Ann Arbor FileMaker + Milwaukee Area FileMaker Devs, Vince shares the latest research, development best practices, and product offerings. Vince has a number of surprises up his sleeves that he can’t wait to show. If you’re a FileMaker Developer attending, we hope to see you there!

Continue reading “FileMaker Meetups Ann Arbor + Milwaukee – InspectorPro 8: Investigate, Accelerate, Collaborate”

FileMaker for Research Group – InspectorPro 8: Investigate, Accelerate, Collaborate

Beezwax’s Vincenzo (Vince) Menanno is presenting to audiences of FileMaker developers at meetups and conferences, on the topic of “InspectorPro 8 for FileMaker: Investigate, Accelerate, Collaborate”.

At the March Meetup for FileMaker for Research Users Group, Vince shares the latest research, development best practices, and product offerings. Vince has a number of surprises up his sleeves that he can’t wait to show. If you’re a FileMaker Developer attending, we hope to see you there!

Continue reading “FileMaker for Research Group – InspectorPro 8: Investigate, Accelerate, Collaborate”

GitOps with GitHub Actions

Today we’re going to talk about GitOps with GitHub Actions, including an example of this workflow:

A developer team creates a new branch, with a Pull Request (PR), which triggers a GitHub Action, which runs AWS CodeDeploy, which deploys the application code update from GitHub to a web application on an Amazon EC2 instance.

Originally presented at Beezwax’s internal “Developer Show & Share”, this video presentation covers “GitOps with GitHub Actions” by Victor Olivo, Beezwax DevOps Engineer.

Continue reading “GitOps with GitHub Actions”

Useful Vim Mappings

A few mappings to help boost your Vim workflow.

Rotate through different line numbering settings

Switch between absolute line numbers (normal), relative numbers (based on distance from your cursor) and no numbers at all using CTRL-n:

Continue reading “Useful Vim Mappings”

hello San Antonio. hello FileMaker DevCon.

It’s FileMaker Developer Conference time, with 8 Beez in San Antonio for DevCon. We’re studying new development techniques from FileMaker Inc. and our industry peers, sharing a few methods of our own and even riding a few mechanical bulls at a real live cattle ranch!

Continue reading “hello San Antonio. hello FileMaker DevCon.”

Setting the Commit Author to Pair Programmers’ Names in Git

[Authored by Sam]

In beezwax’s webdev division we generally work in pairs, but our commit logs didn’t used to show this. We wouldn’t bother to reconfigure the git author every time we sat down with a new pair so our git log only recorded one of the programmers’ names. Bryan Helmcamp has a nice script for setting your git commit author in pair programming situations. Here’s another one which works interactively.

Continue reading “Setting the Commit Author to Pair Programmers’ Names in Git”

A Use For Git’s Post-Commit Hook

[Authored by Sam]

I love git and I love to be lazy, so lately I’ve been playing with git hooks.

Git’s default pre-commit hook is really handy, but today I’m in more of a post-commit kind of mood.  Like all git’s hooks it comes with an example script.

Continue reading “A Use For Git’s Post-Commit Hook”