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
Exception in thread "main" InfiniteException | |
at InfiniteException.main(InfiniteException.java:6) | |
Caused by: InfiniteException | |
at InfiniteException.getCause(InfiniteException.java:12) | |
at java.lang.Throwable.printStackTrace(Throwable.java:665) | |
at java.lang.Throwable.printStackTrace(Throwable.java:643) | |
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1061) | |
at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1052) | |
at java.lang.Thread.dispatchUncaughtException(Thread.java:1952) | |
Caused by: InfiniteException |
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
#include <iostream> | |
#include <memory> | |
struct Base | |
{ | |
virtual ~Base() = default; | |
struct Inner | |
{ | |
Inner(Base &b) |
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
#include <iostream> | |
#include <vector> | |
#include <cmath> | |
int main() | |
{ | |
std::vector<long double> v; | |
{ | |
long double d; | |
while(std::cin >> d) |
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
#include <iostream> | |
#include <string> | |
#include <vector> | |
int main(int, char const *const *plain_args) | |
{ | |
std::basic_string<char const *> const temp {plain_args}; | |
std::vector<std::string> const args {std::begin(temp), std::end(temp)}; | |
for(auto const &arg : args) | |
{ |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Minecraft Name History - Nicholas "LB" Braden</title> | |
<link rel="canonical" href="http://www.LB-Stuff.com/Minecraft-Name-History" /> | |
<link rel="stylesheet" href="/light.css" /> | |
<link rel="icon" type="image/png" href="/LB.png" /> | |
<script src="https://apis.google.com/js/platform.js" async defer></script> | |
</head> |
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
import java.time.Instant; | |
import java.time.LocalDateTime; | |
import java.time.Month; | |
import java.time.ZoneId; | |
import java.time.ZoneOffset; | |
import java.time.temporal.ChronoField; | |
class j8time | |
{ | |
public static void main (String[] args) throws Throwable |
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
//Access the KataPartyService | |
KataPartyService kps = getServer().getServicesManager().load(KataPartyService.class); | |
//Get the PartySet | |
IPartySet parties = kps.getPartySet(); | |
//Get the members for the players p1 and p2 | |
IParty.IMember a = parties.findMember(p1.getUniqueId()); | |
IParty.IMember b = parties.findMember(p2.getUniqueId()); | |
//Check if they are in the same party | |
if(a != null && b != null && a.getParty() == b.getParty()) | |
{ |
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
#include <iostream> | |
#include <stdexcept> | |
#include <exception> | |
struct ResonanceCascade final | |
{ | |
ResonanceCascade() | |
{ | |
std::cout << "ResonanceCascade ctor" << std::endl; | |
} |
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
Test project C:/Users/LB/GitHub/magnum/build | |
Start 1: MathAlgorithmsGaussJordanTest | |
1/129 Test #1: MathAlgorithmsGaussJordanTest ......... Passed 0.05 sec | |
Start 2: MathAlgorithmsGramSchmidtTest | |
2/129 Test #2: MathAlgorithmsGramSchmidtTest ......... Passed 0.02 sec | |
Start 3: MathAlgorithmsSvdTest | |
3/129 Test #3: MathAlgorithmsSvdTest ................. Passed 0.02 sec | |
Start 4: MathGeometryDistanceTest | |
4/129 Test #4: MathGeometryDistanceTest .............. Passed 0.02 sec | |
Start 5: MathGeometryIntersectionTest |