Skip to content

Instantly share code, notes, and snippets.

View greebie's full-sized avatar

Ryan Deschamps greebie

View GitHub Profile
[ryandeschamps@desktop2-ia ~]$ ssh altiscale
ssh: Could not resolve hostname altiscale: Name or service not known
[ryandeschamps@desktop2-ia ~]$ cat .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
v1020-wn-252-13:aut ryandeschamps$ scala -version
Scala code runner version 2.12.4 -- Copyright 2002-2017, LAMP/EPFL and Lightbend, Inc.
v1020-wn-252-13:aut ryandeschamps$ java -version
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
v1020-wn-252-13:aut ryandeschamps$ ls
CONTRIBUTING.md LICENSE_HEADER.txt config metastore_db pyaut.zip target
LICENSE README.md derby.log pom.xml src
v1020-wn-252-13:aut ryandeschamps$ cd target/bin
18/03/21 10:06:03 INFO TaskSetManager: Finished task 9.0 in stage 0.0 (TID 9) in 92758 ms on localhost (executor driver) (26/33)
[Stage 0:============================================> (26 + 7) / 33]18/03/21 10:06:10 ERROR Executor: Exception in task 17.0 in stage 0.0 (TID 17)
java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:3332)
at java.lang.StringCoding.safeTrim(StringCoding.java:89)
at java.lang.StringCoding.access$100(StringCoding.java:50)
at java.lang.StringCoding$StringDecoder.decode(StringCoding.java:154)
at java.lang.StringCoding.decode(StringCoding.java:193)
at java.lang.StringCoding.decode(StringCoding.java:254)
at java.lang.String.<init>(String.java:534)
v1020-wn-202-209:graphpass ryandeschamps$ gtime -v ./graphpass -f cpp2.graphml -q
>>>>>>> GRAPHPASSING >>>>>>>>
DIRECTORY: assets/
STRLEN PATH: 7
OUTPUT DIRECTORY: OUT/
PERCENTAGE: 0.000000
FILE: cpp2.graphml
METHODS STRING: d
QUICKRUN: 1
REPORT: 0
| filename | Size | Nodes | Edges |
|--------------------|-----------|--------|--------|
| 10004-gephi.graphml | 1.518554 | 736 | 7901 |
| 10032-gephi.graphml | 0.075646 | 204 | 305 |
| 10066-gephi.graphml | 0.178006 | 431 | 745 |
| 10188-gephi.graphml | 0.188993 | 542 | 749 |
| 10218-gephi.graphml | 0.002426 | 6 | 7 |
| 10220-gephi.graphml | 0.011594 | 37 | 41 |
| 10405-gephi.graphml | 0.071999 | 188 | 293 |
| 10422-gephi.graphml | 0.004462 | 10 | 16 |
class Color {
final int value;
const Color._internal(this.value);
static const Color WHITE = const Color._internal(0);
static const Color BLACK = const Color._internal(1);
@override
bool operator==(Object o) => identical(this, o) ||
o is Color && value == o.value;