Version | User Count |
---|---|
12.0 | 56 |
11.4.1 | 81 |
11.4 | 2246 |
11.3.1 | 1378 |
11.3 | 236 |
11.2.6 | 111 |
11.2.5 | 41 |
11.2.2 | 28 |
This file contains hidden or 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
ref: refs/heads/main |
This file contains hidden or 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 setup | |
const admin = require('firebase-admin'); | |
admin.initializeApp( | |
// Your settings | |
) | |
const db = admin.firestore() | |
// Add a document to a collection |
This file contains hidden or 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
<?php | |
/** | |
* @author CMDR SamMakesCode | |
*/ | |
$phrase = "To the jewel that burns on the brow of the mother of galaxies! To the whisperer in witchspace, the siren of the deepest void! The parent's grief, the lover's woe, and the yearning of our vagabond hearts. To Raxxla!"; | |
// Remove non-alpha characters | |
$phrase = str_replace(' ', '', $phrase); |
This file contains hidden or 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"> | |
<body> | |
<!-- In programming you can pass arguments to your functions like this... --> | |
<script> | |
function setUserNameTo(name) { | |
// Do some stuff | |
} | |
setUserNameTo('John'); |
This file contains hidden or 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"> | |
<body> | |
<!-- In programming you can pass arguments to your functions like this... --> | |
<script> | |
function setUserNameTo(name) { | |
// Do some stuff | |
} | |
setUserNameTo('John'); |