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
(08/27/91) | |
(1 player) | |
(11th Rallye version) | |
(12/1/1986) | |
(12/11/1985) | |
(12/16/1985) | |
(12/24/1981,prototype?) | |
(128k Ver.) | |
(1984) | |
(2 players) |
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
#include <iostream> | |
#include <algorithm> | |
#include <vector> | |
#include <iterator> | |
enum ItemType | |
{ | |
TORCH, | |
KEY, | |
GEM, |
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
#include <iostream> | |
#include <vector> | |
enum ItemType | |
{ | |
TORCH, | |
KEY, | |
GEM, | |
PEBBLE, | |
GOLD |
This file has been truncated, but you can view the full file.
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
Boot Info Script 8f991e4 + Boot-Repair extra info [Boot-Info 25oct2017] | |
============================= Boot Info Summary: =============================== | |
=> Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of | |
the same hard drive for core.img. core.img is at this location and looks | |
for (,msdos3)/boot/grub. It also embeds following components: | |
modules |
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
CC=gcc | |
#CXX=g++ | |
CXX=$(shell root-config --cxx) | |
RM=rm -f | |
#CPPFLAGS=-g $(shell root-config --cflags) | |
CPPFLAGS=$(shell root-config --cflags) | |
LDFLAGS=-g $(shell root-config --ldflags) | |
LDLIBS=$(shell root-config --libs) | |
SRCS=main.cpp item.cpp item.h backpack.cpp backpack.h constants.h |
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
abel@smopki:~/Documents/programming/c++/console_test/source$ make | |
make: root-config: Command not found | |
make: root-config: Command not found | |
make: root-config: Command not found | |
Makefile:16: *** missing separator. Stop. |
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
!SESSION Sun Feb 24 11:05:05 CST 2019 ------------------------------------------ | |
!ENTRY org.eclipse.equinox.launcher 4 0 2019-02-24 11:05:05.610 | |
!MESSAGE Exception launching the Eclipse Platform: | |
!STACK | |
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter | |
at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:466) | |
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:566) | |
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:499) | |
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:626) | |
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) |
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
-startup | |
plugins/org.eclipse.equinox.launcher_1.5.200.v20180922-1751.jar | |
--launcher.library | |
/home/abel/.p2/pool/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.900.v20180922-1751 | |
-product | |
org.eclipse.epp.package.cpp.product | |
-showsplash | |
org.eclipse.epp.package.common | |
--launcher.defaultAction | |
openFile |
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
#This configuration file was written by: org.eclipse.oomph.p2.internal.core.AgentImpl | |
#Sun Feb 24 10:43:56 CST 2019 | |
eclipse.product=org.eclipse.platform.ide | |
osgi.splashPath=file\:/home/abel/.p2/pool/plugins/org.eclipse.platform_4.10.0.v20181206-0815 | |
org.eclipse.equinox.simpleconfigurator.configUrl=file\:org.eclipse.equinox.simpleconfigurator/bundles.info | |
osgi.bundles.defaultStartLevel=4 | |
eclipse.application=org.eclipse.ui.ide.workbench | |
[email protected]/workspace | |
osgi.bundles=reference\:file\:org.eclipse.equinox.simpleconfigurator_1.3.200.v20181101-1115.jar@1\:start | |
eclipse.p2.data.area=file\:/home/abel/.p2/ |
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
int main() | |
{ | |
std::vector<Room> rooms {{TOPLEFT,{{SHIELD,TORCH}}},{TOPRIGHT,{{KEY,SHIELD,KEY}}},{BOTLEFT,{{PEBBLE,PEBBLE,KEY}}},{BOTRIGHT,{{KEY,PEBBLE,SHIELD,SHIELD,KEY,PEBBLE}}}}; | |
std::vector<Room> rooms | |
{ | |
{ | |
TOPLEFT,{ | |
{SHIELD,TORCH} | |
} |