Keywords: Java, JDK (Java Development Kit), MacOS, Homebrew, Specific Version
This how-to guide covers how to install different versions of the JDK on MacOS with Homebrew.
| package main | |
| import ( | |
| "database/sql" | |
| "log" | |
| ) | |
| func main() { | |
| db, err := sql.Open("VENDOR_HERE", "YOUR_DSN_HERE") | |
| handleError(err) |
Keywords: Java, JDK (Java Development Kit), MacOS, Homebrew, Specific Version
This how-to guide covers how to install different versions of the JDK on MacOS with Homebrew.
Questions
Front-end Job Interview Questions https://github.com/h5bp/Front-end-Developer-Interview-Questions
JS quiz https://github.com/nathansmith/javascript-quiz
Homework
Picking the right architecture = Picking the right battles + Managing trade-offs
| // | |
| // UIColor.swift | |
| // previously Color+HexAndCSSColorNames.swift | |
| // | |
| // Created by Norman Basham on 12/8/15. | |
| // Copyright ©2018 Black Labs. All rights reserved. | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights |
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "fmt" | |
| "strconv" | |
| ) | |
| func main() { |
| // | |
| // UIImageView+HTUIImageCategoryNamespaceConflictResolver.h | |
| // HotelTonight | |
| // | |
| // Created by Jonathan Sibley on 7/9/13. | |
| // Copyright (c) 2013 Hotel Tonight. All rights reserved. | |
| // | |
| @interface UIImageView (HTUIImageCategoryNamespaceConflictResolver) |