Re: How secure is Github? Programming Software Development by Salem TBH, if it's "just me", then password protected tarballs of your `.git` directory, uploaded to one of the … Re: How would we poison AI web crawls? Hardware and Software Information Security by Reverend Jim … the web. They feed garbage to bots that access the protected sites. AI that returns bogus results on the ppther hand… Re: How would we poison AI web crawls? Hardware and Software Information Security by Dani … the web. They feed garbage to bots that access the protected sites. The technique you're referring to is called spoofing… Re: protected mode programming guide Programming Software Development by Ancient Dragon Protected mode does not have access to real mode addresses. You … protected data members = bad design? Programming Software Development by kevintse …private[/B][/COLOR] . In particular, declaring data members protected is usually a design error. Placing significant amounts of … use leaves that data open to corruption. Worse, protected data, like public data, cannot easily be restructured …no good way of finding every use. Thus, protected data becomes a software maintenance problem." Now I… Protected access modifier in Java Programming Software Development by pratz … am not wrong then the method with protected access modifier can be accessed by the …DisplayName1 [CODE]package p1; public class ClassTest1 { protected void display1() { System.out.println("This is…p2; import p1.*; public class ClassTest2 extends ClassTest1 { protected void display2() { System.out.println("This is… Re: protected data members = bad design? Programming Software Development by MrSpigot …Stroustrup states that "In particular, declaring data members protected is usually a design error.". [/QUOTE] I …number of derived classes in your application which use protected members in the base class. If you're …and white. Stroustrup does say "...declaring data members protected is [B][COLOR="Red"]usually[/COLOR][/B… protected mode switch Programming Software Development by xixpsychoxix …switching_msg db "Currently placing processor in 32-bit Protected mode...",0 done_msg db "Done with placing… processor in 32-bit Protected mode. I can't believe I finally made it… a valid code segment ! 00107450657i[CPU0 ] CPU is in protected mode (active) 00107450657i[CPU0 ] CS.d_b = 16 bit 00107450657i… Re: protected data members = bad design? Programming Software Development by jwenting … APIs.[/QUOTE] Assume ALL API specifications to be public, period. Protected (and even public) data members have their place, but that… directly, the only use is by derived classes. Giving those protected data members yields the same result as providing those data… Re: protected mode switch Programming Software Development by mathematician …, until after he has switched into protected mode. One of the great joys of writing protected mode operating systems is that, once… in protected mode, you can no longer use… Re: protected data members = bad design? Programming Software Development by kevintse Yap, I can do that, but it seems kinda awkward that the Image class can use the Bitmap structure directly while the ImageSection class can not. I just have no idea why Bjarne Stroustrup states that "In particular, declaring data members protected is usually a design error.". Then what is the best solution to this kind of design problem? Re: Protected access modifier in Java Programming Software Development by pratz … ClassTest1 with method DisplayName1 [CODE]package p1; public class ClassTest1 { protected void display1() { System.out.println("This is ClassTest1"…. [CODE]package p2; import p1.*; public class ClassTest2 extends ClassTest1 { protected void display2() { System.out.println("This is ClassTest2"… Re: Protected access modifier in Java Programming Software Development by pratz …, the program runs and if I declare the method as protected, then I do not have to create an object and… Re: protected mode switch Programming Software Development by mathematician … happen when you execute the jump following the switch into protected mode. That makes me wonder whether the org 0 at… protected default constructor Programming Software Development by shobhit saxena hello all, can somebody tell me what's the use of protected default constructor & protected copy constructor in c++. Re: protected mode programming guide Programming Software Development by SamY [QUOTE=sgk26p10p07;467693]Anyone to help with protected mode programming,like help me create a a data descriptor pointing to 0b800h when i try to write to RAM it rebbots[/QUOTE] yes that is because you havent set up protected mode properly, it resets on triple fault. give me upto tomorrow ill give you a good working protected mode... protected inheritance and reinterpret_cast Programming Software Development by chamika.deshan Hello Is this safe? In a API I am using have a protected inheritance of a class [CODE] class B { public : method(); } class C : protected Class B { }[/CODE] I need to access those pulbic methods in Class B So is this ok and safe? [CODE]C* x = new C(); B* prt = reinterpret_cast<B*>(x); prt->method(); [/CODE] Protected or Public? (Servlet specific) Programming Software Development by skiabox I have seen in many servlets that doPost and doGet are declared public or protected. What is the purpose of declaring a doPost or doGet as protected? Thank you. Re: protected default constructor Programming Software Development by Ancient Dragon read [URL="http://www.velocityreviews.com/forums/t285784-constructor-protected.html"]this thread[/URL] Re: protected members Programming Software Development by jonsca … type specified, the default is private. Therefore your public and protected members become private and your private members are not accessible… to your derived class. Your protected variable from A is then becoming private in B, which… Re: protected members Programming Software Development by Fbody … public inheritance?[/QUOTE] C++ has 3 levels of inheritance (private, protected, and public). Although they are partially-related, these do not… class' members the same as in the base class. Using protected or private inheritance is more restrictive and less like "… Re: protected mode programming guide Programming Software Development by NotNull … linear address The only difference when accessing physical addresses in protected mode from real-mode, is that in real mode a… address is represented by a segment:offset pair. whereas in protected mode a single 32-bit value can be used. Re: Protected or Public? (Servlet specific) Programming Software Development by stultuske it basically decides who can access the method. public -> everyone protected -> package level and subclasses protected mode programming guide Programming Software Development by sgk26p10p07 Anyone to help with protected mode programming,like help me create a a data descriptor pointing to 0b800h when i try to write to RAM it rebbots Protected Memory error, WebBrowser Control. Programming Software Development by Webbsta … i get this error: "Attempted to read or write protected memory. This is often an indication that other memory is… protected static members of a Class Programming Software Development by andreb … code compiles perfectly but does not link. [CODE]class GameEngine { protected: // Member Variables static GameEngine* m_pGameEngine; HINSTANCE m_hInstance; HWND m_hWindow; TCHAR… protected inheritance Programming Software Development by babbu hello every1. i want the text box of form1 to be accessible in form 2 without declaring it as public. ive declared it as protected. but how do i inherit it in form 2. protected members Programming Software Development by mmasny If we have three classes A,B,C declared as follows: [code=C++] class A{ protected: int x; }; class B : A{ //... }; class C : B{ //... }; [/code] does class C see its member x? It seems to me that it doesn't according to what the compiler says to me... Re: protected members Programming Software Development by jonsca Flip back (or forward) a chapter or check out [URL="http://www.learncpp.com/cpp-tutorial/115-inheritance-and-access-specifiers/"]this[/URL]. Essentially using one kind or another determines the access (public, private, or protected) of the data members in the derived class based on their respective access types in the parent class. Re: protected mode programming guide Programming Software Development by NotNull Do you want a protected mode programming guide? [url]http://prodebug.sourceforge.net/pmtut.html[/url]