Skip to main content
Filter by
Sorted by
Tagged with
7 votes
1 answer
96 views

Suppose I have a Rust crate mycrate with lib.rs: mod internal { pub struct X(); pub fn x() -> X { X() } } pub use internal::x; This works fine on Rust 2024 and any consumer ...
user31734535's user avatar
1 vote
1 answer
501 views

Running this code below, the sizeof base class and derived class are both 32. #include "iostream" #include "string" using namespace std; class base{ //public: int ...
PkDrew's user avatar
  • 2,281
-1 votes
3 answers
59 views

I have written a process where a form can be created a multiple of times - each copy relating to a particular value in a variable at the time of creation. I use :- Dim FormA As New FormX FormA.Show() ...
Andy Whorton's user avatar
0 votes
0 answers
78 views

I wonder, if class's members are public then they behave same as struct. But there should be some difference in between them, right. When should we use public class vs struct?
Aman Asati's user avatar
0 votes
0 answers
27 views

Why can't I change Year column from number to Date format in Tableau? Change data type from number to date in Tableau public Tableau Public Data type from number to Date not working Tableau public is ...
Sharmin K's user avatar
0 votes
1 answer
309 views

I know that perhaps a dedicated server would be better for this, however I'm not familiar with server only frameworks. But I'm very familiar with SvelteKit api routes. I decided to create a route ...
App Scripter's user avatar
-2 votes
2 answers
251 views

I'm encountering issues while trying to use internal or private types in Swift protocol conformance. Here's a simplified version of my code: internal protocol RATIONAL { associatedtype rational ...
Adrian's user avatar
  • 143
-1 votes
1 answer
109 views

I have a wordpress website in which I want to use a Laravel app in a subfolder Like this: https://website.com/* -> wordpress https://website.com/app/ -> laravel But I only managed to run it ...
Thiago's user avatar
  • 1
0 votes
1 answer
49 views

Good friends, I have a problem when registering a file in S3 from Laravel, the point is that after putting the credentials in the .env when clicking on register it does not give me any error message ...
Gustavo's user avatar
1 vote
1 answer
125 views

As mentioned above, styles, font and js don't load on laravel deployed on shared hosting. How does it look like on my localhost: And that's same code deployed on hosting: Where I take it from: , And ...
Marcin's user avatar
  • 11
0 votes
1 answer
285 views

Currently I have this code, which works fine: #pragma once #include <expected> #include <wayland-server.h> class Display { private: struct wl_display *ptr; public: enum class ...
Ogromny's user avatar
  • 13
0 votes
0 answers
66 views

How can I separate git commits / git history from personal (private) and public. I have several computers and I often switch between them. In order to have the latest code available I very often do ...
Pacmyc's user avatar
  • 51
0 votes
2 answers
388 views

We need the Steps to have the Task resolved regarding: How to publish SharePoint calendar on a public website. We were only able to enable the anonymous access from the calendar to access and not sure ...
Mithun gk's user avatar
0 votes
0 answers
94 views

I'm building a music streaming platform but trying to install the script it was like. I saw this error text that says Make sure public/.htaccess file has been uploaded properly to your server and is ...
Naijamomocomng's user avatar
0 votes
1 answer
50 views

What recently happened to Azure pipelines in public projects that are not accessible to the public without login anymore? I believe it was fine a few weeks ago... I was checking all configurations/...
Jirka's user avatar
  • 1,146
0 votes
1 answer
485 views

Public service seems to be broken Error: Service "BaseService" not found: even though it exists in the app's container, the container inside "classes\classBundle\Controller\...
Nicholas Robertson's user avatar
-3 votes
2 answers
1k views

I have a Laravel project which was moved from custom VPS into shared hosting. Rewrite all from root to the public was easy part. But when i go to the domain.com/public page works... So how i rewrite ...
Gavo's user avatar
  • 25
0 votes
1 answer
57 views

Sub ExportPDFs() Dim rs As DAO.Recordset Dim folder As String, path As String Dim adoStream As Object 'Late bound ADODB.Stream Dim failedFiles As New Collection 'list of failed files ...
Alireza Daneshmayeh's user avatar
-1 votes
1 answer
697 views

How 'bout taking those pdf-formatted package files from the table in Access and movin' 'em to a folder If ya can, exteract the (product name) 'n the (pdf) as well That'd be awesome; lemme know if ...
Alireza Daneshmayeh's user avatar
-2 votes
1 answer
220 views

I deployed a code on an AWS ec2 instance. I also added security groups to allow public access to the instance I made sure that the firewall is disabled The IP tables also seem to be in order I'm ...
Saurav Sood's user avatar
1 vote
0 answers
190 views

I want to make sure that all of my public variables and methods in my code are documented. I have tried to use eslint-plugin-jsdoc and have activated all of the recommended rules. Additionally, I ...
lessandra's user avatar
0 votes
1 answer
133 views

I am wondering if there is a mechanism in python to fetch the "public" path to a class object in python (PEP8, __all__, "explicit reexport", ...). To provide a minimal example, ...
ddluke's user avatar
  • 51
1 vote
2 answers
2k views

Everything works great translate everything in nextjs13.4, tailwindcss and i18n, I'm not using typescript, but my image doesn't load anywhere despite being in the public folder. Error that I get in ...
GuniX's user avatar
  • 53
0 votes
3 answers
8k views

The above error message is triggered, when running in PHP 8.1. Haven't been able to spot anything obvious, as to where the code below needs to be changed to eliminate this error message. public ...
user21167050's user avatar
5 votes
1 answer
88 views

Taking the standard library net/http for example, the DefaultClient is defined as: var DefaultClient = &Client{} However, the DefaultServeMux is defined as: var DefaultServeMux = &...
iBug's user avatar
  • 37.6k

1
2 3 4 5
33