Categories
Current Events Tampa Bay

Virtual Ignite Tampa Bay — See the best of Ignite Tampa Bay! Thursday, April 16 @ 7 p.m.

Turn off the TV, Nix the Netflix, give Amazon Prime video a break tonight: Go watch Ignite Tampa Bay tonight at 7:00 p.m. Eastern, online at 88r.org/ignitelive! That’s when we’ll be showing the best of Ignite Tampa Bay, the event where Tampa’s most interesting people give tapas-sized TED talks!

Ignite Tampa Bay is an evening of talks that follow the philosophy of “Enlighten us, but make it quick!” It turns the standard speaker-and-audience format on its ear by adding some interesting constraints:

  • Each speaker is limited to exactly 5 minutes for his or her presentation.
  • Each presentation is accompanies by 20 slides, no more, no less.
  • The speaker has no control over when the slides advance; they automatically advance every 15 seconds.

The five minute limit forces speakers to whittle their presentations down to the essence of their talk, and the auto-advancing slides make it necessary to practice, practice, practice.

Here’s an example of an Ignite talk from Ignite Toronto 4, which took place over a decade ago. It’s my rather drunken “Go Busk Yourself” talk:

Ignite Toronto 4: Joey DeVilla: Go Busk Yourself from Ignite Toronto on Vimeo.

The 2020 edition of Ignite Tampa Bay may have been undone by the novel coronavirus, but it doesn’t mean that we can’t hold an event. Rather than gather people at the Palladium in St. Pete — hopefully, we’ll be able to do it next year — we decided to hold a “Best of Ignite Tampa Bay” viewing party!

We’ll be showing the past decade’s Ignite Tampa Bay talks that caught people’s attention, made them think or laugh (or both), and put forth interesting ideas.

(And yes, they picked my 2015 Ignite talk on the importance of Florida Man!)

Just like the live event, there’ll also be an afterparty — and just like the real afterparty, you’re going to have to buy your own drinks.

Join the party! It’s happening at 88r.org/ignitelive tonight at 7:00.

Categories
Deals Programming Reading Material

A quick and dirty guide to installing a COBOL compiler and IDE on macOS (and get a COBOL book at a discount)

OpenCobolIDE running on macOS, displaying the code for the “Chunky Bacon” version of “Hello, World!”.

OpenCobolIDE running on my MacBook Pro. Tap the screen shot to see it at full size.

In an earlier post, I played around with an online COBOL compiler. Seeing as I’m a COVID-19 unemployment statistic and there’s a call for COBOL developers to help shore up ancient programs that are supposed to be issuing relief checks, I’ve decided to devote a little more time next week (this week, I have to finish revising a book) to playing with the ancient programming language. I’ll write about my experiences here, and I’ll also post some videos on YouTube.

If you want to try your hand at COBOL on the Mac, you’re in luck: it’s a lot easier than I expected it would be!

Get the compiler: GnuCOBOL

COBOL isn’t used much outside enterprise environments, which means that COBOL compilers and IDEs are sold at enterprise prices. If you’re an individual programmer without the backing of a company with a budget to pay for developer tools, your only real option is GnuCOBOL.

On macOS, the simplest way to install GnuCOBOL is to use Homebrew.

If Homebrew isn’t already installed on your system (and seriously, you should have it if you’re using your Mac as a development machine), open a terminal window and enter this to install it:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

If Homebrew is installed on your system, first make sure that it’s up to date by using this command in a terminal window:

brew update

Then install GnuCOBOL by entering the following:

brew install gnu-cobol

Once that’s done, GnuCOBOL should be on your system under the name cobc. You can confirm that it’s on your system with the following command…

cobc -v

…which should result in a message like this:

cobc (GnuCOBOL) 2.2.0
Built Aug 20 2018 15:48:14 Packaged Sep 06 2017 18:48:43 UTC
C version "4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.10.43.1)"
loading standard configuration file 'default.conf'
cobc: error: no input files

Get the IDE: OpenCobolIDE

Unless you’ve got some way to configure your text editor to deal with the language’s quirks, you really want to use an IDE when coding in COBOL. Once again, an open source project comes to the rescue: OpenCobolIDE.

OpenCobolIDE relies on Python 3, so make sure you’ve installed Python 3 before installing OpenCobolIDE. I installed it on my computer by installing the Python 3 version of Anaconda Individual Edition.

If Python 3 is already on your system, you have a couple of options for installing OpenCobolIDE:

  1. Installing OpenCobolIDE using the Python 3 package installer, pip3, which gives you a program that you launch via the command line. This gives you OpenCobolIDE version 4.7.6.
  2. Downloading the .dmg disk image file, which gives you an app lives in the Applications folder and which you launch by clicking an icon. This gives you OpenCobolIDE version 4.7.4.

