search
  • Sign In
  • Sign Up
Password reset successful

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

P粉983021177

P粉983021177

Follow
student

Follow 0
fans 0
integral 0
"unrecognized import path" with go get

I'm trying to install a web.go, but running go get github.com/hoisie/web returns package bufio: unrecognized import path "bufio" package bytes: unrecognized import path "bytes" pa

2026-01-02 17:22:05Ask
Python
Oracle: Combine multiple results in a subquery into a single comma-separated value [duplicate]

I'm trying to convert a single-columned subquery into a command-separated VARCHAR-typed list of values. This is identical to this question, but for Oracle ra

2025-12-30 15:22:08Ask
MySQL
Why I'm getting 500 error when using file_get_contents(), but works in a browser?

$html = file_get_contents("https://www.[URL].com"); echo $html; produces this in the error logs: PHP Warning: file_get_contents(https://www.[URL].com) [function.file-get-contents

2025-12-19 19:22:32Ask
PHP
Search for "whole word match" in MySQL

I would like to write an SQL query that searches for a keyword in a text field, but only if it is a "whole word match" (e.g. when I search for "rid", it should not match "arid

2025-11-28 08:01:35Ask
MySQL
Image/content is not contained within a div

I'm trying to include an image inside the first div of the page, but for some reason it's outside the page. All resources are located in flexboxes. When I put text into that div instead of an image, it works perfectly fine. I've circled the image and div I'm talking about in red. This code snippet won't show you what I'm talking about because it's not the complete code. .landing{height:100vh;display:flex;align-items:center;justify-content:cent

2024-04-03 10:15:05Ask
HTML
I encountered an undefined route error when running the "make:controller controller_name --resource" command.

web.php<?phpuseIlluminate\Support\Facades\Route;useApp\Http\Controllers\HomeController;useApp\Http\Controllers\PostsController;useApp\Http\Controllers\AboutController;useApp\Http\Controllers\Contac

2024-04-02 19:47:45Ask
PHP
Possible problem: Unexpected results when using 'background-color' with 'DT'

As of version v0.26, the background-color of the DT package used in Rshiny has changed. Is this the same problem for you and me? Is it a bug that changing the background color no longer works? ! library(shiny)testUI<-function(id){tagList(DT::dataTableOutput(NS(id,"mytable")),verbatimTextOutput(NS(id,&q

2024-03-30 09:30:22Ask
CSS3
Change text color while scrolling

I'm making a portfolio website and I want my fixed text to change its color in some parts, how can I do that? I can't post my code because it's too big and long, but it would be great if you could give a code example, this is what it looks like (https://olaolu.dev), you can see how the buttons and names are in Change color when scrolling:) P. Please use js to do it, thank you! I tried to find information but found nothing :(<!doctypehtml><html><head><li

2024-03-28 22:55:23Ask
CSS3
Vuetify v-menu dropdown is displayed in incorrect position when using css scale property

As shown in the attached image, the v menu position is in the wrong place when using the scale CSS property. Corresponding codepen: https://codepen.io/satishvarada/pen/YzjGNVZ Similar problems will occur when using the v-autocomplete component. newVue({el:'#app',vuetify:newVuetify(),data:()=>({items:[{title:'ClickMe'},{title:'Cl

2024-03-19 18:55:15Ask
HTML
Laravel 9.x: Redirect user to view success message after registration

I'm trying to return a view with a success message after registering a user, which contains a link to the login page, but the session message is not passed along with the view. This is my registered() method protectedfunctionregistered(Request$request,$user){returnview('frontend.pages.register-success')->with('message','Yourregistrat

2023-11-12 22:55:21Ask
PHP