Advertisement

Results for "Author: amine haddad"

ASP_Volume2 #28870
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

ASP_Volume3 #64695
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

ASP_Volume3 #64696
CPU/User Friendly, Non-Blocking StdIO (Pipe Redirection) w/ MX Lookup Example Included!

This is User-Friendly, CPU-Friendly, NON-BLOCKING Standard Input-Output code to grab output of a command line interface program, AND, for the first time ever (in open source in VB), to send input to it as well. For example, when you go to start -> run -> cmd, you will notice that it opens up and you can type stuff in it like ping www.google.com. Now that was done before (by me and a few others on the net in vb) that we can grab the output of the ping www.google.com, and then we would lose the console, but in this one, we run the console, and we send it ping www.google.com and it returns to normal so we can send it another command! This can be used with ANY program that can output to DOS (except a few that use direct CON output). Also, as I mentioned earlier, this is NON-Blocking. With ALL the examples of STDIO that are out, C/C++/VB (except those that use PeekNamedPipe API, not really non-blocking but it does the job), this is the first to have true Non-Blocking with Pipes (may have been done but I have not seen it yet). Let me quickly explain why Non-Blocking is important. Let's say you run a C++ program that waits for input, and you are constantly calling ReadFile() to get its output, and ReadFile() is (by default) blocking, how can you send it input when ReadFile() doesn't go to the next line until it has gotten output? Only possible way is Non-Blocking methods. The code is very simple, take a look at it. I have included a very simple use for this, and it is to lookup MX Servers of certain domains (MX Servers are hosts that let you connect to them on port 25 so you can send an email to someone, hosts like 'hotmail.com', 'gmail.com', etc.). Notice I didn't put no www.hotmail.com, because the www is a subdomain, and not the main domain (your email would be amine@hotmail.com not amine@www.hotmail.com). This will launch NSLookup (built in windows), change the type to MX Lookup and perform the query. It took me a few days (with the help of two friends Zak and Espen w/ debugging and C++ testing, etc) to code this, and I am sharing it with coders of PlanetSourceCode, so I would appreciate if you took the time to look at it, and vote for it, and maybe a comment or two :P Thank you -Amine Haddad

ASP_Volume3 #64697
Standard Input/Output Complete!

This program is one of a kind, and I don't say that because it can read output of another application but because, for the first time, it can send input from vb as well! Please, it took me a few days to code this, so if you like it, then please vote. I would also like to thank 2 friends of mine, Zak and Espen for their help in debugging this bloody program.

C_Volume2 #69932
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

Java_Volume1 #88476
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

2_2002-2004 #115623
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

3_2004-2005 #134167
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

4_2005-2006 #169992
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

4_2005-2006 #169993
CPU/User Friendly, Non-Blocking StdIO (Pipe Redirection) w/ MX Lookup Example Included!

This is User-Friendly, CPU-Friendly, NON-BLOCKING Standard Input-Output code to grab output of a command line interface program, AND, for the first time ever (in open source in VB), to send input to it as well. For example, when you go to start -> run -> cmd, you will notice that it opens up and you can type stuff in it like ping www.google.com. Now that was done before (by me and a few others on the net in vb) that we can grab the output of the ping www.google.com, and then we would lose the console, but in this one, we run the console, and we send it ping www.google.com and it returns to normal so we can send it another command! This can be used with ANY program that can output to DOS (except a few that use direct CON output). Also, as I mentioned earlier, this is NON-Blocking. With ALL the examples of STDIO that are out, C/C++/VB (except those that use PeekNamedPipe API, not really non-blocking but it does the job), this is the first to have true Non-Blocking with Pipes (may have been done but I have not seen it yet). Let me quickly explain why Non-Blocking is important. Let's say you run a C++ program that waits for input, and you are constantly calling ReadFile() to get its output, and ReadFile() is (by default) blocking, how can you send it input when ReadFile() doesn't go to the next line until it has gotten output? Only possible way is Non-Blocking methods. The code is very simple, take a look at it. I have included a very simple use for this, and it is to lookup MX Servers of certain domains (MX Servers are hosts that let you connect to them on port 25 so you can send an email to someone, hosts like 'hotmail.com', 'gmail.com', etc.). Notice I didn't put no www.hotmail.com, because the www is a subdomain, and not the main domain (your email would be amine@hotmail.com not amine@www.hotmail.com). This will launch NSLookup (built in windows), change the type to MX Lookup and perform the query. It took me a few days (with the help of two friends Zak and Espen w/ debugging and C++ testing, etc) to code this, and I am sharing it with coders of PlanetSourceCode, so I would appreciate if you took the time to look at it, and vote for it, and maybe a comment or two :P Thank you -Amine Haddad

