moved to a proper github repo
This file contains hidden or 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
package com.example; | |
class Bride { | |
private String name; | |
public Bride(String name) { | |
this.name = name; | |
} |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- Meta tags --> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /> | |
<meta name="viewport" content="width=device-width" /> |
This file contains hidden or 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
/* | |
* Licensed to the Apache Software Foundation (ASF) under one or more | |
* contributor license agreements. See the NOTICE file distributed with | |
* this work for additional information regarding copyright ownership. | |
* The ASF licenses this file to You under the Apache License, Version 2.0 | |
* (the "License"); you may not use this file except in compliance with | |
* the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This file contains hidden or 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
{ | |
"header": { | |
"Variant": "standard", | |
"Generator": "NONE", | |
"Base": "Base", | |
"Date": "2017-11-06", | |
"KLL": "0.5c", | |
"Author": "bagels mac 2017", | |
"Version": "0.5", | |
"Name": "KType", |
This file contains hidden or 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
{ | |
"header": { | |
"Variant": "standard", | |
"Generator": "NONE", | |
"Base": "Base", | |
"Date": "2017-11-06", | |
"KLL": "0.5c", | |
"Author": "danlangford (Dan Langford) 2017", | |
"Version": "0.1", | |
"Name": "KType", |
This file contains hidden or 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
The problem I am seeing is that the routers are not distributing the message load across other brokers on the network. Here is a little diagram: | |
RouterA-03 ----> ArtemisBrokerA | |
| | |
| | |
| | |
\/ | |
RouterB-05 ----> ArtemisBrokerB |
This file contains hidden or 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
<?php | |
/* | |
Plugin Name: QuickTime Movie Player | |
Plugin URI: http://davidwelch.co/fixme | |
Description: Plays .mov files | |
Version: 0.1 BETA | |
Author: David Welch | |
Author URI: http://davidwelch.co | |
*/ |
This file contains hidden or 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
package javaapplication1; | |
public class JavaApplication1 { | |
public static void main(String[] args) { | |
Double danAmt = 1.0, joshAmt = 1000.0; | |
SlotMachine danSlots = new SlotMachine(), | |
joshSlots = new SlotMachine(); |
This file contains hidden or 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
package javaapplication1; | |
public class JavaApplication1 { | |
public static void main(String[] args) { | |
Integer sodasToday = 3, | |
sodasYesterday = 5, | |
totalSodas = sodasToday + sodasYesterday; | |
System.out.println("i drank "+ totalSodas +" sodas"); // this puts it on the screen |
NewerOlder