Hacking Wii U Hacking & Homebrew Discussion

  • Thread starter Thread starter filfat
  • Start date Start date
  • Views Views 5,113,651
  • Replies Replies 21,104
  • Likes Likes 29
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?
 
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.
 
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 <_<
 
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.
 
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)
 
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?
 
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);
 
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