No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Hello guyz, I am trying call oauth/request_token in order to oauth_token and oauth_token_secret. First here's the code string url = "https://api.twitter.com/oauth/request_token"; SortedDictionary<string,string> sd = new SortedDictionary<string,string>(); sd.Add("oauth_callback",oauth_callback); sd.Add("oauth_consumer_key",oauth_consumer_key); sd.Add("oauth_nonce",oauth_nonce); sd.Add("oauth_signature_method",oauth_signature_method); sd.Add("oauth_timestamp", oauth_timestamp); sd.Add("oauth_version",oauth_version); string base_string = String.Empty; base_string += "POST" + "&"; base_string += Uri.EscapeDataString("https://api.twitter.com/oauth/request_token")+"&"; foreach (KeyValuePair<string,string> entry in sd) … | |
I have made a chat client using TCPListener for server and TCPClient for client it works perfectly fine on localhost. However it is unable to send message over a ad-hoc network. I have tried everything i can think of. 1.Firewalls allow the application to run on both computers. 2.Even disabling … | |
I am thinking of something that would require extreme use of algorithms, maybe a search engine or a distributed computing systems. Any other idea for heavily algorithim based project that would of course increase my marketability ? and by the way i have 2 instead of 1 year to complete … | |
I have just started web developing and have learned on how to code. But my site tend to be miserable when it comes to aesthetics,selection of fonts, Background and foreground color and such stuff. So what i want is some good books,tutorials,videos anything that can help. Thank you. | |
I have been trying to learn CSS for a while now. I have been working in C++ for quite some time now so i thought hey CSS should be a walk in a park but it has proved to be enormously difficult for me. The main thing that seem to … | |
Ok i have written a CSS code for body [CODE] body { margin: 0 auto; } #header { font-family: Georgia,Times,serif; } [/CODE] With the CSS code for body everything that's inside the body should be placed in the center of the page because the body is in the center. In … | |
What i trying to do is to integrate windows forms controls with my classes. For example if i press a button on my windows forms a function in a class should be called. Now the problem is that i make an object from a class in the main. The event … | |
Hello, I have made a store inventory system in console in C++. I would like to know how can i convert it into full fledged graphical user interface. Any article,book,tutorial,video would be very helpful Thank you. |
The End.