Skip to content

Instantly share code, notes, and snippets.

View asifulmamun's full-sized avatar
🏠
Working from home

Al Mamun asifulmamun

🏠
Working from home
View GitHub Profile
@almahmudbd
almahmudbd / free-ai-api.md
Last active July 3, 2026 04:03
Free Ai Api keys and credits for agentic coding.

Free Ai Api keys for agentic coding.

Usage Tips:

  • Do not subscribe to all services at once, as most have limited validity periods for their credits. We recommend testing them one by one, moving to the next only after your current credits are exhausted.
  • Register, verify your account, and claim your credits. then Follow documentation on each site to configure your coding tools.
  • Keep your API keys secure and do not share them publicly. (save or star this gist for future update)

Top sites in this genre -

1. OpenRouter - They have some Free models, but...

@CoolGoose
CoolGoose / webpack.config.js
Created September 23, 2018 15:35
mini css extract scss issue
const path = require("path");
const merge = require("webpack-merge");
const VueLoaderPlugin = require("vue-loader/lib/plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const WebpackBarPlugin = require("webpackbar");
const outputFolder = path.resolve(__dirname, "../public_html/assets");
@miftahafina
miftahafina / console.php
Last active February 3, 2025 19:44
Remove laravel controller with artisan command
<?php
/**
* Copy and paste the code below into your routes/console.php file.
* You can add more command such as 'remove:model', 'remove:middleware', etc if you want,
* just modify the $file_location variable.
*/
Artisan::command('remove:controller {name : Name of the controller}', function ($name) {