Re: i want to make a c++ injector connect with keyauth Programming by rproffitt … with what you think is the issue is what is acceptable. However, assisting others with crafting cheat software doesn't happen… Acceptable to use goto statement? Programming Software Development by Johnathon332 … I wanted everyones views on whether or not this is acceptable, the goto statement I meant. If not, how else would… What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by BethL … regard to your material? What sort of reuse would be acceptable? Is it OK for the company to use your UGC… PHP & 406 Not Acceptable Programming Web Development by merianos …-cache Cache-Control: no-cache HTTP/1.x 406 Not Acceptable Date: Sat, 03 Jan 2009 08:22:17 GMT Server… Is it acceptable to have public instance variables? Programming Software Development by SMITA6076 Is it ever acceptable to make instance variables public? If so, when? Re: Is it acceptable to have public instance variables? Programming Software Development by dononelson … constants, such as [CODE]public static final String ACCEPTABLE_PUBLIC = "Acceptable public variable";[/CODE] Others may have opposing opinions. BTW… Re: Is it acceptable to have public instance variables? Programming Software Development by jwenting It's certainly acceptable and even desirable if not required in some specific cases. If and when you run into such cases, you'll know them as there will be no way to get the application compiling and/or running when doing things in other ways. Re: Acceptable to use goto statement? Programming Software Development by thines01 No, because it is not necessary. You can fix that with a while statement. Re: Acceptable to use goto statement? Programming Software Development by gerard4143 Because goto can have devastating results on your program and program flow its frowned on. If you really need to jump all over your program try a safe function like longjmp(). [code] void longjmp (jmp_buf env, int val); int setjmp ( jmp_buf env ); [/code] Re: Acceptable to use goto statement? Programming Software Development by Ancient Dragon [QUOTE=gerard4143;1778428]If you really need to jump all over your program try a safe function like longjmp(). [code] void longjmp (jmp_buf env, int val); int setjmp ( jmp_buf env ); [/code][/QUOTE] Wrong. longjmp() and setjmp() are not supported in c++ program. I have used goto on very very rare occasion when within a deeply nested loops of … Re: Acceptable to use goto statement? Programming Software Development by mike_2000_17 No, don't use goto for such a simple purpose. If nothing more, it's better to replace it with [ICODE]while(true) { };[/ICODE] loop (and a [ICODE]break;[/ICODE] statement somewhere in the loop). At the least, this makes it clear that the code is a loop, and respect indentation rules, that alone is already a good argument to motivate using a … Re: is this an acceptable use of goto? Programming Software Development by Narue >There is never ever an acceptable use of goto. According to [B]some[/B] people. The … that goto is evil and simply don't see any acceptable uses. Naturally you should follow the coding guidelines of your… Re: is this an acceptable use of goto? Programming Software Development by Ancient Dragon There is never ever an acceptable use of [b]goto[/b]. I know teachers who give an F for a program that uses it, and the companies I worked for absolutely forbid it. Re: is this an acceptable use of goto? Programming Software Development by phalaris_trip … anchors, so... maybe just in this one instance it is acceptable? On a side note though, I did refactor it into… acceptable conversion ratio Digital Media Digital Marketing Search Engine Strategies by phoenix06007 What is a reasonable target for converting fisrt page visitors to a sale or a lead Re: acceptable conversion ratio Digital Media Digital Marketing Search Engine Strategies by jreseo This varies widely based on what you are capturing or selling. In classic lead generation (e.g., mortgage, real estate, white paper download, etc) a typical range is from 3-8%, but it can be over 20% or less than 1% depending on factors such as value and traffic targeting. The problem is there are too many factors: - Value of what you are … Re: acceptable conversion ratio Digital Media Digital Marketing Search Engine Strategies by phoenix06007 ugh arent there like a million different variables? the most important one being your niche Re: acceptable conversion ratio Digital Media Digital Marketing Search Engine Strategies by Dani I'm confused. Did you just answer your own question? Acceptable Latency for RDP over VPN tunnels Hardware and Software Networking by thiyagu1981 We have SAP and Java application hosted in remote server. The users are connecting to the other side of the world, through a VPN tunnel to the remote server; RDPing into a terminal services server and then running SAP and Java. The users are reporting slowness in accessing the applications and latency is 156 ms average where we can optimize … Re: Acceptable Latency for RDP over VPN tunnels Hardware and Software Networking by freshfitz Is the other divisions app on the same server, How is the vpn setup is it hardware to hardware or windows dial up? Re: Acceptable Latency for RDP over VPN tunnels Hardware and Software Networking by thiyagu1981 Other divsion is using the application hosted in the different server through different VPN tunnel. It is hardware to hadware VPN configured through IPSec tunnels. Does Replacing of IPSec tunnels by SSH tunnels will work out to resolve the issue. Hope this will feed your thoughts to resolve the issue. What are the possible options to reduce the… Re: What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by BethL Would you be angry if the company didn't get your permission? Re: What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by Narue >If you were to agree to these terms, how would you expect >the company to behave with regard to your material? Given nothing other than your paraphrasing, I'd expect them to do anything they please [I]except[/I] claim ownership of the material. >Would you be angry if the company didn't get your permission? Accepting the terms and … Re: What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by Lardmeister In this day and age any information you give will be data mined by others. Get used to it. Re: What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by jbennet [quote]Would you be angry if the company didn't get your permission?[/quote] when you click agree , its the same as signing a contract. You are legally bound by what you select. Re: What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by Ancient Dragon [QUOTE=jbennet;609843]when you click agree , its the same as signing a contract. You are legally bound by what you select.[/QUOTE] I'm not so sure about that -- how do they know who clicked on it? At most all they can tell is the ip address of the computer that was used, and in some cases they can't even tell that (for instance the computer I … Re: What is acceptable reuse of user-generated content? Community Center Geeks' Lounge by jwenting yes, you are legally bound to what you agreed to. It doesn't matter who clicked that button, by clicking it that account was linked to that contract. If the contract holder allows others to use that account the contract holder is still the one who holds the contract and has agreed to its terms. People he lets use that account have no rights … Re: Is it acceptable to have public instance variables? Programming Software Development by JamesCherrill I'm gonna vote on the side of never having public instance variables (except static final immutables), even if you do believe your class is safe against some bozo arbitrarily changing its values from some arbitrary concurrent thread. Re: Is it acceptable to have public instance variables? Programming Software Development by jwenting never say never :) There are special cases in which it's required, but they're special cases. Re: Is it acceptable to have public instance variables? Programming Software Development by JamesCherrill [QUOTE=jwenting;1532885]never say never :) There are special cases in which it's required, but they're special cases.[/QUOTE] <Genuine question, not an attempt to start an argument>For example...?</Genuine question, not an attempt to start an argument>