This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Responsive Nav</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script> | |
function toggleNavbar(collapseID) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('node:fs') | |
const path = require('node:path') | |
const crypto = require('node:crypto') | |
const companion = require('@uppy/companion') | |
require('dotenv').config({ path: path.join(__dirname, '.env') }) | |
const app = require('express')() | |
const DATA_DIR = path.join(__dirname, 'tmp') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
datasource db { | |
provider = "mysql" | |
url = "mysql://exampleuser:examplepass@localhost:2234/exampledb" | |
} | |
model WpComment { | |
comment_ID Int @id | |
commentAgent String @map("comment_agent") | |
commentApproved String @map("comment_approved") | |
commentAuthorEmail String @map("comment_author_email") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatefulWidget { | |
@override | |
_MyAppState createState() => _MyAppState(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is the c configuration file for the keymap | |
Copyright 2012 Jun Wako <[email protected]> | |
Copyright 2015 Jack Humbert | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 2 of the License, or | |
(at your option) any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include QMK_KEYBOARD_H | |
#define _BASE 0 | |
#define _RAISE 1 | |
#define _LOWER 2 | |
#define _SHORTC 3 | |
// Fillers to make layering more clear |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
firebase functions:config:set env="$(cat env.json)" | |
firebase functions:config:unset env && firebase functions:config:set env="$(cat env.json)" | |
example env.json | |
{ | |
"web": { | |
"id": "value", |
NewerOlder