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
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 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
#include <iostream> | |
#include <vector> | |
enum ItemType | |
{ | |
TORCH, | |
KEY, | |
GEM, | |
PEBBLE, | |
GOLD |
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
(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
(08/27/91) | |
(1 player) | |
(11th Rallye version) | |
(12/1/1986) | |
(12/11/1985) | |
(12/16/1985) | |
(128k Ver.) | |
(1984) | |
(2 players) | |
(2 Players) (bootleg) |
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
You found it, Arthur! *holy-grail* | |
============================================================================== | |
5. EX commands *ex-cmd-index* *:index* | |
This is a brief but complete listing of all the ":" commands, without | |
mentioning any arguments. The optional part of the command name is inside []. | |
The commands are sorted on the non-optional part of their name. | |
tag command action ~ |
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
asyncio\ | |
collections\ | |
concurrent\ | |
ctypes\ | |
curses\ | |
dbm\ | |
distutils\ | |
email\ | |
encodings\ | |
html\ |
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
ECHO FilePath %1 | |
ECHO FileDir %2 | |
ECHO FileName %3 | |
ECHO FileExt %4 | |
ECHO FileNameExt %5 | |
ECHO Language %6 | |
ECHO SessionPath %7 | |
ECHO CurrentSelection %8 | |
ECHO CurrentWord %9 | |
ECHO Replacements %10 |