C
C#2mo ago
vibing subs

I need help with my project

I need to create a password generator and checker and i need help to complete it. can you help me
14 Replies
SpReeD
SpReeD2mo ago
$help
MODiX
MODiX2mo ago
How to get the best help :catpog: Make a post in #help or one of the topic channels under Development. Avoid asking :catthinking: Can anybody help me? :catthinking: Has anyone used XYZ? :catthinking: Why doesn't my code work? C# is a big area! No one knows they can help unless you tell them about the small area you're trying to work in. Explain what you are doing, and potentially why for as much context as possible. Avoid screenshots where possible, share code directly in Discord. Type $code into chat to learn how to post code. See https://www.nohello.net and https://dontasktoask.com if you want common help chat room etiquette.
vibing subs
vibing subs2mo ago
$code
MODiX
MODiX2mo ago
To post C# code type the following: ```cs // code here ``` Get an example by typing $codegif in chat For longer snippets, use: https://paste.mod.gg/
vibing subs
vibing subs2mo ago
BlazeBin - ucqrnogmkcjc
A tool for sharing your source code with the world!
Keswiik
Keswiik2mo ago
You still haven't asked for help on anything specific. We're not gonna read through this, figure out what's broken, and write it for you.
vibing subs
vibing subs2mo ago
i need help in for my qwerty thing like it doesnt work the way it supposed to and i cant find a way to fix it.
Keswiik
Keswiik2mo ago
What is your qwerty thing? Show a relevant snippet of code and describe how it is supposed to function and how it is currently functioning.
vibing subs
vibing subs2mo ago
so i need to it check qwerty for ever 3 digits and if its consecutive it loses 5 points so for qwerty it loses 20 points and I have no clue how to do that I did the qwerty bit that checks for qwerty but i dont know how to make it check for the resy rest $codegif
Keswiik
Keswiik2mo ago
ok, now show the code where you're doing those checks
vibing subs
vibing subs2mo ago
wait ``` cs public static bool nihoa(string passwords) { string qwewty = "1234567890qwertyuiopasdfghjklzxcvbnm"; bool qwerty = true; for (int i = 0; i < passwords.Length - 2; i++) { for (int n = 0; n < qwewty.Length - 2; n++) { if (passwords.Substring(i, 3).ToLower() == qwewty.Substring(n, 3).ToLower()) { qwerty = false; break; } } } return qwerty; }
Keswiik
Keswiik2mo ago
Define "checks for qwerty" because I have no clue what that means
vibing subs
vibing subs2mo ago
it looks and see if qwerty is in the password or not like the qwerty Uk keyboards layout
Want results from more Discord servers?
Add your server
More Posts
✅ Windows Subsystem for Android Alternativeson my win 11 pc i use WSA to compile my .NET MAUI code (C#). it shows a **desktop window** with the Access Token Expiry date suggestionsWhat does you guys think, should be the expiry of an access token? I set the expiry of the refresh tInterface implementing generic parametersHello, is there way to achieve something like this? ```cs interface IFoo<T> : T { } ``` I want to spHow to encapsulate the code that has been processed using the Newtonsoft Json library?I used the Newtonsoft Json library to write data to a JSON file, but I don't know how to encapsulateis this a bad practice```var result = await HttpContext.AuthenticateAsync( CookieAuthenticationDefaults.Aut✅ Read `launchsettings.json` environment variable from a terminal script in RiderIt looks like the only way to get Rider to reload real environment variable values is to restart thewhat is the best way to access the Model object in a razor view, in a javascript?``var model = @Html.Raw(Json.Encode(Model));`` ^ is this a good wayI am trying to deskew an image using opencvsharp and I get 2 errors so fartoo long had to upload as a file.(WinUI 3) Visual State Manager throwing System.Runtime.InteropServices.COMExceptionI use the `VisualStateMangaer.GoToState()` method twice, with the same parameters. Strangely, it on✅ ERROR: The calling thread cannot access this object because a different thread owns it.Hey, I'm getting this error `The calling thread cannot access this object because a different thread