4_2005-2006 #169994
Standard Input/Output Complete!

This program is one of a kind, and I don't say that because it can read output of another application but because, for the first time, it can send input from vb as well! Please, it took me a few days to code this, so if you like it, then please vote. I would also like to thank 2 friends of mine, Zak and Espen for their help in debugging this bloody program.

5_2007-2008 #192510
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

5_2007-2008 #192511
CPU/User Friendly, Non-Blocking StdIO (Pipe Redirection) w/ MX Lookup Example Included!

This is User-Friendly, CPU-Friendly, NON-BLOCKING Standard Input-Output code to grab output of a command line interface program, AND, for the first time ever (in open source in VB), to send input to it as well. For example, when you go to start -> run -> cmd, you will notice that it opens up and you can type stuff in it like ping www.google.com. Now that was done before (by me and a few others on the net in vb) that we can grab the output of the ping www.google.com, and then we would lose the console, but in this one, we run the console, and we send it ping www.google.com and it returns to normal so we can send it another command! This can be used with ANY program that can output to DOS (except a few that use direct CON output). Also, as I mentioned earlier, this is NON-Blocking. With ALL the examples of STDIO that are out, C/C++/VB (except those that use PeekNamedPipe API, not really non-blocking but it does the job), this is the first to have true Non-Blocking with Pipes (may have been done but I have not seen it yet). Let me quickly explain why Non-Blocking is important. Let's say you run a C++ program that waits for input, and you are constantly calling ReadFile() to get its output, and ReadFile() is (by default) blocking, how can you send it input when ReadFile() doesn't go to the next line until it has gotten output? Only possible way is Non-Blocking methods. The code is very simple, take a look at it. I have included a very simple use for this, and it is to lookup MX Servers of certain domains (MX Servers are hosts that let you connect to them on port 25 so you can send an email to someone, hosts like 'hotmail.com', 'gmail.com', etc.). Notice I didn't put no www.hotmail.com, because the www is a subdomain, and not the main domain (your email would be amine@hotmail.com not amine@www.hotmail.com). This will launch NSLookup (built in windows), change the type to MX Lookup and perform the query. It took me a few days (with the help of two friends Zak and Espen w/ debugging and C++ testing, etc) to code this, and I am sharing it with coders of PlanetSourceCode, so I would appreciate if you took the time to look at it, and vote for it, and maybe a comment or two :P Thank you -Amine Haddad

5_2007-2008 #192512
Standard Input/Output Complete!

This program is one of a kind, and I don't say that because it can read output of another application but because, for the first time, it can send input from vb as well! Please, it took me a few days to code this, so if you like it, then please vote. I would also like to thank 2 friends of mine, Zak and Espen for their help in debugging this bloody program.

6_2008-2009 #215028
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

6_2008-2009 #215029
CPU/User Friendly, Non-Blocking StdIO (Pipe Redirection) w/ MX Lookup Example Included!

