Alphabyte3's Posts
Nairaland Forum › Alphabyte3's Profile › Alphabyte3's Posts
1 2 3 4 5 6 7 8 ... 16 17 18 19 20 21 22 23 24 (of 32 pages)
Build agents that can merge multiple API endpoints on a single server or different one . Does these even make sense in agents design |
MindHacker9009:Everyone can vibe code thanks to AI with just basic knowledge |
WinnerFFW:Nigeria have already work on AI and machine learning but the adoption is slow because it is not lucrative and the competition is strong. Nitda and minister of information are trying to include university students and some youth in research and development look at awarri.com |
preciouswoman66:I said something about QPU+GPU+CPU bridge via CUDA-Q here https://www.nairaland.com/7603790/hybrid-quantum-classical-computing |
Financial Modeling and Quantum algorithm to optimize financial models and detect fraudulent activities in crypto or cash transfer. |
.NET 10 support C# 14 Migration will be smooth than ever no more headache debugging codes. Remember you can write minimal API for smaller web apps or webAPI in MVC for enterprise apps |
The release of .NET 10 is projected for November 2025, and it will be a Long Term Support (LTS) release. https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-10/overview .NET 10 preview https://devblogs.microsoft.com/dotnet/dotnet-10-preview-1/ https://devblogs.microsoft.com/dotnet/dotnet-10-preview-2/ https://devblogs.microsoft.com/dotnet/dotnet-10-preview-3/ https://devblogs.microsoft.com/dotnet/dotnet-10-preview-4/ https://github.com/dotnet/core/discussions/9927 Tools Vscode or visual studio or rider Sql server +Sql management studio |
preciouswoman66:The goal is mix super and quantum computer to become hybrid |
preciouswoman66:Banks and corporations are migrating to quantum proof or safe encryption before it would be accessible to everyone . Imagine brute force a classical phrase , key or encryption using Alphanumeric and symbolic combination and factorial . Safety and ethics first . |
preciouswoman66:It will put sensitive info to blackhat guys o . It isn't right if it fall to the wrong hands . We are cooked. Quantum computer has hacked my old device before . I con dey fear i stop it in a few seconds. |
preciouswoman66:Renting virtual cloud Amazon Braket $7000 per hour omo . I even see free trial no wonder people for africa dey run from am . E too cost |
CUDA-Q kernel can be integrated in any quantum software in the future even though it is IOT based |
preciouswoman66:The competition is still on even if it 100k dolla it alright for me . I don't know if Nigeria is restricted to participate . Nvidia will make quantum computers better thanks to CUDA . |
preciouswoman66:Old post it has already been done there is an os that supports quantum networks . The details about the design remains hidden |
Quantum AI is coming to Quantum edge computing , IOTs and electronics |
Nvidia and google are building an AI toolkit for data mining and data analysis . |
AI agent without MCP is fake |
Imagine building voice command task controller robotics system the operation will be simulated and semi-teloperated |
MindHacker9009:I think you should try Daisy UI the components are great . Lol ![]() |
MindHacker9009:What are your stack? |
We are developing AI and robotics engineer like mechanical,bioengineering,construction ,electrical or chemical robotics or AI Engineer etc |
preciouswoman66:Windows, mac or linux with 16 GB RAM , intel chip or ARM and SSD or HDD at least 100GB space . Preferable touch screen . Rendering of long cartoon of an hour or 2 will require gpus to process faster. GPU cost and scarcity has made nigerian cartoon creators work on only 10 mins cartoons . |
Tools Move.ai paid Illustrator and after effect paid Autodesk Maya paid Autodesk 3ds Max paid Cinema 4D paid Autodesk MotionBuilder OptiTrack Motive Blender free Houdini Zbrush paid Mixamo MakeHuman |
orangevfx earlybell 32ad Animation Studios Anthill Studios Ai Multimedia Academy - School of Creative Media & ICT Basement Animation Leinad Studios Aroba Animation Studio Eaxum Youth in Animation and Post Production (YAPPI) Itabox Studios Smids Animation Studios |
Imagine the concept of tv (television) GPT and more |
AI in intelligence control system in electronics iot devices is gpT 6 |
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. |
you can remove Telescope from a CPanel Laravel hosting. Here's how: Method 1: Using Composer 1. Connect to your server via SSH or access your CPanel's terminal. 2. Navigate to your Laravel project's root directory. 3. Run the following command: ``` bash composer remove laravel/telescope ``` This will remove Telescope and its dependencies from your project. Method 2: Manual Removal 1. Connect to your server via SSH or access your CPanel's file manager. 2. Navigate to your Laravel project's root directory. 3. Delete the following files and directories: ``` bash vendor/laravel/telescope config/telescope.php ``` 4. Remove the Telescope service provider from the `config/app.php` file: ``` // config/app.php 'providers' => [ // ... // Remove the following line // Laravel\Telescope\TelescopeServiceProvider::class, ], ``` 5. Run the following command to clear the cache: ``` bash php artisan cache:clear php artisan config:clear ``` This will manually remove Telescope from your project. Important Notes : - Before removing Telescope, make sure you don't have any dependencies that rely on it. - If you're using a shared hosting environment, ensure that you have the necessary permissions to remove files and directories. - After removing Telescope, you may need to run `composer dump-autoload` to regenerate the autoload files. By following these steps, you should be able to successfully remove Telescope from your CPanel Laravel hosting. |
RadioMOUTH:You can do on Cpanel or an IDE |
RadioMOUTH:In .env file let it be false or if it isn't there add it TELESCOPE_ENABLED=false |
It looks like your hosted Laravel website is displaying a debugging interface, likely from Laravel Telescope, which is a tool designed to monitor and debug Laravel applications. This interface shows detailed metrics like requests, exceptions, database queries, and performance data (e.g., a 9.51-second request time). While Telescope is great for development, it’s not meant to be active in a production environment because it can expose sensitive information and slow down your site. Why is this happening? Telescope is probably enabled in your production environment by default or due to a configuration oversight. When you see this dashboard on your live site, it means the tool hasn’t been disabled for production, which is why you’re seeing it when you don’t want to. How to fix it To stop this interface from showing on your hosted website, you need to disable Telescope in production. Here’s how you can do it: Update your .env file Open the .env file in your Laravel project and look for the TELESCOPE_ENABLED variable. If it’s set to true, change it to false. If it’s not there, add this line: TELESCOPE_ENABLED=false This tells Telescope to turn off. Check config/app.php If Telescope is still showing up, it might be registered in your application’s service providers. Open config/app.php and ensure the Telescope service provider is only loaded in development (e.g., local environment). You can wrap it like this: php 'providers' => [ // Other providers... // Only register Telescope in local environment ...((app()->environment('local')) ? [\Laravel\Telescope\TelescopeServiceProvider::class] : []), ], This ensures Telescope only runs when you’re working locally, not on your hosted site. Clear your configuration cache After making these changes, run this command to refresh your app’s configuration: bash php artisan config:cache This applies the updates and ensures Telescope stops running in production. What if you need monitoring in production? If you want to keep an eye on your live site’s performance or errors, Telescope isn’t the right tool for production. Instead, consider alternatives like: Laravel Horizon : Great for monitoring queues if you use Laravel’s queue system. Third-party services: Tools like New Relic, Datadog, or Sentry are secure, optimized for production, and won’t expose sensitive data publicly. Next steps You can double-check the Laravel Telescope documentation for more details on configuring it properly. |
Read about laravel telescope |
1 2 3 4 5 6 7 8 ... 16 17 18 19 20 21 22 23 24 (of 32 pages)


