Yeah, that's one of the benefits of being a freelance web developer/subcontractor. I can pick and choose what things I want to work on as they come my way. Like, right now, I just started work on adding an e-commerce section to an existing site. All of the scary PCI compliance stuff is handled by Stripe on the back end through their API. So, for me, it's mostly just about creating a reasonable CRUD system for inventory and whatnot. Not hard, really, but enough balls to juggle to keep it interesting, and to keep me busy.
For funsies, I just wrote my first small C++ program in nearly 20 years. It's dumb, but it works:
For funsies, I just wrote my first small C++ program in nearly 20 years. It's dumb, but it works:
Code:
#include <iostream>
#include <string>
use namespace std;
int main()
{
string name;
cout << "Enter your name, or type 'exit' to stop\r\n";
while(cout << "==> ", getline(cin, name))
{
if(name == "exit")
{
break;
}
cout << name << "\r\n";
}
return 0;
}