Skip to content

Instantly share code, notes, and snippets.

View koddek's full-sized avatar

Koddek koddek

View GitHub Profile

Zero to Mobile Database Hero

Introduction

This Gist is intended to be a list of useful links, related to Luce Carter's talk "Zero to Mobile Database Hero"

Links

  • Slides
  • GitHub Repo
  • MongoDB University - Free learning platform with videos, labs and quizzes on all things MongoDB from beginner to advanced
  • Community Forums - Our forums are the best place to ask questions, share your projects and meet others from MongoDB and the wider community
@arkada38
arkada38 / AAA.md
Last active February 4, 2024 14:39
Using Tailwind CSS v3.2 with Blazor (.Net 6 or above)

Using Tailwind CSS v3.2 with Blazor (.Net 6 or above)

This method works for Blazor Server and Blazor WebAssembly with hot reload, style isolation and tailwind jit compilation.

Setup with using Standalone Tailwind CSS CLI without Node.js

For this method you need added to path Tailwind CSS CLI binary. Read more about Standalone CLI.

Just create a StaticAssets folder in the root of your project with next structure.

@gdurastanti
gdurastanti / parallels-reset.sh
Created August 9, 2017 14:00
Reset Parallels' trial
#!/bin/sh
# Reset Parallels Desktop's trial and generate a casual email address to register a new user
rm /private/var/root/Library/Preferences/com.parallels.desktop.plist /Library/Preferences/Parallels/licenses.xml
jot -w pdu%d@gmail.com -r 1
@codediodeio
codediodeio / database.rules.json
Last active January 28, 2024 19:07
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}
@davidfowl
davidfowl / dotnetlayout.md
Last active May 23, 2024 10:58
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/