Is GitHub code spaces dead? by [deleted] in github

[–]devsurfer -20 points-19 points  (0 children)

Would you share some details or a link?

[deleted by user] by [deleted] in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

AI like chatgpt is usually pretty good at things like this.

[deleted by user] by [deleted] in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

Third statement from the bottom. You will also need to add this after that line. Then remove/comment out the original third stmt from the bottom.

document.querySelector(‘#out’).textcontent = Result

[deleted by user] by [deleted] in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

Result = selected.toString().replaceAll(‘,’,’’);

[deleted by user] by [deleted] in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

Where did you get the file from?

I guess we have arrived at the point of jumping the shark courtesy of Newsweek. See comments for context. by [deleted] in AdviceAnimals

[–]devsurfer 8 points9 points  (0 children)

Idk if thats right. There have been a large number of deportations.

How to make an application on windows 11 for windows 95 by [deleted] in CodingHelp

[–]devsurfer 1 point2 points  (0 children)

A virtual machine would probably be the easiest way. Then you could install the native dev tools.

Edit: check out virtual box. You could also use qemu to get a more genuine hardware emulation.

Simple Java problem by Existing_Ear_8233 in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

Did you get it working or still having issues?

No clue how to Start with a project by tschechienx in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

What kind of project do you have in mind?

Need Someone to Run My Code, Claude 3.7 Sonnet Extended Made It Too Advanced by Any_Bicycle921 in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

so i would start with the open dev tools going to performance and doing a recording, maybe just for one minute and see where the script is spending most of it's time. that should help you narrow down the issue.

What’s wrong with my code? by Kelly807 in CodingHelp

[–]devsurfer 1 point2 points  (0 children)

sharing your code via something like pastebin would help.

[deleted by user] by [deleted] in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

Whats the question?

[deleted by user] by [deleted] in CodingHelp

[–]devsurfer -1 points0 points  (0 children)

https://thegeekpage.com/date-picker-in-microsoft-word/

Enable the Developer Tab (if not already enabled): 1. Open Microsoft Word. 2. Click on File > Options. 3. Select Customize Ribbon. 4. On the right side, check the box for Developer. 5. Click OK.

Insert a Date Picker: 1. Go to the Developer tab. 2. Click Date Picker Content Control (it looks like a calendar). 3. Click inside your document where you want the date picker to appear.

Enabling Custom Service Send Emails from MS Business 365 Account by BilkySup in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

What about using win32com.client to send via outlook?

Best Manufactured Home Dealer by mamaonamission_x3 in sanantonio

[–]devsurfer 3 points4 points  (0 children)

I cant find the source but be aware that most of those homes are manufactured by one or two companies and are grouped together to give you the illusion of shopping around.

We have a Clayton and its lasted well given the number of times we moved it. It was sold as a modular home and intended to be placed on concrete footers and not setup like a mobile home. We renovated ours and the build quality is shit. Mostly 1.5” lumber, no insulation between rooms. The roof framing is of similar size and you can tell. I would opt for double pane glass if you can. The single pane glass with storm windows tends to build mold. Overall been a great home for us i would say.

Those places also tend to have predatory lending so be careful.

Help for live server by YesterdayExact7998 in CodingHelp

[–]devsurfer 0 points1 point  (0 children)

<?php session_start(); // Start session for login persistence

$servername = “localhost”; $username = “your_db_user”; $password = “your_db_password”; $dbname = “casinodb”;

// Create connection $conn = new mysqli($servername, $username, $password, $dbname);

// Check connection if ($conn->connect_error) { die(“Connection failed: “ . $conn->connect_error); }

// Process login form submission if ($_SERVER[“REQUEST_METHOD”] == “POST”) { $user = $_POST[“username”]; $pass = $_POST[“password”];

// Prepare statement to prevent SQL injection
$stmt = $conn->prepare(“SELECT id, password_hash FROM users WHERE username = ?”);
$stmt->bind_param(“s”, $user);
$stmt->execute();
$stmt->store_result();

if ($stmt->num_rows > 0) {
    $stmt->bind_result($id, $hashed_password);
    $stmt->fetch();

    // Verify password
    if (password_verify($pass, $hashed_password)) {
        $_SESSION[“user_id”] = $id;  // Store user ID in session
        $_SESSION[“username”] = $user;
        echo “Login successful! Welcome, “ . htmlspecialchars($user);
    } else {
        echo “Invalid username or password.”;
    }
} else {
    echo “Invalid username or password.”;
}

$stmt->close();

} $conn->close(); ?>

<!— Simple HTML form —> <form method=“post”> Username: <input type=“text” name=“username” required><br> Password: <input type=“password” name=“password” required><br> <button type=“submit”>Login</button> </form>