Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
16% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
7
Posts with Downvotes
6
Downvoting Members
5
1 Commented Post
0 Endorsements
Ranked #4K
~87.7K People Reached
About Me

Old account. No longer in use. Please Delete.

Interests
Old account. No longer in use. Please Delete.
PC Specs
Old account. No longer in use. Please Delete.
Favorite Tags
c++ x 105
java x 22
c x 17
php x 15
Member Avatar for MasterHacker110

I have been using Game Maker for a few months now but want to go a bit more advance. Where can i get some nice looking textures? Oh and if you know a profesional, rather easy to use, free game engine. Please list it and where i can download it. …

Member Avatar for Tarık Can
0
185
Member Avatar for MasterHacker110

I'm building a destkop and working somewhat on a budget. I have came down to 2 CPUS that I can choose from. I need to know which one of these CPU's would perform better and faster. The AMD APU A8 - 7600 or the Intel i3 - 4160? The AMD …

Member Avatar for ayuwah
0
299
Member Avatar for MasterHacker110

Recently I've been fooling around with some fun mathmatic (dont knwo if that is even a word) stuff. I recently took on the task of trying to calcualte PI. I have a very simple program in python that does this for me: import math from datetime import datetime top = …

Member Avatar for sneekula
0
345
Member Avatar for MasterHacker110

I'm trying to create a very simple enigma machine cipher. But mine doesn't decrypt the data correcly. #include <iostream> #include <string> using namespace std; const char alphabet[27] = { "ABCDEFGHIJKLMNOPQRSTUVWXYZ" }; const char reflector[27] = { "WSXRFVYHNIKPQAZEDCTGBUJMOL" }; const char rotors[27] = { "QWERTYUIOPASDFGHJKLZXCVBNM" }; /* Get the position of …

Member Avatar for tinstaafl
0
302
Member Avatar for MasterHacker110

I've been messign around with Python a little recently. Though I now want to import one of my .py files into my "main" file, but I get an `"module" object is not callable` error. How do I actually do this then. My files: KeyGenerator.py main.py Code I use to import: …

Member Avatar for MasterHacker110
0
336
Member Avatar for MasterHacker110

I am working on a little project of mine. Nothing major, just messing around with encryption etc... I have problem thoug. My methods do not change the values of my data. Meaning that the pointer that I pass to hold my encrypted data, doesn't get the data assigned to its …

Member Avatar for MasterHacker110
0
170
Member Avatar for MasterHacker110

I recently read about the Ackerman Function and thought I would do my own implementation of it: #include <stdio.h> long long int ackermann(long long int m, long long int n) { if (m == 0) return n + 1; if (n == 0) return ackermann(m - 1, 1); return ackermann(m …

Member Avatar for Moschops
0
265
Member Avatar for MasterHacker110

I am trying to create a form dynamicly and thus I need to initialize my DBGrid with code. { Connect the DBGrid to the database. } procedure TfrmRemoveRecord.InitDBGrid(); begin dbgList.DataSource := dmProgramDatabase.dsrCaches; end; But I get an access violation error.

Member Avatar for MasterHacker110
0
178
Member Avatar for MasterHacker110

I use Delphi 7 to develop programs, but the programs that I make, UI looks outdated. I was wondering if there is an option that I can adjust how to generated UI looks like? Thanks.

Member Avatar for Glenn9999
0
588
Member Avatar for MasterHacker110

I remember reading in Java's EULA that you acknoledge not to use it for certain things (real time applications). I did a bit of research on this matter and came to the conclusion that it is due to Java's garbage collector that makes Java slower and thus unfit / or …

Member Avatar for MasterHacker110
0
221
Member Avatar for MasterHacker110

I hear that the new version of Java, Java 8, does not support a way to connect to MS Access database... I have a rather big problem in this case as I created all my databases with access (And im not porting them to SQL). I wanted to update my …

Member Avatar for Schol-R-LEA
0
604
Member Avatar for MasterHacker110

As I understand it, Fortran 2008 is the latest release? I have searched goolge but was un - able to find a Fortran compiler and tutorials Fortran 2008.

Member Avatar for covert
0
131
Member Avatar for MasterHacker110

