₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,137 members, 8,420,526 topics. Date: Thursday, 04 June 2026 at 11:25 PM

Toggle theme

Alphabyte's Posts

Nairaland ForumAlphabyte's ProfileAlphabyte's Posts

1 2 (of 2 pages)

ProgrammingRe: Learn ASP.NET Core MVC by Alphabyte(op): 10:09am On Oct 18, 2022
Tools
Rider
Visual studio 2022

SQL server and SQL management studio
ProgrammingLearn ASP.NET Core MVC by Alphabyte(op): 10:09am On Oct 18, 2022
ProgrammingHow To Learn Software Development Fast by Alphabyte(op):
If you are learning a new language learn the structure of software architecture before logic thoroughly it will help you understand the code base. The folders , classes or models etc

Software architecture refers to the fundamental structures of a software system and the discipline of creating such structures and systems. Each structure comprises software elements, relations among them, and properties of both elements and relations.It includes all the information related logically and detailed description without using technical terms in it. It means it can be considered a diagram used to define the relation .


If you’re learning to code, practicing logical reasoning will help you understand how programming languages work by learning the syntaxes .
ProgrammingRe: Aren't There Any C++ Devs On This Section Or Programmers That Do Complex Stuff? by Alphabyte(m): 3:20pm On Oct 17, 2022
If a programmer don't know the software and hardware architecture of operating system and Logic it is will be difficulty to build one . There is a GitHub repo of a opensource based os called serenity os written in C++
ProgrammingRe: Aren't There Any C++ Devs On This Section Or Programmers That Do Complex Stuff? by Alphabyte(m): 3:15pm On Oct 17, 2022
Fourpockets:
Fair enough.
I just think the way you dismissed the op sounded harsh and insecure given that you once admitted c++ programmers are different from mere programmers like you and me
Android was built with Linux kernel in C and the system apps java or Kotlin was used.





Window kernel was written in C while the system apps is in C#and C++


computers that have a microcontroller/microprocessor inside that is running a program, also called firmware, on embedded devices.
ProgrammingRe: Aren't There Any C++ Devs On This Section Or Programmers That Do Complex Stuff? by Alphabyte(m): 1:37pm On Oct 17, 2022
C++ is not a high demand skills in Nigeria.
Do you know that Bitcoin was built using qt and c++ for desktop wallet .
Programming5 Android Apps To Learn Kotlin For Beginners by Alphabyte(op): 12:45pm On Oct 17, 2022
ProgrammingRe: . by Alphabyte(m): 12:36pm On Oct 17, 2022
Great dashboard sleekcode look at Anson the developer YouTube channel to add more functionality to the user interface
ProgrammingRe: C++ Tutorial For Expert And Beginners by Alphabyte(op):
Tools

Vs code or CodeLite or qt studio or c++ builder or CLion by jetbrains or eclipse c/c++, or visual studio 2022

Compliers

Intel c++ complier
Cygwin (GNU C++)
MINGW
Microsoft visual c+++ complier
ProgrammingC++ Tutorial For Expert And Beginners by Alphabyte(op):
C++ (pronounced "C plus plus" ) is a general-purpose programming language created by Danish computer scientist Bjarne Stroustrup as an extension of the C programming language, or "C with Classes". The language has expanded significantly over time, and modern C++ now has object-oriented, generic, and functional features


C++ tutorial introduction

https://www.w3schools.com/cpp/


http://www.java2s.com/Tutorials/C/Cpp_Tutorial/index.htm


Qt tutorials http://www.java2s.com/Code/Cpp/Qt/CatalogQt.htm

Visual c++ tutorial

http://www.java2s.com/Code/Cpp.net/CatalogCpp.net.htm

https://youtube.com/playlist?list=PLS1QulWo1RIZiBcTr5urECberTITj7gjA
ProgrammingRe: What To Do You Do When You Lose Interest In Coding by Alphabyte(op): 10:45am On Oct 17, 2022
GREATIGBOMAN:
Talks for unemployed cheesy
Master troller what are u doing?
ProgrammingRe: Kotlin Android Guides For Beginners by Alphabyte(op):
Projects sample for learning proposes


https://github.com/androiddevnotes/awesome-android-kotlin-apps


For expert and advance app development you have to learn the following components or framework like Clean archiecture MVVM , Retrofit , room ,Koin ,Coroutines , junit Mockito
ProgrammingRe: Kotlin Android Guides For Beginners by Alphabyte(op): 9:53am On Oct 17, 2022
Tools

Android studio or IntelliJ IDEA
ProgrammingKotlin Android Guides For Beginners by Alphabyte(op): 9:49am On Oct 17, 2022
Kotlin is a cross-platform, statically typed, general-purpose programming language with type inference. Kotlin is designed to interoperate fully with Java, and the JVM version of Kotlin's standard library depends on the Java Class Library. It is use for making mobile and web application. The class is denoted by kt while the user interface in android is in XML.


https://www.youtube.com/watch?v=uRyvNKRkwbs


https://www.w3schools.com/KOTLIN/index.php

https://www.javatpoint.com/kotlin-tutorial


https://www.udemy.com/topic/kotlin/
ProgrammingRe: What To Do You Do When You Lose Interest In Coding by Alphabyte(op): 7:24am On Oct 17, 2022
CodeWithRemi:
I take a break…
U are right
ProgrammingWhat To Do You Do When You Lose Interest In Coding by Alphabyte(op): 6:46pm On Oct 16, 2022
Many programmers are losing interest in coding what is the cause and how can it be balanced .A good developer can be very passionate about coding but might lose interest because of some certain factors . How can we always stay motivated as a developer.It may be as a result of high expectations than we can achieve.


We are spending more time on things that makes us tired and unmotivated might be one of the factors that causes it . Coding is so competitive so learn at your pace don't compare yourself with others.
ProgrammingRe: Spring Boot Tutorial For Beginners by Alphabyte(op):
Development environment

Java : 1.8.0_221
XAMPP
Tomcat (included with XAMPP): Tomcat 9
Spring Boot : 3.0+
ProgrammingSpring Boot Tutorial For Beginners by Alphabyte(op): 9:14am On Oct 16, 2022
Initialize the project

Navigate to https://start.spring.io. This service pulls in all the dependencies you need for an application and does most of the setup for you.

Choose either Gradle or Maven and the language you want to use. This guide assumes that you chose Java.

Click Dependencies and select Spring Web.

Click Generate.

Download the resulting ZIP file, which is an archive of a web application that is configured with your choices.




Create a Simple Web Application


Now you can create a web controller for a simple web application, as the following listing (from src/main/java/com/hello/springboot/Controller.java) shows:






package com.hello.springboot.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloController {

@GetMapping("/hello" )
@ResponseBody
public String hello() {
return "hello,world";
}
}



The code will display hello world on your browser




Tools

Eclipse or Intellij idea or Vs code or netbeans
ProgrammingRe: MAUI .NET Tutorials C# Project Based And Ui by Alphabyte(op): 8:38am On Oct 16, 2022
Tool

Rider or visual studio 2022
ProgrammingMAUI .NET Tutorials C# Project Based And Ui by Alphabyte(op): 8:37am On Oct 16, 2022

1 2 (of 2 pages)