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
#!/bin/bash | |
printf "\ | |
_____ ____ | |
/ \\ | o | | |
| |/ ___\\| | |
|_________/ | |
|_|_| |_|_|" |
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
#define a(b) __GLIBC_USE_##b | |
#define c(d, g) d##g | |
#define __DECL_SIMD_cosf | |
#define __DECL_SIMD_sinf | |
#define __DECL_SIMD_logf | |
#define __DECL_SIMD_expf | |
#define __DECL_SIMD_powf | |
#define e(function) c(__DECL_SIMD_, function) | |
#define h(function, i, args) e(j(function, )) k(function, , args) | |
#define k(function, i, args) l(float, function, i, args) |
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
------------------------------------------------------------------------------- | |
Test set: fr.dudie.nominatim.client.JsonNominatimClientTest | |
------------------------------------------------------------------------------- | |
Tests run: 14, Failures: 0, Errors: 12, Skipped: 2, Time elapsed: 264.114 sec <<< FAILURE! | |
testSearchWithResults(fr.dudie.nominatim.client.JsonNominatimClientTest) Time elapsed: 22.126 sec <<< ERROR! | |
org.apache.http.client.ClientProtocolException | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:643) | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:731) | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:709) | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:700) |
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
------------------------------------------------------------------------------- | |
Test set: fr.dudie.nominatim.client.JsonNominatimClientTest | |
------------------------------------------------------------------------------- | |
Tests run: 14, Failures: 0, Errors: 12, Skipped: 2, Time elapsed: 7.489 sec <<< FAILURE! | |
testSearchWithResults(fr.dudie.nominatim.client.JsonNominatimClientTest) Time elapsed: 0.921 sec <<< ERROR! | |
org.apache.http.client.ClientProtocolException | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:643) | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:731) | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:709) | |
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:700) |
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
------------------------------------------------------------------------------- | |
Test set: fr.dudie.nominatim.client.JsonNominatimClientTest | |
------------------------------------------------------------------------------- | |
Tests run: 14, Failures: 0, Errors: 12, Skipped: 2, Time elapsed: 6.399 sec <<< FAILURE! | |
testSearchWithResults(fr.dudie.nominatim.client.JsonNominatimClientTest) Time elapsed: 0.889 sec <<< ERROR! | |
java.lang.IllegalStateException: Scheme 'https' not registered. | |
at org.apache.http.conn.scheme.SchemeRegistry.getScheme(SchemeRegistry.java:73) | |
at org.apache.http.impl.conn.DefaultHttpRoutePlanner.determineRoute(DefaultHttpRoutePlanner.java:111) | |
at org.apache.http.impl.client.DefaultRequestDirector.determineRoute(DefaultRequestDirector.java:655) | |
at org.apache.http.impl.client.DefaultRequestDirector.handleResponse(DefaultRequestDirector.java:1001) |
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 todo; | |
import java.util.stream.Stream; | |
public class Command { | |
private static final Command NO_OP = new Command("",new String[0]); | |
private final String command; | |
private final String[] arguments; | |
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 unpackingsentence; | |
import java.util.Comparator; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.lang.StringBuilder; | |
public class MarkovChain { | |
private final int[][] characterFrequencies; | |
private int dataPoints; |
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 turingmachine; | |
public enum Direction { | |
LEFT(-1),RIGHT(1); | |
private final int vector; | |
private Direction(int vector){ | |
this.vector = vector; | |
} | |
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
ClrHome | |
a+bi | |
Output(1,1," QUADRATIC | |
Output(2,1," AX²+BX+C | |
Output(3,1,"ZEROS: | |
Output(6,1,"A= | |
Output(7,1,"B= | |
Output(8,1,"C= | |
DelVar YDelVar D |