Yes, ChatGPT Got Dumb & Lazy, but 4.5 Could Be a Gamechanger Community Center by Johannes C. … so far, that some users are coming up with '[Karen brute-force prompts](https://www.reddit.com/r/ChatGPT/comments/18ia1vj… Re: Yes, ChatGPT Got Dumb & Lazy, but 4.5 Could Be a Gamechanger Community Center by carriejo810 I did not quite feel it personally thought. But Bard is catching up for sure. Re: Collision Detection algorithm between two arbitrarily shaped sprites Programming Game Development by MattEvans Brute force isn't too bad.. you don't have to … Re: URGENT :Help In C++ program Programming Software Development by donaldw brute force. Once you have your list of prime numbers: For each prime number less than the user defined number, add it to each of the other prime numbers in your list. If the result of that comparison is equal to the user defined number, keep that pair. Seems pretty simple, is that what you were looking for? Re: Creating a rectangle C++ Programming Software Development by richieking brute force here....[CODE]#include <iostream> using namespace std; … Re: weigthed interval scheduling with fixed number of intervals Programming Computer Science by katisss Brute force solution is unlikely to be the assignment for an algorithm class. besides you can only choose intervals that touch so you have to strat where you left th enight before. Re: algortihm optmization Programming Software Development by I_m_rude brute force... decptikon gives the best. ;) he is solution of my every problem of programming.. ;) thanks Re: My Site was hacked by C99 shell Programming Web Development by naphets > Brute Force Detection (BFD). "but really I don't know what is the best configuration for it" This is why God Invented [LogLogic](http://www.tibco.com/products/event-processing/default.jsp) Now TIBCO Re: Styling Span with JS not working ? Programming Web Development by rtrethewey Brute force method: var one = document.getElementById("paper"); one.innerHTML ="<span id='lets'>Lets</span> go to the..."; one.className="sen"; document.getElementById('lets').style.color = 'blue'; Brute-forcing a String.hashCode() value Programming Software Development by Delocaz I'm looking for how to brute-force the result of something like [ICODE]"Hi".… crap to even post. I tried to find a MD5 brute-force cracker on Google, and modify it to use [ICODE… Re: Brute-forcing a String.hashCode() value Programming Software Development by Delocaz Umm, the goal for this is like an MD5 brute-force cracker, but with String.hashCode(): Re: Brute-forcing a String.hashCode() value Programming Software Development by Delocaz ??? [url]http://mojang.com/2011/02/23/a-short-demystification-of-the-map-seed/[/url] I'm just trying to convert the numerical seed for the Minecraft terrain generator to a string. Using brute-force, as that's the only way i can think of. Brute Force Search Programming Software Development by bops …, for a University assignment I am attempting to use a brute force search to generate all possible combinations of a list… part of what I must do. I realise that a Brute Force Search would be extremely computationally expensive but it is… brute-force search help Programming Software Development by mimis I need to learn brute-force search because i think that it will help me to solve a problem on graphs. Do you know any good tutorial for brute-force search? Re: brute-force search help Programming Software Development by Sky Diploma You should try googling it out [URL="http://lmgtfy.com/?q=brute+force+search"]Clicky[/URL] Though its very easy. Re: brute-force search help Programming Software Development by Narue … probably not a tutorial because there's nothing to it. Brute force searching is the dumbest, easiest (and often most inefficient… Re: brute-force search help Programming Software Development by skatamatic here's a brute force template [code=cplusplus] for (int i = 0; i < MAX_NUMBER; i++) { if (Condition[i] == Desirable) DoFunction(); else DoOtherFunction(); } [/code] brute force Boolean satisfyability program. Programming Software Development by lvhvaraprasad hi i need code for brute force Boolean satisfyability program. plz help me i need it asap thank u Re: brute force Boolean satisfyability program. Programming Software Development by jephthah [QUOTE=lvhvaraprasad;1215901]hi i need code for brute force Boolean satisfyability program. plz help me i need it asap thank u[/QUOTE] hahahahahahahah lol thanks, man. i needed that. Brute force decryption Programming Software Development by gowans07 … can go about determining the type of encryption and then brute forcing it? The company that developed the encryption package no… Brute force decryption Programming Software Development by gowans07 … can go about determining the type of encryption and then brute forcing it? The company that developed the encryption package no… Brute force check for largest palindromic product of three number integers Programming Software Development by TrustyTony Here is slow brute force way to find the largest palindromic product of three digit integers. You could do loop and break out of it if you go under the smaller number (the second one) of best solution found so far to be more efficient etc. Brute force Programming Software Development by np complete … you if its correct. Now I want to write a brute forcer. The password is a 4 blocks 4 digit password… Brute force Programming Software Development by Oremuss Hi guys , I have to do simple brute force program for my homework and I dont know what … Re: better alternative to brute force xand binary operator Programming Software Development by TrustyTony Your formula in text gives me strange maximum: negative value. Brute force is very fast, I do not know why you … Need help in studying the Working of Brute Force Attack Programming Computer Science by Raaz_mystery … Forum. I want to study more about Brute Force Attack because it is in my Subject… to create something to minimize the risk of Brute Force. I have the Following Queries: Q.…1. How much time a Brute Force Attack will take to guess a password… If a single processor will only execute the Brute Force Attack then How much times its Speed … Re: Need help in studying the Working of Brute Force Attack Programming Computer Science by WaltP … Forum. I want to study more about Brute Force Attack because it is in my Subject…want to create something to minimize the risk of Brute Force. I have the Following Queries: Q.…1. How much time a Brute Force Attack will take to guess a password… a single processor will only execute the Brute Force Attack then How much times its Speed… Help needed with Brute force to find the best path in a Graph Programming Software Development by Zaad … find a solution to it by making use of the brute force method and compare the efficiency of the algorithm. I… got only the hamiltonian circuit problem regarding the graphs with brute force. Can some one at least provide me with the… pseudo code of the Brute Force implementation as it is no where to be found… Java Recursion - Brute Force Sim Programming Software Development by poopuh … recently completed a program for my boss which simulates a brute force hacker in that it hacks a password by trying… Tools | Templates * and open the template in the editor. */ package brute.force.password; import java.util.Arrays; public class BruteForcePassword { public… md5 Brute Forcing Programming Software Development by musturd … have come up with for the beginnings of a md5 brute forcing program: [CODE]#For testing purposes only passwords that have…