Joined May 2020
79 Photos and videos
Prepping for a new technical assessment focused on networking and info-sec. No matter how long you’ve been in the game, the learning never stops. #CyberSecurity #LearningToCode #CareerGrowth #TechCommunity #websites #Web3‌‌ #network
7
As a professional developer, my most important tool isn't my IDE it's my calendar. Blocking out deep work sessions is the only way to tackle complex features. How do you protect your focus time? #Productivity #DevLife #RemoteWork #Codin
12
Refining database schemas and security protocols today. It’s easy to rush the setup, but getting the foundation right saves so much technical debt later. Do you prefer SQL or NoSQL for rapid prototyping? #Database #CodingLife #WebDevelopment #Backend #asrealtech
8
Setting up the backend for a new project today. Dealing with some interesting Nigerian tax reforms in 2026, so getting the database schema and security protocols just right is a top priority. #WebDevelopment #BuildInPublic #TypeScript #Backend #TechNigeria #FinTech
2
25
How to Serve a React App with Express.js (Step-by-Step Guide) Serves static files from the build folder Handles client-side routing for Single Page Applications (SPA) #ReactJS #NodeJS #ExpressJS #WebDevelopment #JavaScript #Programming #FullStack
13
Chisom Joel retweeted
Good morning sir @TunjiDisu1, It was reported that you ordered the DPO of Satellite Town, Lagos, to bring the officers involved in that disgraceful viral video to Abuja on Wednesday, 8th April 2026, for disciplinary action. Let’s be very clear Nigerians are tired of hearing about “disciplinary actions” that nobody ever sees. For years, it has been the same empty routine: noise in the media, then silence, and suddenly the same officers are back on the streets harassing citizens like nothing happened. This time, it must be different.@PoliceNG @PoliceNG_CRU We demand that this disciplinary process be televised live on social media. Let Nigerians see real accountability for once not another round of “audio punishment” with no visible consequences. Anything short of transparency will only reinforce the belief that nothing ever truly happens to erring officers. This is not too much to ask. Nigerians are watching. Have a good Easter, but more importantly, take action that proves your leadership is not business as usual. RT.🔁❤️
181
2,582
4,357
233,664
Chisom Joel retweeted
A police officer saying You wan make dem loose guard you When you know be area boy
180
429
1,126
49,366
Chisom Joel retweeted
Police Say The IGP Has Directed DPO Of The Affected Station To BringThe Identified Officers To Abuja For Necessarily Disciplinary Action. Let’s Just Believe So.
318
567
1,648
261,310
If you’re learning to code, thinking about switching careers, or wondering if web development is still a good investment of your time — this video is for you. 👍 Like the video if it helped 📌 Subscribe for more web development & tech career content youtu.be/Na9jepYMKwk
1
59
AsRealTech Web Development | Software Engineering | Tech Consulting | Content Editing Empowering beginners. Growing businesses. Own your digital presence today. WhatsApp: 2349047439441 #TechBrand #WebDevelopers #SoftwareDevelopers #TechConsultant #DigitalTransformation #Tech
1
19
CSS gotcha 🚨 float not working on a div? Check the parent. If it’s display: flex, floats are ignored. Don’t mix layout systems use float, flexbox, or grid. #CSS #FrontEndDeveloper #WebDevelopment
22
A REST API (Representational State Transfer Application Programming Interface) is an architectural style for designing networked applications that allows different computer systems to communicate with each other over the internet.
4
1
31
The server processes the request and sends back a response including an HTTP status code and data, often in JSON or XML format. Common HTTP methods correspond to CRUD (Create, Read, Update, Delete) operations:
13
REST APIs utilize the standard HTTP protocol in a request-response cycle. A client sends an HTTP request to an endpoint with an HTTP method, headers, and optionally a body.
11
Data and objects are treated as resources with unique URIs. Responses can be cacheable to improve performance, and the system operates in layers, where the client doesn't need to know if it's connected directly to the server.
13
A system following REST constraints is called "RESTful". Key principles include a client-server architecture where client and server are separate, statelessness where each request contains all necessary information, and a uniform interface using standard HTTP methods and URIs.
16