Jump to content

Red Dragon

Member
  • Posts

    47
  • Joined

  • Last visited

Everything posted by Red Dragon

  1. @ALwin yea basically side note is that french?
  2. Depending on how big the chip is it he could end up needing some ducktape and some spray pain (i am joking please don't head my advice) But to @Knaj thats a bummer but i think that in general damage you caused to it isnt covered in the warranty (if it has one). You might be able to return it but personaly i would just live with it... Side note i feel like ive seen an infomercial about something that fixes chips but idk
  3. @madknight3 Hey i Finally got back on the forum after getting slammed by all my class work! My project was about the time it takes to brute force things depending on there length characters ect. so the language didnt matter. however even though this project is done i think im going to try using the program you made to see how it compares against the one i ended up using. Ill get back to you once ive got the results any way thank you for the help YOUR A COOL DUDE ha ha ha
  4. well... i basically just got frustrated and ditched my original approach because this project was time sensitive because it was for school . side note i don't get why people think recursion is so weird (not specifically you just if found the general consensus is that its really funky) its just a function things that calls its self... Any way i do thank you for helping along the way ☻☺☻
  5. in my opinion this is spending too much on the cpu and not enough on the graphics card. i say this because (amusing he is gaming) all he needs is a (current) quadcore and would greatly beneficent from the extra money in the graphics card
  6. Ahh silly me thank you very much
  7. alright ive looked into it and figured i should just use c++ i did find a program very similar to this on the internet and tried to fix it up myself i ended up at this #include "stdafx.h"#include <iostream>#include <string>using namespace std;char chars[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',};// Recursive function, keeps clocking characters// until length is reachedstring password;int num = 0;void Generate(unsigned int length, string s){ if (length == 0) // when length has been reached { num = num + 1; cout << s << "\n"; if (s == password){ cout << "Crack Complet. It took" << num << "tries to complet"; exit(0); } else{ return; } } for (unsigned int i = 0; i < 26; i++) // iterate through alphabet { // Create new string with next character // Call generate again until string has reached it's length string appended = s + chars[i]; Generate(length - 1, appended); }}void Crack(){ while (1) { // Keep growing till I get it right static unsigned int stringlength = 1; Generate(stringlength, ""); stringlength++; }}int main(){ cout << "yo its you freindly nabrohood pasta chef gimmie ur password" << endl; cin >> password; cout << "Attempting to crack..."; Crack(); return 0;} but what for some reason it does not include capital letters and numbers when cycling through... do you know why. thank you for helping @Nineshadow
  8. @madknight3 ok so somethign like this should work import itertoolslist1 = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z','1', '2', '3', '4', '5', '6', '7', '8', '9', '0']password = raw_input('Gimmie Ur Password Boi')while true variablename1 = itertools.product(list , [4]) if password = variablename1: print it worked do i have to convert the user input into a tuple or will it just work automagicly thank you for all your help so far
  9. Hey thank you for the help! Do i assign the product of this to a variable for a while loop or does this replace the while loop entirely. it it replaces the whole thing what am i going to have to use compare the output against the variable for the password. I read the documentation on itertools.product but im still unsure on how to use its output. Thank you in advanced
  10. Hello guys ill just cut to the chace. I'm doing a python brute force program for a school project the goal of it is you enter a sting of letters and numbers then it goes though every combination of letters and number untill it gets it. im pretty sure im going to need a list im just not sure how to cycle though the list and then combine different parts of the list to form a string to compare against the password that would be stored in a variable. here is what i have so far even though it is quite barebones and dosent really accomplish anything import timelistoflist = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z','1', '2', '3', '4', '5', '6', '7', '8', '9', '0']guess = 'a'def Mememaker: password = input('Gimmie Ur Password Boi') while guess =! password: (do note that i will clean up the names after i figure this whole thing out lol it just makes me happy when i write my variables ) Any help will be greatly appreciated thank you in advanced
  11. im pretty sure that you can pluf the router in from your other router. i might not be right and i agree it really sucks
  12. Nothing? i don't think there is a single perfect phone like this. your going to have to give up a few items on that check list to be completely honest. the moto x style is coming out soon but it dosent have wireless charging...
  13. Hey guys im trying to get a website up on google app engine for a class im doing and whenever i do it loads up a blank page. It says module has no attribute called environment but i looked it up and all of the code for jinja2 has it so i don't really know what do do. thank you in advance!
  14. Hey guys I've been playing league and i wanted to try all the game modes. So when i got to twisted treeline i stomped everyone so i played more games. Ive been noticing that they are all super bad. LIKE REALLY BAD. They don't attack anything but the towers witch they solo with no minions and die a lot. They never get the alters or talk. They instantly leave the game after its over. So i was wondering is the twisted treeline full of super noobs OR is it full of bots people use to level up accounts to 30 and SELL THEM FOR MONEY! Anyway i was just wondering if any of you have played it and noticed the same thing or if you just thing the people who play twisted treeline are just really bad...
  15. You should specify more how do we join, is there a level requirement etc.
  16. That was more or less what i was looking for much appreciated
  17. Hey guys i was wondering what a formula (like for a line) would be if every time x went up one y doubled. Example 1,1 2,2 3,4 4,8 5,16 6,32 etc. it would also be helpful if you explained how you did it so i could know for the future Thanks in advanced
  18. The only thing is that sometime v-Sync can cause input lag but if you don't mind that you should be fine
  19. note the last word in the definition ENCOURAGEMENT by saying yea you would be encouraging it therefore approving it #syllogism
  20. oh and by the way it is proper use yay1 yā/ exclamationinformal expressing triumph, approval, or encouragement. "Yay! Great, Julie!"
  21. PEW PEW PEW PEW PEWWWWWWWWWWWWWWWWWWWWWW
  22. This is a high quality post
  23. maybe in your case but before i was old enough to have a phone i still wanted to get apps and play games so for me the Ipod touch mad a lot of sense
×