I have a small program that queries a database and retrieve some information about employees. The only problem I have is that when I search for the employee my program never finds any employee after the first employee. Here is my code: private void buttonSearch_Click(object sender, EventArgs e) { string …

Member Avatar for hericles
0
194
Member Avatar for MasterHacker110

I was looking around on the web about robotics programming, especially the Lego mindstorm EV3. I was looking at what programming languages this platform supports. I saw that you can program it in Java ME(understandable as Java is everywhere today) and in C#. I thought that C# was a windows …

Member Avatar for MasterHacker110
0
600
Member Avatar for MasterHacker110

I am trying to write some information to an access database using OleDB but I get an error. I dont know what is wrong with it. I it something to do with my SQL code? // The program will make use of a text file for now but must use …

Member Avatar for MasterHacker110
0
192
Member Avatar for MasterHacker110

I need to copy modified data that is stored in an char* to another char* but I get an access violation error. Here is the code int EncryptData(char *data_source, char *data_cipher, size_t sizeofdata) { char *tmp_data; long long int digit; tmp_data = new char[sizeofdata]; /* Do some calculations here with …

Member Avatar for MasterHacker110
0
6K
Member Avatar for MasterHacker110

I was wondering something, I know that on windows you can't interact directly with the hardware, you have to use the system API. Now in Linux in the other hand, it looks to me if this can actually be done, or am I wrong? The thing reason why I say …

Member Avatar for mathematician
0
236
Member Avatar for MasterHacker110

I am working on a little hobby project, it reads user input and then stores it in a pointer to char array. The problem is that the output is not correct. So i dont know if it is the output, or the storing that is wrong. I am used to …

Member Avatar for MasterHacker110
0
319
Member Avatar for MasterHacker110

I am trying to figure out where is Java and C# mostly used? I read that enterprises favors Java and JEE, but they don't say anything about JSE. I also read that C# is being used a lot, especially on Windows platforms. But the question remains, what do enterprises use …

0
88
Member Avatar for MasterHacker110

I am writing a program that will open another form, the user will continue doing stuff on the new form and would then close the form. When and only when this new form closes, the main form should continue with its work and re-enable some components. Here is the code: …

Member Avatar for mKorbel
0
201
Member Avatar for MasterHacker110

I am trying to read a some data that is stored in an xml file and then print it to the screen for the user. But my program isn't working correctly. Here is my XML document: <UserAccounts> <Account AccountNumber="1234567890"> <Password>12345</Password> <Balance>1024.64</Balance> </Account> </UserAccounts> And here is my code: File fXmlFile …

Member Avatar for MasterHacker110
0
300
Member Avatar for MasterHacker110

Hello, I have this program that will check and see if the email address the user entered contains valid characters and the @ and . character. The only problem is that my program isn't working... When I enter a valid email address it says it is invalid, when I enter …

Member Avatar for Mya:)
0
5K
Member Avatar for MasterHacker110

I just installed linux fedora 16. When i want to view my software packages in the "Add/Remove software" it doesnt show any packages. it give the following error when i click on the "Package Collection" tab: The group list was invalid The group list could not be loaded Refreshing your …

Member Avatar for Yurok
0
604
Member Avatar for MasterHacker110

So as I posted before I am thinking on buying an iphone. I want to get into mobile app dev. I dont have a mac (only windows) so I search and found a lot of articles that said that it is basicly imposible to write iphone apps from a windows …

Member Avatar for SalmiSoft
0
320
Member Avatar for MasterHacker110

I'm trying to write a search enigne. Nothing fancy like google or so, just a simple one for educational purposes. I have done a little research and I know that Google uses Python, Java and C++. I on the other hand know C++, PHP, some Java and C# and even …

Member Avatar for kindo
0
241
Member Avatar for MasterHacker110

I have searched everywhere for Borland Delphi 7 but I cant find it anywhere. I used it a while ago when I got it as part of my programmer courses but I lost all the data on my harddrive. I have looked on Borlands main website but I was unable …

Member Avatar for dausmus
0
4K
Member Avatar for MasterHacker110

Hello, I am trying to write this program in Delphi that calculates the amount of change required to make a certain amount. The user enter a number between 1 and 200. The program then calculates the amount of 100, 50, 20, 10, 5, 2, 1 bils required. But there is …

Member Avatar for MasterHacker110
0
248
Member Avatar for MasterHacker110

So i have bought this book about assembly language but they use Netwide assembler and i dont have an IDE / COmpiler for it. I have looked at NASM origanal website but i din't fid any IDE. I use FASM, i dont know if NASM will work with FASM. Any …

Member Avatar for Дмитрий_4
0
2K
Member Avatar for MasterHacker110

I am thinking about making my own social network recently. Now I have a few questions... Q1: I have used php and asp.net before and liked them both, never really used python for web development. I am thinking about making a smallish social network but also want to expand it …

Member Avatar for masterjiraya
0
247
Member Avatar for MasterHacker110

I need to install hamachi on kali linux. The only problem is that when I try to install it I get an error saying that it requires lsb-core 3.0 to work. So I tried installing lsb-core 3, but I was unable to find a package named lsb-core 3. So how …

Member Avatar for Jeroen Mathon
0
605