This is a sample markdown file designed to test how your frontend application renders various markdown elements.
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
| This is a test |
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
| import sys | |
| import ollama | |
| import chromadb | |
| import requests | |
| from datetime import datetime | |
| # Fetch data from Culver's API | |
| response = requests.get('https://culvers-fotd.joe.workers.dev/') | |
| data = response.json() |
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
| addEventListener('fetch', event => { | |
| event.respondWith(handleRequest(event.request)); | |
| }); | |
| async function handleRequest(request) { | |
| const url = 'https://www.culvers.com/api/locator/getLocations?lat=43.0386&long=-87.9067&radius=40233&limit=100&layer='; | |
| try { | |
| const response = await fetch(url); | |
| const data = await response.json(); |
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
| const axios = require('axios'); | |
| const schedule = require('node-schedule'); | |
| const { instanceUrl, account, checkInterval, mentions, accessToken } = require('./config'); | |
| const fetchMentions = async () => { | |
| try { | |
| const response = await axios.get(`${instanceUrl}/api/v1/notifications`, { | |
| headers: { | |
| Authorization: `Bearer ${accessToken}`, | |
| }, |
-
There are two zip files on the Oracle website. Download them and unzip them into "/opt/oracle/instantclient_19_8". You will need to use "Grant Temporary Admin Rights" to create the folder.
b. [SDK Package
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
| { | |
| "JavaScript": { | |
| "name": "JavaScript", | |
| "slug": "javascript", | |
| "description": "JavaScript is a dynamic programming language, widely used for web development and in various non-browser environments.", | |
| "homepage": "https://developer.mozilla.org/en-US/docs/Web/JavaScript", | |
| "icon": "['fab', 'js']" | |
| }, | |
| "HTML": { | |
| "name": "HTML", |
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
| const admin = require('firebase-admin'); | |
| const fs = require('fs'); | |
| const { geohashForLocation } = require('geofire-common'); | |
| // Initialize Firebase Admin | |
| const serviceAccount = require('./firebase-adminsdk.json'); | |
| admin.initializeApp({ | |
| credential: admin.credential.cert(serviceAccount) | |
| }); | |
| const db = admin.firestore(); |
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
| // Make sure to run "chmod +x taskling.js" before doing anything | |
| // To add a task, use node taskling.js -add 'Your task here'. | |
| // To remove a task, use node taskling.js -rm 'Task to remove'. | |
| // To display all tasks, simply run node taskling.js. | |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const filePath = path.join(__dirname, 'taskling.txt'); | |
| // Function to add a task |
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 3 columns, instead of 6 in line 1.
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
| County,County Seat,Zip Codes | |
| Adams, Friendship, 53934, 53932, 53927, 53926 | |
| Ashland, Ashland, 54101, 54102 | |
| Barron, Barron, 54812, 54813, 54816 | |
| Brown, Green Bay, 54301, 54303, 54305, 54307, 54309, 54311, 54312, 54315, 54316, 54318, 54320, 54325, 54326 | |
| Buffalo, Buffalo City, 54415, 54416, 54419 | |
| Burnett, Grantsburg, 54840 | |
| Calumet, Brussels, 54724, 54725, 54726, 54733, 54748, 54749, 54751, 54752 | |
| Chippewa, Chippewa Falls, 54729, 54728, 54727, 54730, 54726, 54725, 54719 | |
| Clark, Neillsville, 54458, 54455, 54456 |
NewerOlder