|
|
|
|
|
by madhadron
522 days ago
|
|
> how do you guys keep up to date with tech? I don't. There really isn't much that's new that shows up. Spend your time exploring stuff people have already done, then learn whatever version of it this employer is using as needed at work. For example, at one job I needed to learn Ruby for a project. But here's an object-based, single dispatch, dynamically typed, interpreted language with some warts. You figure out what they call the inevitable things that are there in such a language and what the warts are, read some code to get a sense for the idiom, and then get on with life. If it's your first such language it feels challenging. If it's your third or fourth, it's just filling in the blanks. SQL Server has lots of warts and differences from PostgreSQL, but the stuff you expect is all there under some name. Any distributed database has to solve the same problems as any other one. So don't worry about the new things. Worry about the old things with staying power, and the underlying designs and principles and patterns of thought that get reused again and again. |
|