Catto
Catto
CC#
Created by Catto on 4/14/2025 in #help
[ADVANCED] How to reset supabase auth password from ASP.NET WEB API SERVER?
aaaaaaaa
66 replies
CC#
Created by Catto on 12/9/2022 in #help
Fatal error Uncaught Exception Unable to open database unable to open database file in Cxampp
<?php

function getUsers (){
$db = new SQLITE3('mydatabase.db');
<?php

function getUsers (){
$db = new SQLITE3('mydatabase.db');
13 replies
CC#
Created by Catto on 9/28/2022 in #help
Calculating square root of any number using a lower and upper bound that guesses towards solution.
how? ;-;
51 replies
CC#
Created by Catto on 9/27/2022 in #help
I input 40, and yet nothing is written, even tho its above 36?
int UserShiftInputInt;
while (!int.TryParse(Console.ReadLine(), out UserShiftInputInt) && UserShiftInputInt > 0 && UserShiftInputInt <= 36)
{
Console.WriteLine("Please only input whole positive numbers between 1 and 36." + Environment.NewLine);
};
int UserShiftInputInt;
while (!int.TryParse(Console.ReadLine(), out UserShiftInputInt) && UserShiftInputInt > 0 && UserShiftInputInt <= 36)
{
Console.WriteLine("Please only input whole positive numbers between 1 and 36." + Environment.NewLine);
};
17 replies