Create websites with TailwindCSS
Design blocks for your website
Start building the next great SAAS
Alpine & Tailwind UI Library
Plug'n Play Authentication for Laravel
Create website designs with AI
Blog platform for developers
Build a simple static website
21-day program to build a SAAS
Share and store your most common code snippets. Use our snippet explanation generator to use AI to try and explain the code.
export FLUTTER_PATH="/opt/flutter_linux_2.2.1-stable/flutter/bin"
export ANDROID_HOME="/home/amar-nix/Documents/androidSdk"
export ANDROID_TOOLS="/home/amar-nix/Documents/androidSdk/tools"
export ANDROID_PLATFORM_TOOLS="/home/amar-nix/Documents/androidSdk/platform-tools"
export ANDROID_COMMAND_LINE_TOOLS="/home/amar-nix/Documents/androidSdk/cmdline-tools/latest/bin"
export PATH="$PATH:/usr/bin/java"
export JAVA_HOME="/usr/lib/jvm/java-11-openjdk-amd64"
COMPOSER_MEMORY_LIMIT=-1 composer update
User::where('created_at', '>=', Carbon::today())->count();
$currentURL = url()->current();
dd($currentURL);
document.addEventListener("DOMContentLoaded", function(){
// Handler when the DOM is fully loaded
});
window.addEventListener('scroll', function() {
console.log('scrolling');
});
// Alternative version
window.onscroll = function() {
console.log('scrolling');
};
var top = window.pageYOffset || document.documentElement.scrollTop,
left = window.pageXOffset || document.documentElement.scrollLeft;
<div :class="{ 'hidden': ! show }">
docker run -d --name mongo-on-docker -p 27888:27017 -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=secret mongo
$a_date = "2009-11-23";
echo date("Y-m-t", strtotime($a_date));