CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

20 September, 2024

Failed to install 'cordova-plugin-firebase': CordovaError: Uh oh

 Programing Coderfunda     September 20, 2024     No comments   

I had follow these steps to install an configure firebase to my cordova project for cloud messaging. a href="https://medium.com/@felipepucinelli/how-to-add-push-notifications-in-your-cordova-application-using-firebase-69fac067e821https://medium.com/@felipepucinelli/how-to-add-push-notifications-in-your-cordova-application-using-firebase-69fac067e821br...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

pyspark XPath Query Returns Lists Omitting Missing Values Instead of Including None

 Programing Coderfunda     September 20, 2024     No comments   

I have a PySpark DataFrame with a column containing XML strings, and I'm using XPath queries with absolute paths to extract data from these XML strings. However, I've noticed that the XPath queries return lists that omit values if they are...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

SQL REPL from within Python/Sqlalchemy/Psychopg2

 Programing Coderfunda     September 20, 2024     No comments   

It's helpful to have a DB CLI available for writing quick raw SQL queries. Suppose that the 1 minute it takes to remind myself how to type the correct version of psql postgresql://username@localhost:5432 is simply too long. Is there any convenience...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

MySql Explain with Tobias Petry

 Programing Coderfunda     September 20, 2024     No comments   

--- This week, we welcome Tobias Petry to the Laravel Creator Series show to discuss his journey into database optimization, the development of his MySQL Explain tool, and the acquisition of the domain mysqlexplain.com. Tobias also shares...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

How to combine information from different devices into one common abstract virtual disk? [closed]

 Programing Coderfunda     September 20, 2024     No comments   

Is it possible to create a program that will connect hard drives of computers via the Internet and combine this data into one virtual disk? I don't know how to implement this in practice. I need to create a program that can combine computers...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

19 September, 2024

AdminJS not overriding default dashboard with custom React component

 Programing Coderfunda     September 19, 2024     No comments   

So, I just started with adminjs and have been trying to override the default dashboard with my own custom component. I read the documentation and I don't think I am doing anything wrong? yet it still wont load the component. I started with...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Campfire Coders (The post-Laracon-'24 recap episode!)

 Programing Coderfunda     September 19, 2024     No comments   

