Stack Overflow Is No Longer Useful - Programming - Nairaland
Nairaland Forum › Science/Technology › Programming › Stack Overflow Is No Longer Useful (791 Views)
| Stack Overflow Is No Longer Useful by MindHacker9009(op): 10:07pm On Oct 24, 2024 |
Now with ChatGPT, when last did you use Stack Overflow? Very annoying mods on Stack Overflow that just love closing quality questions down because they have nothing better to do. |
| Re: Stack Overflow Is No Longer Useful by preciouswoman66(m): 11:44pm On Oct 24, 2024 |
My mind dey tell me say na cruise or content you want create but anyways make I comment I used it not too long. I posted a question about few hrs ago with no response yet as it's still in staging Nothing is as frustrating as been the first to encounter a bug or issue that no solutions can be found online. Especially when you're in a hurry to finish a task As for those AI chatbots they are mostly good at doing repetitive and common tasks on the internet but when it comes to unfamiliar areas, they flops. I use them when I'm being lazy or in a rush or a common task |
| Re: Stack Overflow Is No Longer Useful by tensazangetsu20(m): 12:37am On Oct 25, 2024 |
You are funny. I use stack overflow everyday. You are probably still writing very very beginner level codes. E get wey e go hook you o |
| Re: Stack Overflow Is No Longer Useful by eseosa101: 12:45am On Oct 25, 2024 |
The simple truth is that chat gpt cannot replace stack overflow I use them both and chat get is for the simple stuff chatgpt very rarely helps me solve complex issues |
| Re: Stack Overflow Is No Longer Useful by Kaczynski: 1:13am On Oct 25, 2024 |
Noob don drop quote |
| Re: Stack Overflow Is No Longer Useful by eseosa101: 1:14am On Oct 25, 2024 |
. |
| Re: Stack Overflow Is No Longer Useful by Adonisty: 5:31am On Oct 25, 2024 |
It's only a matter of time when these AI will be almost capable of solving almost all issues and besides your experience using a premium subscription will be better than when using free mode. And there's also the part of prompting the AI to get what you want from it. |
| Re: Stack Overflow Is No Longer Useful by incogni2o: 7:11am On Oct 25, 2024 |
ChatGpt code seldomly is good for copy paste. Generated code looks good but seldomly accurate. You end up spending more time looking for what's wrong and why it's not working properly. |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 11:09am On Oct 25, 2024 |
incogni2o:Cursor and Copilot is cool it improves coding speed and efficiency |
| Re: Stack Overflow Is No Longer Useful by MindHacker9009(op): 12:37pm On Oct 25, 2024 |
tensazangetsu20:Means you don't know how to use ChatGPT for advance stuff in programming |
| Re: Stack Overflow Is No Longer Useful by DataMina: 12:46pm On Oct 25, 2024 |
Chatgpt and stack overflow both have there strength and weaknesses. I think the number of visitors to stackoverflow has drastically dropped since Chatgpt became a thing. Although I still used Stackoverflow is not as frequent as I it used to be prior to the chatgpt era |
| Re: Stack Overflow Is No Longer Useful by MindHacker9009(op): 3:45pm On Mar 06, 2025 |
When last did you use Stack Overflow? |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 4:12pm On Mar 06, 2025 |
MindHacker9009:StackoverflowAI is now available for users |
| Re: Stack Overflow Is No Longer Useful by MindHacker9009(op): 4:50pm On Mar 06, 2025 |
Alphabyte3:Just hearing of this, but then their StackoverflowAI might be like their nasty mods closing valid questions. |
| Re: Stack Overflow Is No Longer Useful by silento(m): 6:00am On Mar 07, 2025 |
Unless na login page you dey code , AI is very useless when it comes to solving complex coding problems |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 11:19am On Mar 07, 2025 |
silento:AI isn't useless it saves time i gave this prompt below in meta AI in Whatsapp you just have to know the next class method and prompt Write a ad network code in laravel 11 php |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 11:21am On Mar 07, 2025 |
Creating a full ad network system is a complex task that requires a significant amount of code and infrastructure. However, I can provide you with a basic example of how you might implement an ad network in Laravel 11 using PHP. Ad Network Model First, let's create a model for our ads: ``` // app/Models/Ad.php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Ad extends Model { use HasFactory; protected $fillable = [ 'title', 'description', 'image', 'url', 'views', 'clicks', ]; } ``` Ad Network Controller Next, let's create a controller to handle our ads: ``` // app/Http/Controllers/AdController.php namespace App\Http\Controllers; use App\Models\Ad; use Illuminate\Http\Request; class AdController extends Controller { public function index() { $ads = Ad::all(); return view('ads.index', compact('ads')); } public function create() { return view('ads.create'); } public function store(Request $request) { $ad = new Ad(); $ad->title = $request->input('title'); $ad->description = $request->input('description'); $ad->image = $request->input('image'); $ad->url = $request->input('url'); $ad->save(); return redirect()->route('ads.index'); } public function show($id) { $ad = Ad::find($id); return view('ads.show', compact('ad')); } public function edit($id) { $ad = Ad::find($id); return view('ads.edit', compact('ad')); } public function update(Request $request, $id) { $ad = Ad::find($id); $ad->title = $request->input('title'); $ad->description = $request->input('description'); $ad->image = $request->input('image'); $ad->url = $request->input('url'); $ad->save(); return redirect()->route('ads.index'); } public function destroy($id) { $ad = Ad::find($id); $ad->delete(); return redirect()->route('ads.index'); } } ``` Ad Network Routes Next, let's define our routes: ``` // routes/web.php use App\Http\Controllers\AdController; use Illuminate\Support\Facades\Route; Route::get('/ads', [AdController::class, 'index'])->name('ads.index'); Route::get('/ads/create', [AdController::class, 'create'])->name('ads.create'); Route::post('/ads', [AdController::class, 'store'])->name('ads.store'); Route::get('/ads/{id}', [AdController::class, 'show'])->name('ads.show'); Route::get('/ads/{id}/edit', [AdController::class, 'edit'])->name('ads.edit'); Route::patch('/ads/{id}', [AdController::class, 'update'])->name('ads.update'); Route::delete('/ads/{id}', [AdController::class, 'destroy'])->name('ads.destroy'); ``` Ad Network Views Finally, let's create our views: ``` // resources/views/ads/index.blade.php <h1>Ads</h1> <ul> @foreach($ads as $ad) <li> <a href="{{ route('ads.show', $ad->id) }}">{{ $ad->title }}</a> </li> @endforeach </ul> ``` ``` // resources/views/ads/create.blade.php <h1>Create Ad</h1> <form action="{{ route('ads.store') }}" method="post"> @csrf <label for="title">Title:</label> <input type="text" id="title" name="title"><br><br> <label for="description">Description:</label> <input type="text" id="description" name="description"><br><br> <label for="image">Image:</label> <input type="text" id="image" name="image"><br><br> <label for="url">URL:</label> <input type="text" id="url" name="url"><br><br> <input type="submit" value="Create Ad"> </form> ``` ``` // resources/views/ads/show.blade.php <h1>{{ $ad->title }}</h1> <p>{{ $ad->description }}</p> <p><img src="{{ $ad->image }}"></p> <p><a href="{{ $ad->url }}">Visit URL</a></ ``` |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 11:24am On Mar 07, 2025 |
I did not write any code just knowing the right prompt , logic , classes and methods . |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 11:33am On Mar 07, 2025*. Modified: 1:36pm On Mar 07, 2025 |
v0.dev and figma can create the ui to code of any like Chatgpt, cursor , claude ai , groq ,deep seek and gemini ai . The next phase will be code review. |
| Re: Stack Overflow Is No Longer Useful by Karleb(m): 10:06am On Mar 08, 2025 |
I always find it funny that it's people who don't code that have the strongest arguments about AI regarding software development. Make we sha dey look. ![]() |
| Re: Stack Overflow Is No Longer Useful by MindHacker9009(op): 10:18am On Mar 08, 2025 |
Only regulation of software development can make sure only real software developers have the strongest arguments about AI and software development. |
| Re: Stack Overflow Is No Longer Useful by Alphabyte3: 11:08am On Mar 08, 2025 |
Karleb:Young junior US and Chinese developers are using AI to code . They don't even know what they are doing and they have the ability to leverage AI to build any type of software. |
| Re: Stack Overflow Is No Longer Useful by MindHacker9009(op): 4:39pm On Mar 08, 2025*. Modified: 7:00pm On Mar 08, 2025 |
Programmers that are not good in programming don't like AI like ChatGPT, because before AI they can pretend to be doing something simple for months making it look like it is hard, but now there is no hiding place for them and they are being exposed as they don't know how to code so they cannot use AI to work smatter. Because of their mafia connections they will be on the project till the project fails and they will move them to the next project or company and the circle continues like that. Using AI for coding is like using a Toyota SUV instead of an old bicycle with the chain falling off. |
Why I No Longer Recommend Hostnownow For Hosting In Nigeria • Stack Overflow • Youtube No Longer Support Offline Download For Free Users • 2 • 3 • 4
Can Offshore Technology Development Model Work In Nigeria ? • Help With .net • Let's Embrace Software Engineering Through Scholarship
