Matt RaibleMatt Raible is a Web Developer and Java Champion. Connect with him on LinkedIn.

The Angular Mini-Book The Angular Mini-Book is a guide to getting started with Angular. You'll learn how to develop a bare-bones application, test it, and deploy it. Then you'll move on to adding Bootstrap, Angular Material, continuous integration, and authentication.

Spring Boot is a popular framework for building REST APIs. You'll learn how to integrate Angular with Spring Boot and use security best practices like HTTPS and a content security policy.

For book updates, follow @angular_book on Twitter.

The JHipster Mini-Book The JHipster Mini-Book is a guide to getting started with hip technologies today: Angular, Bootstrap, and Spring Boot. All of these frameworks are wrapped up in an easy-to-use project called JHipster.

This book shows you how to build an app with JHipster, and guides you through the plethora of tools, techniques and options you can use. Furthermore, it explains the UI and API building blocks so you understand the underpinnings of your great application.

For book updates, follow @jhipster-book on Twitter.

10+ YEARS


Over 10 years ago, I wrote my first blog post. Since then, I've authored books, had kids, traveled the world, found Trish and blogged about it all.

Using the T68i as a GRPS Modem

I got inspired by Russ's post and decided to try once again to connect my PowerBook to the Internet using Bluetooth/GRPS. I found an OS X GRPS HowTo on AT&T's site, and whaddya know - I'm connected 10 minutes later. Very cool - 29.8 KB per second (according to http://bandwidthplace.com/speedtest). Hopefully, I'll never need to use this, but it's nifty to know it's there.

Posted in General at Aug 12 2003, 08:48:31 PM MDT 1 Comment

New Gig starts Monday

After searching and interviewing for the last few weeks, I finally decided on my next gig this morning. Phew - I'm glad that process is over with.

I've accepted a position with ResortQuest [quote] in Lafayette, CO (about 30 miles north of my house). They run a high traffic (I think) website for booking vacation rentals and own many local property management companies. Currently, it's written in Cold Fusion and I'll be helping them migrate it to a Struts-based architecture. They've already done their Smoky Mountain site in Tennessee, and now there's a big push to get the mountain resort properties done for the ski season.

I'm pretty pumped about the position - there's a team of about 10 and also a Graphics Design group. I've never been on a team with a Graphics Design group - so that should be awesome - no more worrying about look and feel, just coding. The commute might kinda suck, but most traffic is going the other way. Not being able to ride my bike to work will be a bummer, but none of my other opportunities had that either - so I can't fault them for that. One of the biggest perks is that they don't have a BYOL policy, and they've already got the machines in house, so I can hit the ground running.

Because I don't need to bring my own laptop, I will be returning the ZX7 today. Who knows if I'll get a new computer anytime soon - I don't really need one now. My newly installed XP box is humming along just fine, and all I really need is a DVD burner. Does anyone know if it's possible to buy/connect an external DVD burner to a PowerBook? Julie has recently got into iMovie video-editing and we'd like to burn these to DVD w/o buying a whole new computer.

Posted in General at Aug 12 2003, 09:22:59 AM MDT 6 Comments

Cool JSP Tag: State Tag

I found a cool State Tag this morning that I'm using in my project this week. It works very nice and just like I'd expect. Here's how I'm using it:

<%@ taglib uri="http://www.servletsuite.com/servlets/statetag" 
    prefix="state" %>
...
<bean:define id="state" name="userFormEx" 
    property="state" type="java.lang.String" />
<state:state name="state" default="<%=state%>" />

Posted in Java at Aug 12 2003, 09:14:14 AM MDT 1 Comment