- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 14
- Posts with Upvotes
- 14
- Upvoting Members
- 10
- Downvotes Received
- 7
- Posts with Downvotes
- 5
- Downvoting Members
- 3
71 Posted Topics
Re: Im not to sure how to code a program to change your ip address, If I were to say you probably have to use asp.net or similar web development language that supports interconnectivity. If you dont need to change it for every site, you could just use a proxy which … | |
Re: Deathcore. I used to be into Metalcore but have now got onto the death genre more or less the technical & core side of death | |
What are interfaces main purposes and what features do they offer to give us a solid reason to use them? | |
I am learning about unit testing using the NUnit framework. I built a monopoly game in a console application and am now conducting unit tests for each class. I am struggling with writing a test for my game class that only takes 1 method: public abstract class Game: GameInterface { … | |
I am learning about design patterns in C# specifically the Bridge pattern. The GoF definition for the pattern states "Seerates an objects interface from its implementation". I have a question: Isnt an implementation of the interface always seperate from the interface itself? What exactly does the definition mean? Thankyou | |
I have been thinking about life in general and how it can be compared to programming. In my view the point of programming is the ability to manipulate and/or control computer systems. We as humans are 'programmed' in a way that the governments can control us into slavery i.e the … | |
Why do we use interface references to call methods of an object? For example: class Program : Iabc, Idef { static void Main(string[] args) { Console.WriteLine("Hello interfaces"); Program refProgram = new Program(); Iabc refiabc = refProgram; refiabc.xyz(); Idef refidef = refProgram; refidef.pqr(); Console.ReadLine(); } public void pqr() { Console.WriteLine("In pqr"); … | |
Do we really need accrediated education to effectivly have the expected experience and/or knowledge in a chosen field? For instance can we learn more from doing a course in programming than we can from learning ourselves? I see the benefits in both: **Accerdited course** - Have an experienced tutor - … | |
![]() | |
Im am having abit of trouble with a while loop. I have this method which determines wether or not the entered year is a leap year, the while loop is intended to keep asking the user for another year until he/shes wishes to exit the program. Here is my method: … | |
What are interfaces main purposes and what features do they offer to give us a solid reason to use them? | |
Why do you use Private fields in a class if an outside class can change the private fields using get and set properties? | |
When would you use an interface over an abstract class vise versa? | |
**Please note that I am not asking for an answer to the exercise just abit more explanation** I have this question that I do not understand. Using a class to wrap simple stream input (InputWrapper.cs) modify following program to calculate area of a triangle given base and height using System; … | |
I have a form that asks the user to enter in an exam id that they want to delete from the exam table in the DB. The problem I am having is that even if the user enters in an id that does not match in the DB the script … ![]() | |
I am learning about cross-side scripting and have made a simple html page along with a php page to return the data entered <!DOCTYPE html> <html> <head> <title>Inject</title> </head> <body> <form name = "MyForm" id = "MyForm" method = "POST" action = "handle.php"> <label name = "MyLabel" id = "MyLabel" … | |
Email encryption uses digital certificates to authenticate, encrypt and decrypt the message. When a message is encrypted, the public key to decrypt it is sent along with the message to the recipient, the recipient then uses the public key to decrypt the message. If the message was intercepted couldnt the … | |
I am doing a little home project to learn more about collections and FileIO. I have made a little racing app where the user enters the racers details all of which are strings, and these details are inserted into a List<T> list and then once the user clicks the 'save' … | |
I have been learning about collections such as arrays and arraylists and lists and have come across the term "interface" a fair bit. I know that an IList is an "interface" but I dont understand what an interface is or does. 1. What is an interface in C#? 2. How … | |
What is the difference between an enum and an array? with both you can store elements the main difference between arrays and enums are that enums are not index based wereas arrays are, that is all I know. So I have a few questions 1. How do we use enums? … | |
I have been learning about the collections namespace in C# so have been doing some little self-made projects to learn. I have made a car race app where you enter in the name, car and place of the racer this is then stored in an array list. I can extract … | |
I have a few general questions about the Collections class in C#:" 1. Because all elements in an ArrayList are stored as objects do we need to cast them into their respective types before extracting? 2. Array lists are used if the size is adjusted accordinly to elements added and … | |
In this link what exactly does 'skip_api_login' and 'api_key' mean? https://www.facebook.com/login.php?skip_api_login=1&api_key=143103275748075&signed_next=1&next=https%3A%2F%2Fwww.facebook.com%2Fv1.0%2Fdialog%2Foauth%3Fredirect_uri%3Dhttp%253A%252F%252Fstatic.ak.facebook.com%252Fconnect%252Fxd_arbiter%252FbLBBWlYJp_w.js%253Fversion%253D41%2523cb%253Df28f4529cc%2526domain%253Dwoobox.com%2526origin%253Dhttp%25253A%25252F%25252Fwoobox.com%25252Ff3f142e898%2526relation%253Dopener%2526frame%253Df3c3671928%26display%3Dpopup%26scope%3Duser_likes%26response_type%3Dtoken%252Csigned_request%26domain%3Dwoobox.com%26client_id%3D143103275748075%26ret%3Dlogin%26sdk%3Djoey&cancel_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter%2FbLBBWlYJp_w.js%3Fversion%3D41%23cb%3Df28f4529cc%26domain%3Dwoobox.com%26origin%3Dhttp%253A%252F%252Fwoobox.com%252Ff3f142e898%26relation%3Dopener%26frame%3Df3c3671928%26error%3Daccess_denied%26error_code%3D200%26error_description%3DPermissions%2Berror%26error_reason%3Duser_denied%26e2e%3D%257B%257D&display=popup | |
If I have an array and an array list: int[] myArray = new int[2]; myArray[0] = 1; myArray[1] = 2; ArrayList myArrayList = new ArrayList(); myArrayList.Add("1st element"); myArrayList.AddRange(myArray); By calling the Addrange() method in myArrayList, does this add the contents of myArray to the second element of myArrayList? If so … | |
Re: We are coming closer to be able to hack the human brain, we can control robots with our brain so maby you can write some code to heal things :) Get better soon! | |
Is it possible to create an encryption algorith using C#? | |
I have just started my third year of my Bachelors degree in IT. I am enjoying programming and would like to take my interest with programming further. The main reason I enjoy programming is because of the fact that your mind is the limit of what you can create and … | |
What is the difference between Code Inline and Code Behind? As the names suggest I would presume that Code Inline refers to code that is in the same file as the .aspx and Code Behind refers to code that is in a seperate file. Im not too sure if thats … | |
Re: Here I think I have solved your problem bool ShowSomeEffort; if(!ShowSomeEffort) { MessageBox.Show("Show some effort that you have tried to solve this yourself and we will be glad to help"); } else { MessageBox.Show("Tell us what you need help with below"); } | |
Re: If you are using external .js files with your HTML you need to save it in the same directory as your HTML files. You call the external js inside your HTML file like this: <script src = "master.js"></script> | |
Re: If your running a pirated copy of windows then it is more likley to become 'unactivated' esp if your using trial resets or if it has detected that it is illegal. If you are with a training institue doing IT then you are likley to qualify for ELMS Dreamspark which … | |
I have run into a basic problem. I have a very simple form that asks the user their name and then they click the submit button and an alert is shown with their name in it. When the button is clicked nothing happens. I have called the function in the … | |
Re: Hi, Here you go: <?php $TooLazyToDoItMySelf = true; if($TooLazyToDoItMySelf) { echo "Show some effort then we will be happy to help"; } ?> | |
I know that with Array Lists you can hold different types. Can you acomplish the same thing with arrays for example an array containing both ints and strings? | |
I know that the main difference between an array and a list is that a list size changes dynamically as items are added or removed. Because of this, if we copy an array to a list does that mean that the list must have a static size of the array's … | |
I have a console application with two classes: - **MyIntList** Which initilzes the array and handles the input and outputs. - **Program** This has the Main() method which handles the users input and sends them too the handlers in **MyIntList**. The problem I am having is that when the array … | |
Both lists and arrays store data in one object(array or list). 1. In C# what is the difference between arrays and lists? 2. Can we store the same type in a list as an array? 3. Can an list store objects and references to other objects? 4. Where would we … | |
I dont get this: CTRL - W EYES = CTRL - O MIND Here is a link for the image:[Click Here](http://d1lalstwiwz2br.cloudfront.net/images_users/tiny_mce/PersianSultan/phpWVg9UN.jpeg) | |
Re: Thankyou Dani for standing up for us as students and helping us to help our selves | |
I know that assigning the access type 'private' to a variable is to prevent other methods from accessing and modifing that variable from out side its class. I understand that the get and set modifiers are typically used to access private variables. Why can a private variable be accessed by … | |
Re: Here is an example: public void lazy() { bool tryMySelf; if(!tryMySelf) { MessageBox.Show("Do your own homework or show some effort then we will help"); } } | |
Re: I am 24 now, I created my first proper website at the age I am now ![]() | |
I have been coding in c# on and off since I started my first year of the degree in IT two years ago. Of course you use the (), [] and {} brackets **very** frequently but I have never took the time to actually look where you apply each type … | |
I am wondering if a struct is like an object or is an object. For example a struct: struct Books { public string title; public string author; public string subject; public int book_id; }; Defining this struct: public class testStructure { public static void Main(string[] args) { Books Book1; /* … | |
1. What the deal with rep points? 2. How do they increase? Iv got a few upvotes for helping others but I dont seem to be earning any points. | |
I started programming 3 2 years ago when I started the certificate in IT, I am now on my 3rd and final year of the bachelors degree in IT. The first language I ever used was Visual Basic which we learnt in the certificate, i then moved onto c# in … | |
I am starting my third year of the bachelors degree next month and I am still not sure exactly what path to take when I finish mid next year. Is this normal? or should I know by now what I want to do? I am very interested in programming but … | |
Im having a few cold ones (Steinlagar classic). Having a beer is usually the last thing I do, after I know that I am done with programming for the day as your cocentration goes right out the window. | |
I have changed my email address due to issues with spam filtering. I have changed my email through the 'edit profile' tab but the notifications of post replys arnt coming through. Is there a proper way to change the email that notifications go to? |
The End.