Mobinga's Posts
Nairaland Forum › Mobinga's Profile › Mobinga's Posts
1 2 3 4 5 6 7 8 ... 25 26 27 28 29 30 31 32 33 (of 257 pages)
v3:https://static.bbmp3.com/smilies/agreement6.gif https://static.bbmp3.com/smilies/agreement6.gif https://static.bbmp3.com/smilies/agreement6.gif musKeeto:https://img831.imageshack.us/img831/9176/kanyehappy.png Nice. But it's a core i7 of 1.60ghz?? Exactly the same spec with mine, except that I use a 5470, and core i3 @ 2.7ghz. So far I've been able to play all releases at decent framerates. It even ran Crysis 2 at 20 FPS. ![]() I think mine is slightly overclocked. I've never had any problem with it, its HP, and switchable graphics. |
If you're logged in. Just click here http://www.facebook.com/settings |
Bawss1:LMFAOOOOOOOOOOOOO ![]() I can remember this!!!!! LMAO!! |
skeed19:https://img40.imageshack.us/img40/1098/snoopfacepalm.png Olodo. |
I am not interested in BF3 and MW3. GTA V trailer drops 2.11.11 LA Noire drops for PC on 8.11.11 Arkham City drops for PC on 18.11.11 These games are better than those rubbish FPS, in terms of gameplay, fun, graphics, development. If my Internet was ok, I'll torrent MW3. |
https://img202.imageshack.us/img202/963/far87o.png arrgghhh unnecessary arguments have killed this thread before it even started. https://img826.imageshack.us/img826/9798/bronthatsnasty.png |
v3:What version?! My nigga! https://img9.imageshack.us/img9/6469/obamadatazz.png |
musKeeto:This, is contradicting? You might have said "confusing", rather. Challenge :: Write the most brain-twisting, complex, scrambled, bla bla code you can. Rules :: After the code, write what the code does, it should be a simple code that most will understand. The fact that he understood the question properly just exhibits his superiority over you in terms of linguistics. |
Sub5:Ignorant Nigerians everywhere. |
musKeeto:Yep, plus his ability to comprehend complex sentences is superior to yours. Although that's not what I wrote. Challenge :: Write the most brain-twisting, complex, scrambled, bla bla code you can. Rules :: After the code, write what the code does, it should be a simple code that most will understand. |
Jesus. Was it that fucking hard to search google http://www.google.com.ng/search?gcx=c&sourceid=chrome&ie=UTF-8&q=Difference+Between+Gprs+And+Edge And how the Bleep did this weak thread make the front page? @OP No offence |
*dhtml:Yup. Google likes too much JS. They don't wan't any back-end pressure at all. They just dump everything to your browser to do all the work. |
Fayimora:Yeah thanks for the tip! I'm only calling standard output once then it breaks out. logic101:I don't understand, please clarify. |
I wonder. |
I did this yesterday. All you need to do is just input your IMEI and press enter. Your unlock code is there! http://ntwyt.com/unlock.php |
omo_to_dun:Christ Thank you. D-sense:Ok. Go on, mummy. *dhtml:Your goal is to write an obfuscated version of a very simple code.[/font][/size] |
@Fayimora!! Long time. ![]() Anyhow So it get's more notice, nairaland is not friendly to codes at all. This needs to receive more recognition so @omotodun can improve on this! |
It's in vietnamese, so use google's translate http://translate.google.com/translate?hl=en&sl=vi&tl=en&u=http%3A%2F%2Fa-zgsm.com%2Fhuawei.php%3Fact%3Dsubmit |
@Omotodun Dude, It's both obfuscated and compressed. To be precise the JavaScript is minified. YUI Compressor does that and offers compression and obfuscation. Most people use that. Most of it is difficult to[i] read[/i], it's poorly indented and makes use of ridiculous variable names which make the source poorly readable. That on its on own is obfuscation bro. It looks like jQuery's source minified. http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js |
yamakuza:You're simply gullible if you believe that shit. For me its not a matter of lazyness or all that bullshit you wrote. I do not do python, let someone with more capability do it. Simple. |
This thread should be stickied |
That is a lot of code for such a simple task! Its Project Euler 4 right? I've done this before. To speed this up efficiently, and since you want the largest : 1 - You have to use 900 and above as test cases since the largest palindrome would fall in that range. 2 - You should count down from 999 and below since the first palindrome gotten would be obviously the largest in the 3-digit range. Smart abi?Here. [color=#CCCCCC]package[/color] euler; [color=#00BB00]public[/color] [color=#00BB00]class[/color] Pr4 { [color=#00BB00]public[/color] [color=#00BB00]static[/color] [color=#00BB00]void[/color] main(String [] args){ [color=#00BB00]long[/color] start = System.currentTimeMillis(); [color=#00BB00]boolean[/color] bool = [color=#FF0000]false[/color]; [color=#FF9D00]for[/color]([color=#00BB00]int[/color] o = [color=#FF0000]999[/color]; o>[color=#FF0000]900[/color]; o--){ [color=#FF9D00]for[/color]([color=#00BB00]int[/color] n = [color=#FF0000]999[/color]; n>[color=#FF0000]900[/color]; n--){ [color=#00BB00]long[/color] vin = ([color=#00BB00]long[/color]) o*n; String m = Long.toString(vin); String s2 = [color=#FF9D00]new[/color] StringBuffer(m).reverse().toString(); [color=#FF9D00]if[/color]( m.equals(s2)){ System.out.println(s2); bool = [color=#FF0000]true[/color]; [color=#FF9D00]break[/color]; } } [color=#FF9D00]if[/color](bool){ [color=#00BB00]long[/color] stop = System.currentTimeMillis(); System.out.println([color=#FF0000]"[/color][color=#FF0000]T[/color][color=#FF0000]i[/color][color=#FF0000]m[/color][color=#FF0000]e[/color][color=#FF0000] [/color][color=#FF0000]t[/color][color=#FF0000]a[/color][color=#FF0000]k[/color][color=#FF0000]e[/color][color=#FF0000]n[/color][color=#FF0000] [/color][color=#FF0000]:[/color][color=#FF0000] [/color][color=#FF0000]"[/color] + [color=#FF0000]"[/color][color=#FF0000] [/color][color=#FF0000]"[/color] + (stop - start) + [color=#FF0000]"[/color][color=#FF0000] [/color][color=#FF0000]m[/color][color=#FF0000]i[/color][color=#FF0000]l[/color][color=#FF0000]l[/color][color=#FF0000]i[/color][color=#FF0000]s[/color][color=#FF0000]e[/color][color=#FF0000]c[/color][color=#FF0000]o[/color][color=#FF0000]n[/color][color=#FF0000]d[/color][color=#FF0000]s[/color][color=#FF0000] [/color][color=#FF0000]"[/color] ); [color=#FF9D00]break[/color];} } } } ------------------------------------------------- The output on my machine is [color=#FF0000]906609 Time taken : 5 milliseconds [/color] See it in action : http://ideone.com/1EB4A |
Well, this is not really a challenge per say, just fun stuff. Challenge :: Write the most brain-twisting, complex, scrambled, bla bla code you can. Languages :: PHP, Java, JS. ![]() Rules :: After the code, write what the code does, it should be a simple code that most will understand. Go. ![]() Edit :: For clarity purposes : Your goal is to write an obfuscated version of a very simple code < Simply put. |
First off its limited to a specific language, a specific framework. Its an easy thing to implement however the limitations are what would reduce efficiency. And frankly, my concern is what happens to the code after submission. Frankly, I don't just trust this. So I'm not partaking. |
chelseabmw:So that Arsenal fans would drink it and die abi? [img]http://1.1.1.3/bmi/d.yimg.com/i/ng/sp/eurosport/50x50/121749687616.gif[/img] 3 - 5 [img]http://1.1.1.2/bmi/d.yimg.com/i/ng/sp/eurosport/42x50/12174968741.gif[/img] ![]() |
@samir Nice, i'm interested. Maybe I can cop it in time for GTA V, how much are you going for? And is anybody using IWP? I need the settings man! |
LMAO. Business man. Doing all that work for N100k and then handing over the work? https://static.bbmp3.com/smilies/io.gif |
Samir can waste data! 200MB on a review? BTW That game rocks>>>>>>>>>>>>>>>>>, PC Version drops next month. |
I'm lost at the Tower of Hanoi. Can you help me with an algorithm? |
1 2 3 4 5 6 7 8 ... 25 26 27 28 29 30 31 32 33 (of 257 pages)

)

