01NCNeng ChannaProfessional Mobile App DesignI really want to start learning to be a professional mobile app design. Where should I start?Aug 19, 2019G
01NCNeng ChannaHow to read flat file?Does anyone know any libraries to read data from flat file? I want to convert flat file data to json. e.g customer_flat_file.txt 25654Gilberto Holms gibaholms@hotmail.com 12345William Miranda blackstile@hotmail.com 65987Bil...May 9, 2019S
05NCNeng ChannaCalling api over TCPHello everyone, I am facing a problem how to call api (web service) over tcp. Does anyone has a sample code? Really appreciate your help.May 8, 2019QEGCM
00NCNeng ChannaI can not get data from jQuery Ajax submit Laravel 5.7Hey guy, Help me I am trying to received data from jQuery ajax submit by post in laravel 5.7. But I couldn't make it TT. I always get nothing in controller. Here is my code. Route (web.php) use Illuminate\Support\Facades\Route; use App\Http\Contr...Jan 30, 2019
01NCNeng ChannaCould anyone explain about scanf using &?What are the different between string and &string? char string[20]; scanf( "%s" , string ); However, the following seems to work too, scanf( "%s" , &string );Oct 18, 2018C
01NCNeng ChannaJava: How can I access to members of each class???class Dog { private name = null; private weight = null; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getWeight() { return weight; ...Aug 7, 2018C