This is User-Friendly, CPU-Friendly, NON-BLOCKING Standard Input-Output code to grab output of a command line interface program, AND, for the first time ever (in open source in VB), to send input to it as well. For example, when you go to start -> run -> cmd, you will notice that it opens up and you can type stuff in it like ping www.google.com. Now that was done before (by me and a few others on the net in vb) that we can grab the output of the ping www.google.com, and then we would lose the console, but in this one, we run the console, and we send it ping www.google.com and it returns to normal so we can send it another command! This can be used with ANY program that can output to DOS (except a few that use direct CON output). Also, as I mentioned earlier, this is NON-Blocking. With ALL the examples of STDIO that are out, C/C++/VB (except those that use PeekNamedPipe API, not really non-blocking but it does the job), this is the first to have true Non-Blocking with Pipes (may have been done but I have not seen it yet). Let me quickly explain why Non-Blocking is important. Let's say you run a C++ program that waits for input, and you are constantly calling ReadFile() to get its output, and ReadFile() is (by default) blocking, how can you send it input when ReadFile() doesn't go to the next line until it has gotten output? Only possible way is Non-Blocking methods. The code is very simple, take a look at it. I have included a very simple use for this, and it is to lookup MX Servers of certain domains (MX Servers are hosts that let you connect to them on port 25 so you can send an email to someone, hosts like 'hotmail.com', 'gmail.com', etc.). Notice I didn't put no www.hotmail.com, because the www is a subdomain, and not the main domain (your email would be amine@hotmail.com not amine@www.hotmail.com). This will launch NSLookup (built in windows), change the type to MX Lookup and perform the query. It took me a few days (with the help of two friends Zak and Espen w/ debugging and C++ testing, etc) to code this, and I am sharing it with coders of PlanetSourceCode, so I would appreciate if you took the time to look at it, and vote for it, and maybe a comment or two :P Thank you -Amine Haddad

6_2008-2009 #215030
Standard Input/Output Complete!

This program is one of a kind, and I don't say that because it can read output of another application but because, for the first time, it can send input from vb as well! Please, it took me a few days to code this, so if you like it, then please vote. I would also like to thank 2 friends of mine, Zak and Espen for their help in debugging this bloody program.

7_2009-2012 #237546
Simplify Fractions

This program will simplify your fractions. You input [3 / 9] and it will return [1 / 3]. Please let me know of any bugs/fractions that are not working.

7_2009-2012 #237547
CPU/User Friendly, Non-Blocking StdIO (Pipe Redirection) w/ MX Lookup Example Included!

This is User-Friendly, CPU-Friendly, NON-BLOCKING Standard Input-Output code to grab output of a command line interface program, AND, for the first time ever (in open source in VB), to send input to it as well. For example, when you go to start -> run -> cmd, you will notice that it opens up and you can type stuff in it like ping www.google.com. Now that was done before (by me and a few others on the net in vb) that we can grab the output of the ping www.google.com, and then we would lose the console, but in this one, we run the console, and we send it ping www.google.com and it returns to normal so we can send it another command! This can be used with ANY program that can output to DOS (except a few that use direct CON output). Also, as I mentioned earlier, this is NON-Blocking. With ALL the examples of STDIO that are out, C/C++/VB (except those that use PeekNamedPipe API, not really non-blocking but it does the job), this is the first to have true Non-Blocking with Pipes (may have been done but I have not seen it yet). Let me quickly explain why Non-Blocking is important. Let's say you run a C++ program that waits for input, and you are constantly calling ReadFile() to get its output, and ReadFile() is (by default) blocking, how can you send it input when ReadFile() doesn't go to the next line until it has gotten output? Only possible way is Non-Blocking methods. The code is very simple, take a look at it. I have included a very simple use for this, and it is to lookup MX Servers of certain domains (MX Servers are hosts that let you connect to them on port 25 so you can send an email to someone, hosts like 'hotmail.com', 'gmail.com', etc.). Notice I didn't put no www.hotmail.com, because the www is a subdomain, and not the main domain (your email would be amine@hotmail.com not amine@www.hotmail.com). This will launch NSLookup (built in windows), change the type to MX Lookup and perform the query. It took me a few days (with the help of two friends Zak and Espen w/ debugging and C++ testing, etc) to code this, and I am sharing it with coders of PlanetSourceCode, so I would appreciate if you took the time to look at it, and vote for it, and maybe a comment or two :P Thank you -Amine Haddad

7_2009-2012 #237548
Standard Input/Output Complete!

This program is one of a kind, and I don't say that because it can read output of another application but because, for the first time, it can send input from vb as well! Please, it took me a few days to code this, so if you like it, then please vote. I would also like to thank 2 friends of mine, Zak and Espen for their help in debugging this bloody program.

Languages
Top Categories
Global Discovery