submitted by /u/JerseyMilker [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Why ngModel doesn't works on the last version of Angular 17?

 Programing Coderfunda     September 19, 2024     No comments   

I am trying to make a form in my angular app, but when i want to implement ngModel on my form : Connexion Mot de passe oublie ? Se Connecter I have this error : NG8002: Can't bind to 'ngModel' since it isn't a known property...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Fetch PHP is a Lightweight HTTP Library Inspired by JavaScript's fetch()

 Programing Coderfunda     September 19, 2024     No comments   

--- Fetch PHP is a lightweight HTTP library inspired by JavaScript's fetch, bringing simplicity and flexibility to PHP HTTP requests. It uses the Guzzle client behind the scenes, offering synchronous and asynchronous requests with an easy-to-use...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Asking random PHP questions at Laracon

 Programing Coderfunda     September 19, 2024     No comments   

submitted by /u/pronskiy [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

18 September, 2024

window.location.replace() is not working

 Programing Coderfunda     September 18, 2024     No comments   

just wanna ask why does window.location.replace is not working in my page. I've been working on it for weeks. It works fine on my other pages, although those pages have DevExpress components, but in this particular page where I am only using...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

My first Laravel package - Translation checker for Laravel

 Programing Coderfunda     September 18, 2024     No comments   

Hey everyone! I have created my first Laravel package, Translation Checker! It's designed to simplify the process of managing translations in your lang folders, so you no longer need to manually add new translations whenever you add a new translation string. I built this into a package because it solved a personal need, and gave me a chance to...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Windows 10 Intellij 2024.2.1 Spring boot WebFlux Unit test failed normally it's work fine. I have a exit code -1

 Programing Coderfunda     September 18, 2024     No comments   

@ExtendWith(MockitoExtension.class) class XXXXXXXTest { private YYYYRule rule; @Mock private ZZZZService zzzzService; @BeforeEach void setUp() { rule = new YYYYRule(zzzzService); } @Test void shouldWork() { RuleEngineContext context =...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Validate Console Command Input With the Command Validator Package

 Programing Coderfunda     September 18, 2024     No comments   

--- The Command Validator package by Andrea Marco Sartori makes validating the input of console commands a cinch using Laravel's beloved Validator. All the Laravel Validator rules you know and love work with this package, along with any...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

using type parameters in generic constraints in TypeScript

 Programing Coderfunda     September 18, 2024     No comments   

I have the following ts code in many places: (note here's a typescript playground with the example) let filtered = items.filter(item => item.title.toLowerCase().includes(search.toLowerCase()) || item.name.toLowerCase().includes(search.toLowerCase())...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

17 September, 2024

FINDSTR' is not recognized as an internal or external command

 Programing Coderfunda     September 17, 2024     No comments   

Hello I trying to install jmeter I type cd C:\apache-jmeter-2.13\bin C:\apache-jmeter-2.13\bin>jmeter.bat And i receive this message FINDSTR' is not recognized as an internal or external command Not able to find Java executable or...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Can `postMessage` messages get lost/dropped e.g. if recipient's main thread is coincidentally blocked at the time it should have received it?

 Programing Coderfunda     September 17, 2024     No comments   

Context: I'm tracking down a hard-to-replicate bug related to messages between frames. One thing I'm mildly suspicious of is that messages between the main frame and an iframe are sometimes not being sent successfully. I.e. messages are...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

I built a free and public presentation tool called Simple Slides using Laravel/Filament/Inertia/Vue, and I wanted to share it

 Programing Coderfunda     September 17, 2024     No comments   

Hey everyone, I know no-one likes self-promotion, and I genuinely am trying to not make it about that. We talk a lot about Filament and Inertia here, and I built a free-to-use (and open-source, since it's public on my GitHub) web application that uses these tools heavily - and I just wanted to share it. Whether you want to use the tool, or just want...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

TemPHPest PHP Extension for VSCode

 Programing Coderfunda     September 17, 2024     No comments   

--- TemPHPest is an extension for Visual Studio Code to improve writing PHP in VS Code. Created by Liam Hammett, this package adds rich PHP features that will enhance the experience tremendously while writing PHP: TemPHPest is an extension...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

How does StackOverflow optimise the performance for the display of the questions?

 Programing Coderfunda     September 17, 2024     No comments   

I am trying to learn C#.net to program a web app. And having learned that stackoverflow uses C#.net I am happy to discover it. I noticed that at the home page or at the questions section, whenever I refresh the page. The page always returns...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

16 September, 2024

Laravel Ai Package

 Programing Coderfunda     September 16, 2024     No comments   

I’ve broken ground on a AI package for Laravel. https://github.com/jordandalton/laravelai Currently supports Anthropic/Claude message creation, even a AI validation rule. Looking forward to your feedback. submitted by /u/jdcarnivore [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel needs an official openapi implementation

 Programing Coderfunda     September 16, 2024     No comments   

Hi, i just want to discuss the state of openapi documentation in laravel. As it stands many if not all of the big frameworks have openapi integration, and its pretty straighyfoward, without much hassle or just little api docs. Still, laravel, being so popular has no such implementation and i think this needs to be a priority for the team. There...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Clear cache on each iteration - JMeter

 Programing Coderfunda     September 16, 2024     No comments   

Should we clear on each iteration in our load scenario in jmeter Original time in browser : 5 seconds When I check Clear cache each iteration: 5 seconds When I uncheck Clear cache each iteration: 100 milliseconds Please suggest what should...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Building Multiplayer Minesweeper with Laravel, Livewire and Reverb

 Programing Coderfunda     September 16, 2024     No comments   

--- Writing PHP was my first venture into web programming some 20 years ago. WordPress, Joomla, Drupal, Zend, you name it I probably had shipped something in it. I took a step away from all that professionally around a decade ago and...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Python httpx.get or requests.get much slower than cURL for this API - why?

 Programing Coderfunda     September 16, 2024     No comments   

For a home automation project I am trying to pull train delay data for our magestically unreliable commuter trains. An API wrapper exists, with cURL examples. These work fine, but both Python's requests.get and httpx.get are slow to pull data...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

15 September, 2024

Different ways of passing a variable by reference?

 Programing Coderfunda     September 15, 2024     No comments   

I want to pass a variable to a function and have the function change the value. I know I can do this as an object but am wondering if there is some way to do this that I haven't thought of. This is what I want to do, but it doesn't work...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Weekly /r/Laravel Help Thread

 Programing Coderfunda     September 15, 2024     No comments   

Ask your Laravel help questions here. To improve your chances of getting an answer from the community, here are some tips: * What steps have you taken so far? * What have you tried from the documentation? * Did you provide any error messages you are getting? * Are you able to provide instructions to replicate the issue? * Did you provide a...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Convert CSV to REST API

 Programing Coderfunda     September 15, 2024     No comments   

Convert your CSV to a fast, searchable, REST API with my new tool. Check it out and let me know what you think. submitted by /u/jdcarnivore [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

How to consider daylight savings time when using cron schedule in Airflow

 Programing Coderfunda     September 15, 2024     No comments   

In Airflow, I'd like a job to run at specific time each day in a non-UTC timezone. How can I go about scheduling this? The problem is that once daylight savings time is triggered, my job will either be running an hour too soon or an hour...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

I dug through Laravel's new `defer()` helper to find out what's powering them if not queues.

 Programing Coderfunda     September 15, 2024     No comments   

submitted by /u/amitmerchant [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

14 September, 2024

An auth helper package for Laravel HTTP Client

 Programing Coderfunda     September 14, 2024     No comments   

I really like the built in HTTP Client in Laravel. It makes it so quick and easy to make calls to external services. But a common thing for me to solve when building applications with Laravel is simple authentication with external API:s. Especially OAuth2 or API:s that is using refresh tokens to fetch short lived access tokens. I was also very surprised...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Error when i run commend php composer dump-autoload

 Programing Coderfunda     September 14, 2024     No comments   

Illuminate\Foundation\ComposerScripts::postAutoloadDump @php artisan package:discover --ansi Error Class "Composer\InstalledVersions" not found at vendor/maatwebsite/excel/src/Cache/CacheManager.php:43 39▕ * @return MemoryCache 40▕ */ 41▕...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Should Laravel introduce AI validation rules into core?

 Programing Coderfunda     September 14, 2024     No comments   

I think this could be a great addition. Would you use it? submitted by /u/jdcarnivore [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Where to find the latest version of google-api-services-gmail maven?

 Programing Coderfunda     September 14, 2024     No comments   

I am trying to find the latest version of the google-api-services-gmail api. At https://central.sonatype.com/artifact/com.google.apis/google-api-services-gmail I see 1-rev20240520-2.0.0 which 'sounds' right. But the place where I usually get...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

I am trying to insert a timestamp from one spreadsheet to another spreadsheet

 Programing Coderfunda     September 14, 2024     No comments   

I have two spreadsheets, we will call them Active Spreadsheet (where the code is being implemented) and Target Spreadsheet (where the timestamps go) The Active Spreadsheet will have data entered on sheet "Week1" into column D starting at row...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

13 September, 2024

Different plots of marginal effects with interaction term and offset when using different packages

 Programing Coderfunda     September 13, 2024     No comments   

I'm trying to understand why when I plot marginal effects using different packages I get different plots. Admittedly, I suspect it's because I do not understand how data transformations and offsets are being handled by the respective packages....
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel Singletons Can Be Dangerous in Long Living Processes

 Programing Coderfunda     September 13, 2024     No comments   

submitted by /u/DutchBytes [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Stop using arrays

 Programing Coderfunda     September 13, 2024     No comments   

submitted by /u/lyotox [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laravel Herd Adds Forge Integration, Dump Updates, and More in v1.11

 Programing Coderfunda     September 13, 2024     No comments   

--- Laravel Herd released v1.11 this week, a significant update that includes Laravel Forge integration, sharing Herd project configuration across a team, a convenient profiler integration, and more: Laravel Herd v1.11 Main Features ...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

What’s New in Laravel 11.23: A Summary

 Programing Coderfunda     September 13, 2024     No comments   

submitted by /u/codingtricks [link] [commen...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

12 September, 2024

Excel VBA Selecting the files xxx_Before.log then xxx_After.log

 Programing Coderfunda     September 12, 2024     No comments   

Main goal is to select Tag1_Before.log then Tag1_After.log (The name of the files will be different but there will definitely have a before or after in the name of the files). Currently the files are being selected in alphabetical order because...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

✅ Command Validator: validate the input of console commands

 Programing Coderfunda     September 12, 2024     No comments   

Command Validator is a Laravel package to validate the input of console commands. ✅ https://github.com/cerbero90/command-validator The validation of our command arguments and options is just one trait away! 🙌 https://preview.redd.it/018z0tn9pfod1.png?width=1748&format=png&auto=webp&s=e523f7bd24f8c4b94c9a08b1f19a383a699982cb...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Invalid Grant Error with MSAL in Next.js - Insufficient Permissions (AADB2C90205)

 Programing Coderfunda     September 12, 2024     No comments   

I am implementing login functionality in my Next.js application using Azure AD B2C and the MSAL library. However, I am encountering the following error when attempting to log in: { "error": "invalid_grant", "error_description": "AADB2C90205:This...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Laracon US Keynote Framework Updates Are Now In Laravel 11.23

 Programing Coderfunda     September 12, 2024     No comments   

--- The Laravel team released v11.23 this week, with the Laracon US 2024 open-source updates like defer(), concurrency, contextual container attritubes, and more. Laracon 2024 Updates Taylor Otwell contributed all of the goodies...
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Meta

Popular Posts

  • Vue3 :style backgroundImage not working with require
    I'm trying to migrate a Vue 2 project to Vue 3. In Vue 2 I used v-bind style as follow: In Vue 3 this doesn't work... I tried a...
  • SQL ORDER BY Keyword
      The SQL ORDER BY Keyword The ORDER BY keyword is used to sort the result-set in ascending or descending order. The ORDER BY keyword sorts ...
  • Enabling authentication in swagger
    I created a asp.net core empty project running on .net6. I am coming across an issue when I am trying to enable authentication in swagger. S...
  • failed to load storage framework cache laravel excel
       User the export file and controller function  ..         libxml_use_internal_errors ( true ); ..Good To Go   public function view () : ...
  • AdminJS not overriding default dashboard with custom React component
    So, I just started with adminjs and have been trying to override the default dashboard with my own custom component. I read the documentatio...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (68)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • September (100)
  • August (50)
  • July (56)
  • June (46)
  • May (59)
  • April (50)
  • March (60)
  • February (42)
  • January (53)
  • December (58)
  • November (61)
  • October (39)
  • September (36)
  • August (36)
  • July (34)
  • June (34)
  • May (36)
  • April (29)
  • March (82)
  • February (1)
  • January (8)
  • December (14)
  • November (41)
  • October (13)
  • September (5)
  • August (48)
  • July (9)
  • June (6)
  • May (119)
  • April (259)
  • March (122)
  • February (368)
  • January (33)
  • October (2)
  • July (11)
  • June (29)
  • May (25)
  • April (168)
  • March (93)
  • February (60)
  • January (28)
  • December (195)
  • November (24)
  • October (40)
  • September (55)
  • August (6)
  • July (48)
  • May (2)
  • January (2)
  • July (6)
  • June (6)
  • February (17)
  • January (69)
  • December (122)
  • November (56)
  • October (92)
  • September (76)
  • August (6)

Loading...

Laravel News

Loading...

Copyright © 2025 CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda