Hacking Wii U Hacking & Homebrew Discussion

FusionGamer

Well-Known Member
Member
Joined
Jul 12, 2014
Messages
507
Trophies
0
XP
517
Country
United States
I don't know why he'd be angry after announcing several dates, saying he never promised anything then backpedaling and going on some tirade about how selfless he really is when called out on the "it will be released before February, I'm sure of it" quote. Angry at himself for making promises he couldn't keep, maybe? :wacko:

Where's the bashing? I said practically the same thing and people were up in my grill. That's so frigging true though.

He was angry about people telling him he's a liar, which is really demotivating.
Because he did lie! Saying "I'm sure of it" and then back-peddling by saying you never specified a release, what did he think was going to happen?
 

tomman321

Well-Known Member
Member
Joined
Feb 4, 2016
Messages
130
Trophies
0
Age
26
XP
393
Country
United States
Where's the bashing? I said practically the same thing and people were up in my grill. That's so frigging true though.


Because he did lie! Saying "I'm sure of it" and then back-peddling by saying you never specified a release, what did he think was going to happen?
Yeah I've gotta agree with FusionGamer. If he hadn't said he was sure of the release date, it would be fine. It was kind of dishonest of him to say that, and the backlash is to be expected tbh.

--------------------- MERGED ---------------------------

Not that I don't appreciate what he's doing. I do. I just don't appreciate the dishonesty. But everyone makes mistakes. We should just be patient.
 

oPolo

Well-Known Member
Newcomer
Joined
Nov 26, 2014
Messages
87
Trophies
0
Age
34
XP
601
Country
He should've said that instead of rage-quitting.

People should have accepted he also has a life, instead of insulted him for not meeting a release-date for something free.
With life comes unexpected turns. Every idiot that judged him has experienced that themselves, yet are too freaking narrow-minded to figure out "2+2=4" in this case.

FWIW; he seems like a cool guy (based on the helpfulness I see from him to other devs that has questions). If people opened their eyes, they might see a little of that too.
Anyways.. Everyone on the internet considers themselves experts on puts on the judge-wig <_<
 

Rob Blou

Well-Known Member
Member
Joined
Jul 16, 2013
Messages
754
Trophies
0
Age
41
XP
1,508
Country
Canada
Where's the bashing? I said practically the same thing and people were up in my grill. That's so frigging true though.


Because he did lie! Saying "I'm sure of it" and then back-peddling by saying you never specified a release, what did he think was going to happen?
I'm truly hoping Hykem will do like Total Noob did on the psp and release his exploit with bricking code that only triggers with certain users (haters). He wants to give you something amazing for free and you bite his hand because it got delayed a little. Please grow up and play games instead of trash talking.
 

NWPlayer123

Well-Known Member
Member
Joined
Feb 17, 2012
Messages
2,642
Trophies
0
Location
The Everfree Forest
XP
6,693
Country
United States
I'm probably not going to get a very good answer from here but I've found that using the IM_Close shutdown code on 5.5.X with the stagefright exploit breaks all networking, libcurl can't connect to download with curl_easy_perform and sockets won't connect either, so I was hoping there was an easier, less destructive method to free resources and make sure the browser doesn't do anything stupid :\ that means no loadiine or ELF loader until this is figured out (assuming kernel was public)
 

soniczx123

Well-Known Member
Member
Joined
Jul 24, 2015
Messages
589
Trophies
0
Age
26
XP
437
Country
I'm probably not going to get a very good answer from here but I've found that using the IM_Close shutdown code on 5.5.X with the stagefright exploit breaks all networking, libcurl can't connect to download with curl_easy_perform and sockets won't connect either, so I was hoping there was an easier, less destructive method to free resources and make sure the browser doesn't do anything stupid :\ that means no loadiine or ELF loader until this is figured out (assuming kernel was public)

How about other apps like Cafiine or SDCafiine?
 

wj44

Well-Known Member
Member
Joined
Jun 18, 2015
Messages
477
Trophies
0
XP
506
Country
Gambia, The
I'm probably not going to get a very good answer from here but I've found that using the IM_Close shutdown code on 5.5.X with the stagefright exploit breaks all networking, libcurl can't connect to download with curl_easy_perform and sockets won't connect either, so I was hoping there was an easier, less destructive method to free resources and make sure the browser doesn't do anything stupid :\ that means no loadiine or ELF loader until this is figured out (assuming kernel was public)
It already got fixed in Loadiine GX2. The solution(found by @Onion_Knight ) was to reintialize the network and to Initalize the socket and curl library.
Code:
unsigned int nn_ac_handle;
    unsigned int nn_startupid;
    int(*ACInitialize)();
    int(*ACGetStartupId) (unsigned int *id);
    int(*ACConnectWithConfigId) (unsigned int id);

    OSDynLoad_Acquire("nn_ac.rpl", &nn_ac_handle);
    OSDynLoad_FindExport(nn_ac_handle, 0, "ACInitialize", &ACInitialize);
    OSDynLoad_FindExport(nn_ac_handle, 0, "ACGetStartupId", &ACGetStartupId);
    OSDynLoad_FindExport(nn_ac_handle, 0, "ACConnectWithConfigId",&ACConnectWithConfigId);

    ACInitialize();
    ACGetStartupId(&nn_startupid);
    ACConnectWithConfigId(nn_startupid);

    unsigned int nsysnet_handle;
    int(*socket_lib_init)();
    OSDynLoad_Acquire("nsysnet.rpl", &nsysnet_handle);
    OSDynLoad_FindExport(nsysnet_handle, 0, "socket_lib_init", &socket_lib_init);
    socket_lib_init();

    /* Acquire and setup libcurl */
    unsigned int libcurl_handle;
    OSDynLoad_Acquire("nlibcurl", &libcurl_handle);

    int(*curl_global_init)(int opts);
    OSDynLoad_FindExport(libcurl_handle, 0, "curl_global_init", &curl_global_init);
    OSDynLoad_FindExport(libcurl_handle, 0, "curl_easy_init", &private_data->curl_easy_init);
    OSDynLoad_FindExport(libcurl_handle, 0, "curl_easy_setopt", &private_data->curl_easy_setopt);
    OSDynLoad_FindExport(libcurl_handle, 0, "curl_easy_perform", &private_data->curl_easy_perform);
    OSDynLoad_FindExport(libcurl_handle, 0, "curl_easy_getinfo", &private_data->curl_easy_getinfo);
    OSDynLoad_FindExport(libcurl_handle, 0, "curl_easy_cleanup", &private_data->curl_easy_cleanup);

    curl_global_init(0);
 

oumoumad

Well-Known Member
Member
Joined
Apr 20, 2015
Messages
798
Trophies
0
Age
31
XP
890
Country
France
I'm probably not going to get a very good answer from here but I've found that using the IM_Close shutdown code on 5.5.X with the stagefright exploit breaks all networking, libcurl can't connect to download with curl_easy_perform and sockets won't connect either, so I was hoping there was an easier, less destructive method to free resources and make sure the browser doesn't do anything stupid :\ that means no loadiine or ELF loader until this is figured out (assuming kernel was public)
Lol welcome aboard :), we did struggle with that too on 5.4.0 since Loadiine v3, same with v4/GX2, but yeah it was fixed and onion_knight can help you with that if you need.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Psionic Roshambo @ Psionic Roshambo:
    My girlfriend at the time, she had me stay up with her all night because some how the crazy bitch had spent like 12 hours snorting 2 8 balls, didn't use any water (gotta clean your nose) so she had so much crusted in her nose I was sure she was gonna blow up her heart. I mean this was the stuff right off the boat so absolutely pure. ugghh so annoying
  • Psionic Roshambo @ Psionic Roshambo:
    Also doing like 320 dollars worth of coke in half a day lol damn it
  • Psionic Roshambo @ Psionic Roshambo:
    hmmm 360 even lol
  • Psionic Roshambo @ Psionic Roshambo:
    Well I was getting a discount so 320 is probably right
  • BigOnYa @ BigOnYa:
    That is cheap, I used to pay $100 for a tine.
  • Psionic Roshambo @ Psionic Roshambo:
    Tine? One gram?
  • BigOnYa @ BigOnYa:
    Sixteenth
  • Psionic Roshambo @ Psionic Roshambo:
    Also it was literally out of a kilo when I got it off the boat so absolutely pure
  • Psionic Roshambo @ Psionic Roshambo:
    Holy shiz that's a lot
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I was getting 3.5 Grams for 320 could have stepped on it and doubled my money easy lol
    +1
  • BigOnYa @ BigOnYa:
    I'd be afraid to it nowdays, my heart would explode prob. I just stick beers n buds nowdays.
  • Psionic Roshambo @ Psionic Roshambo:
    I would get to drive from tarpon springs to like Miami a thousand bucks lol do that twice a week and back in 92 that was good money
  • Xdqwerty @ Xdqwerty:
    @BigOnYa,
    @Psionic Roshambo what are you guys talking about?
  • Psionic Roshambo @ Psionic Roshambo:
    Blew it on women and muscle cars lol
    +1
  • BigOnYa @ BigOnYa:
    @Xdqwerty Hamster food, its pricey nowadays to keep PCs running.
    +2
  • Psionic Roshambo @ Psionic Roshambo:
    I don't do anything except cigarettes and gotta stop eventually lol
    +1
  • BigOnYa @ BigOnYa:
    I'd do shrooms again if could find, and I was outside camping/fishing, and had a cooler full of beer.
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I wouldn't mind some LSD, laughing until my face hurt sounds fun lol
    +1
  • BigOnYa @ BigOnYa:
    You ever try soaper powder/qauludes? I did once and like a dumbass drank beer on top of taking, I woke up laying in my backyard in the pouring rain, it knocked me out. I have not seen it around in many many years.
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    No never tried a lot of things but never that lol
  • Psionic Roshambo @ Psionic Roshambo:
    I did pass out one time on a floor after taking a bunch of Ambien lol thought it would help me sleep and did it lol
  • Psionic Roshambo @ Psionic Roshambo:
    Girlfriend was working at a pharmacy and stole like 500 of them, was and still is the biggest pill bottle I have ever seen lol
  • K3Nv2 @ K3Nv2:
    Ativan is pretty legit
    K3Nv2 @ K3Nv2: Ativan is pretty legit