I strongly recommend going with option 1. OpenCobolIDE is no longer maintained, so you might as well go with the latest version, which you can only get by installing it using Homebrew. Version 4.7.6 has a couple of key additional features that you’ll find handy, including:

  • Support for all the COBOL keywords in GnuCOBOL 2.x. This is a big deal in COBOL, which has something in the area of 400 reserved words. For comparison, C and Python have fewer than 40 reserved words each.
  • Better indentation support (and you want that in COBOL, thanks to its ridiculous column rules from the 1960s).
  • Support for compiler flags like -W and -Wall — and hey, warning flags are useful!

To install OpenCobolIDE using the Python 3 package installer, pip3, enter the following in a terminal window:

pip3 install OpenCobolIDE --upgrade

To launch OpenCobolIDE, enter this:

OpenCobolIDE

You’ll be greeted with this window:

Tap New file. You’ll see this:

For Template, select Program, enter the name and location for your program file, and tap OK.

You should see this:

Tap the screen shot to see it at full size.

Don’t mistake those red vertical lines for glitches. They’re column guides. COBOL is from the days of punched cards, and is one of those programming languages that’s really fussy about columns:

  • The first 6 columns are reserved for sequence numbers.
  • Column 7 is reserved for a line continuation character, an asterisk (which denotes a comment) or another special character.
  • Columns 8 through 72 are for code, and are broken down into 2 zones:
    • Area A: Columns 8 through 11, which are used for DIVISIONS, SECTIONS, and PARAGRAPHS, as well as specifying levels 01 through 77 (COBOL is weird).
    • Area B: Columns 12 through 72, which is for the rest of the code.
  • Columns 73 through 80 make up the “identification” area and are ignored by the compiler. It’s useful for very short comments along the lines of “TODO” or “HACK”.

Get the book: Beginning Cobol for Programmers

There aren’t many current books on COBOL out there. Apress’ Beginning COBOL for Programmers is probably the best of the bunch, and unlike many old COBOL books, makes sense to developers with a solid grounding in modern programming languages.

The ebook is available for US$49.99, but if you use the coupon code SPRING20A by the end of Thursday, April 16, you can get a $20 discount, reducing the price to $29.99. If you want the book for this price, take action before it’s too late!

Are you looking for someone with both strong development and “soft” skills? Someone who’s comfortable either being in a team of developers or leading one? Someone who can handle code, coders, and customers? Someone who can clearly communicate with both humans and technology? Someone who can pick up COBOL well enough to write useful articles about it on short notice? The first step in finding this person is to check out my LinkedIn profile.

Categories
Current Events

Repatriating the work laptop

Today is the day a courier company drops by my place — “between 8:30 a.m. and 3:00 p.m.” — to pick up the work equipment I’ve been using while working from home, which I’d been doing since the end of the first week of March.

In my case, there’s not much to pick up: It’s a 13″ MacBook Pro, its power adapter, and a black nylon laptop bag. I’ve wiped it clean on both the inside and outside, and you can see from the “?” folder and dazzling reflections of the screen. The courier company’s going to give me a call shortly before they arrive, just so I can leave it at the front door in order to keep the person-to-person contact to a minimum. It’s oddly like one of those hand-offs of top secret documents in a spy movie.

If you’re in a similar situation — laid off due to the COVID-19 downturn, but still in possession of company gear — how is your former employer getting their stuff back?

Categories
Current Events Programming

Hold tight, New Jersey — I’m comin’ to save you!

Want to experience the clunkiness that is COBOL? CodingGround’s online compiler awaits!

Wondering what the title of this article is all about? Start here:

Categories
Current Events Editorial

Thank you, Lilypad and Fintech!

I’d like thank Lilypad and its parent company Fintech for the opportunity to work with them as a mobile developer. I’ve enjoyed the past few months sinking my teeth into a massive codebase that drives their mobile app, which functions as an always-available sales tool for beverage alcohol vendors, from the smallest craft brewery to the largest global alcohol conglomerates. I also enjoyed working with a tight-knit, friendly team with ambition for miles and the talent to pull it off. I will always be grateful to them for taking me on in September.

Fintech created the first EFT (electronic funds transfer) payment system for the alcoholic beverages industry in 1991, and in the 18 years that followed, their system gained approval in all 50 states. Since then, they’ve built systems to improve the way alcohol is managed, priced, promoted, ordered, and sold. They’re a “work hard, play hard” place with a reputation for treating their employees well, and I’m fortunate to have seen that for myself.

