This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const testOb = { | |
slot1: { | |
cubby1: { | |
envelope1: { | |
page1: "Hello World", | |
page2: "Living large", | |
}, | |
envelope2: { | |
page1: "No Escape", | |
page2: "Supercharger", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Sat Mar 30 20:38:15]mbpv14:camp-registration devuser$ rvm get master | |
Downloading https://get.rvm.io | |
No GPG software exists to validate rvm-installer, skipping. | |
Downloading https://github.com/rvm/rvm/archive/master.tar.gz | |
Upgrading the RVM installation in /Users/devuser/.rvm/ | |
RVM PATH line found in /Users/devuser/.mkshrc /Users/devuser/.profile /Users/devuser/.bashrc /Users/devuser/.zshrc. | |
RVM sourcing line found in /Users/devuser/.profile /Users/devuser/.bash_profile /Users/devuser/.zlogin. | |
Upgrade of RVM in /Users/devuser/.rvm/ is complete. | |
Thanks for installing RVM 🙏 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* in the simple test below I am a bit uncomfortable with how | |
* the private property pathSet is updated w/o a setter | |
* is this exploiting a Java bug or is it intentional and expected behavior | |
* that will be supported for a long time? | |
*/ | |
public class SimpleClass { | |
private List<String> pathSet; | |
public List<String> getPathSet() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void main(String[] args) throws IOException { | |
for (CatalogResource machine : machines) { | |
example.viewDetails(machine); | |
List<CatalogPrincipal> owners = machine.getOwners(); | |
for( CatalogPrincipal owner : owners ){ | |
String ownerEmail = example.getUserEmail(owner.getRef()); | |
System.out.println("OWNER: " + owner.getValue() | |
+ " (" + owner.getType() | |
+ ") : Username" + owner.getRef() |