search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉658954914

P粉658954914

Follow
student

Follow 0
fans 0
integral 0
How do I use PHP namespaces with autoload?

I get this error when I try to use autoload and namespaces: Fatal error: Class 'Class1' not found in /usr/local/www/apache22/data/public/php5.3/test.php on line 10 Can anyone t

2026-01-17 15:43:09Ask
PHP
Golang Method Override

I have the following: type Base struct { } func(base *Base) Get() string { return "base" } func(base *Base) GetName() string { return base.Get() } I want to define a ne

2026-01-16 12:43:07Ask
Python
How to make CSS3 rounded corners hide overflow in Chrome/Opera

I need round corners on a parent div to mask content from its childen. overflow: hidden works in simple situations, but breaks in webkit based browsers and Opera when the parent is p

2026-01-03 17:01:10Ask
CSS
Adding minutes to date time in PHP

I'm really stuck with adding X minutes to a datetime, after doing lots of google'ing and PHP manual reading, I don't seem to be getting anywhere. The date time format I have is: 2

2025-12-31 13:43:10Ask
PHP
Default constructor vs. inline field initialization

What's the difference between a default constructor and just initializing an object's fields directly? What reasons are there to prefer one of the following examples over the other?

2025-12-19 16:42:11Ask
Java
Remove CSS class from element with JavaScript (no jQuery) [duplicate]

Could anyone let me know how to remove a class on an element using JavaScript only? Please do not give me an answer with jQuery as I can't use it, and I don't

2025-12-15 07:01:20Ask
JavaScript
Type List vs type ArrayList in Java [duplicate]

(1) List myList = new ArrayList(); (2) ArrayList myList = new ArrayList(); I understand that with (1), implementations of the List interface can be swapped

2025-12-11 14:43:21Ask
Java
Convert columns into rows with Pandas

So my dataset has some information by location for n dates. The problem is each date is actually a different column header. For example the CSV looks like location name Jan-201

2025-12-11 07:22:17Ask
Python
Vue application. How to skip authentication to show certain components?

I'm using vue and laravel application. I need to display a component without the user having to log in. Currently, to view components (with security instructions) users must be logged in. But now the component is required externally, which means no login is required to view that particular page. How to achieve this in vuelaravel application?

2024-03-27 13:12:42Ask
Vue.js
Vuetify autocomplete display

I'm new to vue3. I'm trying to use vuetify autocomplete in my project. I consulted the official documentation of vuetify. Autocomplete displays [object object]. Thanks in advance. <script>import{Form,Field}from'vee-validate';exportdefault{components:{Form,Field,},setup(props){},data(){return{add:{id:1

2023-12-25 11:00:26Ask
Vue.js