-
Created stream operator overloading
#include <iostream> #include <cstring> using namespace std; class String { private: char *ptr; public: String(); String(char* s); ~String(); operator char*() { return ptr; } int operator==(const String &other); }; int … -
Began Watching stream operator overloading
#include <iostream> #include <cstring> using namespace std; class String { private: char *ptr; public: String(); String(char* s); ~String(); operator char*() { return ptr; } int operator==(const String &other); }; int … -
Created editing mkv files
I have ripped the TV show Pushing Daisies Blu-Ray disk as up to 3 episodes on one track. So now my ripped file is one file containing 3 episodes. Is … -
Began Watching editing mkv files
I have ripped the TV show Pushing Daisies Blu-Ray disk as up to 3 episodes on one track. So now my ripped file is one file containing 3 episodes. Is … -
Replied To a Post in mounting windows drive
That's actually the way I shut window$ every time already. -
Created mounting windows drive
I've always been able to navigate through my Windows drive after booting up in my Linux OS but ever since I got Windows 8 there seems to only my a … -
Began Watching mounting windows drive
I've always been able to navigate through my Windows drive after booting up in my Linux OS but ever since I got Windows 8 there seems to only my a … -
Replied To a Post in iteritems() error
Thanks. As far as using a capital letter for a variable name I was only doing that because I noticed that my IDE was lighting up the variable names dict … -
Created NFS and permissions
When setting up an NFS server and setting up the 'ro' or 'rw' permissions, how do the ext4 permissions come into play? Thanks. -
Began Watching NFS and permissions
When setting up an NFS server and setting up the 'ro' or 'rw' permissions, how do the ext4 permissions come into play? Thanks. -
Marked Solved Status for c-string constructor
#include <iostream> #include <string> #include <stdlib.h> #include <cstring> using namespace std; class Fraction { private: int num, den; // numerator & demoninator public: Fraction() { set(0, 1); } Fraction(int n, … -
Began Watching iteritems() error
#!/usr/bin/env python3 tm = open('./timemachine.txt', 'r') Dict = {} for line in tm: line = line.strip() line = line.translate('!"#$%&\'()*+-./:;<=>?@[\\]^_`{|}~') line = line.lower() List = line.split(' ') for word in List: … -
Created iteritems() error
#!/usr/bin/env python3 tm = open('./timemachine.txt', 'r') Dict = {} for line in tm: line = line.strip() line = line.translate('!"#$%&\'()*+-./:;<=>?@[\\]^_`{|}~') line = line.lower() List = line.split(' ') for word in List: … -
Marked Solved Status for linux log files
I just built my first computer and instlled headless on it. When I boot it up there are a few problems on the black and white screen with all the … -
Created c-string constructor
#include <iostream> #include <string> #include <stdlib.h> #include <cstring> using namespace std; class Fraction { private: int num, den; // numerator & demoninator public: Fraction() { set(0, 1); } Fraction(int n, … -
Began Watching c-string constructor
#include <iostream> #include <string> #include <stdlib.h> #include <cstring> using namespace std; class Fraction { private: int num, den; // numerator & demoninator public: Fraction() { set(0, 1); } Fraction(int n, … -
Replied To a Post in can't installing anything on headless debian
Edit it manually to say what. The python thing didn't work. -
Began Watching New To Linux
I have interest in knowing and working with Linux,so what distro will be the best for me to start with? -
Replied To a Post in New To Linux
I would suggest Linux Mint, you can download it here -> http://blog.linuxmint.com/?p=2714 Learn how to navigate the file system, with relative and absolute paths. Learn to edit config file with … -
Replied To a Post in can't installing anything on headless debian
root@media-server:~# add-apt-repository ppa:nmi/vim-snapshots -su: add-apt-repository: command not found root@media-server:~# apt-add-repository ppa:passy/vim -su: apt-add-repository: command not found -
Created can't installing anything on headless debian
I just installed a headless Debian on my first that I'v ever built but I can't install any packages on it. root@media-server:~# apt-get install vim Reading package lists... Done Building … -
Began Watching can't installing anything on headless debian
I just installed a headless Debian on my first that I'v ever built but I can't install any packages on it. root@media-server:~# apt-get install vim Reading package lists... Done Building … -
Created linux log files
I just built my first computer and instlled headless on it. When I boot it up there are a few problems on the black and white screen with all the … -
Began Watching linux log files
I just built my first computer and instlled headless on it. When I boot it up there are a few problems on the black and white screen with all the … -
Replied To a Post in ripping music
Thanks, I'll give it a try. -
Created My first custom PC
I just finished my first computer that I've ever built from the scratch. I used an MSI motherboard, AMD processor, DD3 RAM, and a Samsung SSD. I am wanting to … -
Began Watching My first custom PC
I just finished my first computer that I've ever built from the scratch. I used an MSI motherboard, AMD processor, DD3 RAM, and a Samsung SSD. I am wanting to … -
Created ripping music
I use Banshee as my Media player and it works just find except that when I rip CDs into .wav files Banshee doesn't always get the ID3 information, artist, album, … -
Began Watching ripping music
I use Banshee as my Media player and it works just find except that when I rip CDs into .wav files Banshee doesn't always get the ID3 information, artist, album, … -
Marked Solved Status for printer/scanner for Linux
I'm looking for a good printer/scanner that works well with Linux, any suggestions on brands and models? Thanks. -
Created printer/scanner for Linux
I'm looking for a good printer/scanner that works well with Linux, any suggestions on brands and models? Thanks. -
Began Watching printer/scanner for Linux
I'm looking for a good printer/scanner that works well with Linux, any suggestions on brands and models? Thanks. -
Created getting Centos VM box online
I just installed CentOS in my Oracle virtual box and now I'm having trouble getting it to connect online. I'm following the directions here -> http://xmodulo.com/how-to-configure-network-interfaces-in.html but the file ifcfg-eth0 … -
Began Watching getting Centos VM box online
I just installed CentOS in my Oracle virtual box and now I'm having trouble getting it to connect online. I'm following the directions here -> http://xmodulo.com/how-to-configure-network-interfaces-in.html but the file ifcfg-eth0 … -
Marked Solved Status for installing CentOS on Oracle VM
I'm trying to install CentOS on my Linux Mint desktop through Oracle's VirtualBox. The instalation screen says it's installing to sda1 and that's it's mount points are /boot -> 500 … -
Replied To a Post in installing CentOS on Oracle VM
Thanks. -
Created installing CentOS on Oracle VM
I'm trying to install CentOS on my Linux Mint desktop through Oracle's VirtualBox. The instalation screen says it's installing to sda1 and that's it's mount points are /boot -> 500 … -
Began Watching installing CentOS on Oracle VM
I'm trying to install CentOS on my Linux Mint desktop through Oracle's VirtualBox. The instalation screen says it's installing to sda1 and that's it's mount points are /boot -> 500 … -
Marked Solved Status for C++ 11, g++, and pointers
[Linux] I have had a hard time understanding pointers beyond a simple array step through and modifying one address at a time. When I get into pointers to C-structures, C++-objects … -
Replied To a Post in C++ 11, g++, and pointers
Thanks guys. mike_2000_17 one more thing, I thought gcc was for C and g++ was for C++ ? -
Created C++ 11, g++, and pointers
[Linux] I have had a hard time understanding pointers beyond a simple array step through and modifying one address at a time. When I get into pointers to C-structures, C++-objects … -
Began Watching C++ 11, g++, and pointers
[Linux] I have had a hard time understanding pointers beyond a simple array step through and modifying one address at a time. When I get into pointers to C-structures, C++-objects … -
Replied To a Post in getting a line position
If I am reading so many bytes at a time via read(number_of_bytes) or processing one line at a time via a loop, `for line in file` how will tell() behave? … -
Created getting a line position
if I have something like the following file = open(filename, 'rb') for line in file: #do stuff Once I find what I'm looking for in file and it's placed in … -
Began Watching getting a line position
if I have something like the following file = open(filename, 'rb') for line in file: #do stuff Once I find what I'm looking for in file and it's placed in … -
Marked Solved Status for for loop and pointers, Error
[Linux & gcc] I'm taking C courses and pluralsight.com and I'm both getting an error with a program I got from one of their videos as well as having some … -
Created libraries and header files
I have a few questions about libraries and header files. Since libraries are binary files and header file are source/text files why do they not just compile the header files … -
Began Watching libraries and header files
I have a few questions about libraries and header files. Since libraries are binary files and header file are source/text files why do they not just compile the header files … -
Replied To a Post in for loop and pointers, Error
Thanks. Can you tell me how to make gcc compile in c99 or c11? Again, this is on a Linux system. -
Created for loop and pointers, Error
[Linux & gcc] I'm taking C courses and pluralsight.com and I'm both getting an error with a program I got from one of their videos as well as having some …
The End.