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
429
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
    Xdqwerty @ Xdqwerty: ack slow wifi