Re: How to speed up my (WordPress) website? Digital Media Digital Marketing by Dani > In fact, my site is super fast (92% on mobile and 99% on desktop performance according … to ask: If you're saying your site is already super fast, why are you also saying you're struggling to… Re: How to speed up my (WordPress) website? Digital Media Digital Marketing by asadalig Website speed issues can be super frustrating. What really helped me was compressing images (I switched … Re: Are Cross-Platform Apps Slower Than Native? Or Is That Just a Myth in 2025? Hardware and Software Cloud-based Apps by asadalig In 2025, cross-platform apps aren't inherently slower than native ones—it really depends on how they're built. Modern frameworks like Flutter, React Native, and Kotlin Multiplatform have closed the performance gap significantly. If developers optimize properly, most users won’t notice a difference. However, for extremely high-performance needs like… Are Cross-Platform Apps Slower Than Native? Or Is That Just a Myth in 2025? Hardware and Software Cloud-based Apps by Himadri_3 …, so naturally they could tap into every feature and run super efficiently. But now? **Cross-platform tools** like **Flutter and React… Re: Hanayama Cast Puzzles - Mind bracing riddles Community Center Geeks' Lounge by Emma_Rose … isn’t a walk in the park. There’s something super satisfying about taking apart a well-crafted metal puzzle and… Re: which language do i start leaning in 2025 Programming Software Development by retseaz77 … and trending languages to learn include: Spanish – widely spoken and super useful for travel and business Mandarin Chinese – huge global economy… Re: Which is the best email marketing tool you ever used? Digital Media Digital Marketing by yesumalla … entire Mailchimp-to-Klaviyo trip), the person noticed me. why? Super beginner friendly interface Clean and professional email template Automation that… Re: Key Tools and Tips for Efficient Web Development Programming Web Development by simplixi … your code changes, like saving different versions of a document. Super useful if you ever need to go back to an… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Actually, I take it back. I assume that, using Chrome on a fast Internet connection, and a super high screen resolution, none of the images are actually being lazy loaded. Re: Which is the best email marketing tool you ever used? Digital Media Digital Marketing by ashleydent4u … I had to pick one, ActiveCampaign stands out! It’s super powerful with automation, segmentation, and AI-driven personalization, making it… Re: Buggy career talk :-P Programming by Salem … on the bus, and the other processor was in that super critical window for some few uS at exactly the wrong… Re: Does Tools give 100% correct answers? Digital Media Digital Marketing Search Engine Strategies by ashleydent4u Tools like Semrush and Ahrefs are super helpful for getting insights, spotting trends, and analyzing competitors, but … Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by rproffitt UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance. Re: Best extensions for boosting productivity on a school Chromebook Hardware and Software Hardware by Dani Thank you for introducing me to an app I’d never heard of. And I thought I knew about every Google product there was! Re: Super! Programming Software Development by Ezzaral Super can also be used to call a parent class method that you overriding to extend the original functionality. i.e.[code=java] public void someMethod(){ // go ahead and do what parent class has defined super.someMethod(); // now do a few other things that this subclass needs... }[/code] super wild card doubt Programming Software Development by rahul.ch …println(l1); } public static void met(List<? super Animal> l2) { l2.add(new Animal()); …println(l1); } public static void met(List<? super Animal> l2) { l2.add(new Animal());….println(l1); } public static void met(List<? super Dog> l2) { l2.add(new Animal()); … super sensitive tiny (preferably wireless) external microphone Community Center Geeks' Lounge by sunandoghosh super sensitive tiny (preferably wireless) external microphone Respected Friends This is … (AND SHIPPED TO INDIA) ; an external microphone which is a. super sensitive (so that the microphone is able to catch voices… Re: super() Programming Software Development by Gribouillis …): print(arg) class C(B): def __init___(self, arg): super(C, self).__init__(arg) c = C('abc') # abc…Circle""" def __init__(self, r, h): super(Cone, self).__init__(r) # Python27 gives TypeError: must…right. It was probably not called. To me, super is useless. It's a purist's detail … super() Digital Media UI / UX Design by ceyesuma My question is concerning Super. If someone is farmiliar with Super . Is it possible to get someone to look at the … started on how I would approach the concept of using Super. Because the second two blocks of code are almost identical… Re: super() Digital Media UI / UX Design by ceyesuma … go to understand how I could use techniques to use super(); I just know that I have 2 comboboxs now and… write a class that will be able to use it (super()). I haven't had enough time to work with the….sizing and position 4.add listeners that call routines from super and the child that allow it to use standard data… super() Programming Software Development by HiHe …print(arg) class C(B): def __init___(self, arg): super(C, self).__init__(arg) c = C('abc') # abc… [/code]Here super() gives a TypeError: must be type, not classobj […quot;"" def __init__(self, r, h): super(Cone, self).__init__(r) # Python27 gives TypeError: must… Re: super() Programming Software Development by vegaseat Those multiple underscores are somewhat of a devil! :) As experts tonyjv and Griboullis pointed out, using [COLOR="Green"]Circle.__init__(self, r)[/COLOR] is much clearer than using super(). The only advantage of super() is with Python3, where you can use it without hard-coding the class name. Re: Super! Programming Software Development by darkagn Hi ceyesuma, The super method is used to call a parent class's constructor … = 2; } } public class Triangle extends Shape { double area; public Triangle() { super(); // this means height = 1 and width = 2 area = height * width… the child class of Shape and it's constructor calls super [U]as its first instruction[/U] and then extends it… Re: Super! Programming Software Development by ceyesuma [QUOTE=darkagn;441609]Hi ceyesuma, The super method is used to call a parent class's… 2; } } public class Triangle extends Shape { double area; public Triangle() { super(); // this means height = 1 and width = 2 area = height * width…the child class of Shape and it's constructor calls super [U]as its first instruction[/U] and then extends… Re: Super! Programming Software Development by no1zson So any child class of Super is going to begin with a height of 1 and width of 2. You could then add things such as area, volume and other attributes from that base. Could you also change one of the original attributes? Say if I wanted to call Super, but make the newest object have a height of 2. Re: Super! Programming Software Development by Ezzaral [quote=no1zson;441751]So any child class of Super is going to begin with a height of 1 and … of the original attributes? Say if I wanted to call Super, but make the newest object have a height of 2… Super! Programming Software Development by ceyesuma Can someone show me a simple program that will display how to extend and use super? Re: super wild card doubt Programming Software Development by rahul.ch … code and use it to call a method having <? super Animal>, we can add anything right? Since there is…); System.out.println(l1); } public static void met(List<? super Animal> l2) { l2.add(new Animal()); l2.add(new… Re: super wild card doubt Programming Software Development by dimasalang … anything because the type that your list contains is a super class List<Animal>. All your classes that extends… Re: super wild card doubt Programming Software Development by JamesCherrill When you have something like ` void met(List<? super Animal> l2)` you are saying that the parameter will …