Lilypad is a scrappy startup that was founded in 2013 and was acquired by Fintech in 2019, a few months before I joined. Their original application was a tool to help alcohol sales teams in the field, and has since grown to become a system that helps the industry manage the entire sales process. Lilypad’s customers run the gamut from the smallest kitchen-table craft breweries to global conglomerates whose products are everywhere — perhaps even on your shelves at home. There’s a strong sense of camaraderie and esprit de corps at this company, and I was happy to be part of it.

Tap the photo to see it at full size.

One of the proudest moments I’ve had this year came in January while I was flipping through Beer & Brewing’s Brewing Industry Guide 2019, when I stumbled across a full-page ad for Lilypad software. By that point, code that I’d written myself had actually been incorporated into the app, and real customers were using it. My work fixed some long-standing bugs and added some much-requested features, and the rest of the team’s efforts, from sales to account management to product design and testing, took it the rest of the way.

While I did see the result of my efforts while testing the app, seeing the ad made it more real. I couldn’t resist taking the photo above.

Life in a startup is full of adventures with its fair share of ups and downs. We’ve just seen an unprecedented “down” with the global pandemic and ensuing economic situation. When faced with a challenge like this, it’s the companies who maintain their focus while controlling their spending discipline that will survive. When faced with such a predicament, it is the mandate of a responsible business to look at ways to stretch their dollar and cut their costs.

In order to ensure that there would still be a Lilypad at the end of the COVID-19 crisis, the company had to make some cuts. The Powers That Be at Lilypad and Fintech had to make a tough call, but they made the right one for the organization: they had to lay me off. My final day was last Tuesday, April 7th.

Things will get better. I have faith in my community, my industry, and people in general. Humanity is a team sport, and one that — once we get focused — we play well.

To those who were laid off along with me, please stay in touch, and if you need a favor, recommendation, or just someone to listen, I’m here for you. To my former fellows at Lilypad and Fintech who still have their jobs, count your blessings, and I’m also here for you. To everyone — watch this blog, because I’m going to be devoting even more time and energy to it, and there’s going to be a lot of useful information here.

Once again, thank you, Lilypad and Fintech!

While I’m here, let me point you to Lilypad’s curated blog series/ebook, Beer Sales Best Practices. It comprises experience-based advice from sales leaders of some of the best craft brewers around — CANarchy, Allagash, Left Hand, and Two Roads. If you’re in the craft beer industry, you’ll find the articles and ebook full of hidden gems and actionable takeaways that may reshape how you manage your sales teams, adapt in an ever changing market, assess the future of craft, and everything in between.

Are you looking for someone with both strong development and “soft” skills? Someone who’s comfortable either being in a team of developers or leading one? Someone who can handle code, coders, and customers? Someone who can clearly communicate with both humans and technology? The first step in finding this person is to check out my LinkedIn profile.

Categories
Current Events Humor Process

Security threats, shown as the people from “Tiger King”

Categories
Current Events Tampa Bay

What’s happening in the Tampa Bay tech/entrepreneur/nerd scene (Week of Monday, April 13, 2020)

Hello, Tampa Bay techies, entrepreneurs, and nerds — here’s this week’s list of area events with your expertise and interests in mind! I hope things for you are going as well as possible given our current situation. As I write this, we’re a dozen days into the Florida general stay-at-home order, and five weeks since I’ve been doing the social distancing thing (following the recommendations of the best damn public health official I personally know). For the foreseeable future, I’m listing only online events. I’m looking forward to the day when we’ll all be able to meet up in person, but in the meantime, go online and #MakeItTampaBay!

The power of community is what will see us through this crisis. It’s the spirit of cooperation, camaraderie, and community that helped build the tech scene in my old home town of Toronto, and it can do the same here in Tampa Bay. Let’s take what we can from the current situation and use it to rebuild and move forward. I’m happy to do my part and help out with my reach and resources, or even to lend an ear. Feel free to contact me at joey@joeydevilla.com!

This week’s events

Monday, April 13

Tuesday, April 14

Wednesday, April 15

Thursday, April 16

Friday, April 17

Saturday, April 18

Sunday, April 19

No events are listed for Sunday.

Do you have any events or announcements that you’d like to see on this list?

Let me know at joey@joeydevilla.com!

Join the mailing list!

If you’d like to get this list in your email inbox every week, enter your email address below. You’ll only be emailed once a week, and the email will contain this list, plus links to any interesting news, upcoming events, and tech articles.

Join the Tampa Bay Tech Events list and always be informed of what’s coming up in Tampa Bay!