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 eventName = "dvlive"; | |
| const email = "dvlive.co"; | |
| const baseId = 2098390; | |
| const quantity = 10; | |
| console.log("PromoterLink,Name,Last name, Email"); | |
| for (let i = 1; i <= quantity; i++) { | |
| const link = `https://www.ticketfairy.com/events/${eventName}?r=${baseId + i}`; | |
| const name = `Promoter ${i}`; |
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
| export interface Payload { | |
| original: string; | |
| short: string; | |
| createdAt: string; | |
| } | |
| const generateRandomUrl = (): string => { | |
| const protocols = ['https://', 'http://']; | |
| const domains = ['example.com', 'test.com', 'demo.org', 'sample.net', 'random.io', 'site.co', 'web.dev', 'app.ai']; | |
| const paths = ['/', '/home', '/about', '/contact', '/products', '/services', '/blog', '/api/data', '/user/profile']; |
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 nearai | |
| import json | |
| import requests | |
| hub_url = "https://api.near.ai/v1" | |
| assistant_id = "mrh2003.near/prueba/0.0.2" | |
| # Login to NEAR AI Hub using nearai CLI. | |
| # Read the auth object from ~/.nearai/config.json | |
| auth = nearai.config.load_config_file()["auth"] |
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
| ORG 0 | |
| SJMP MAIN | |
| ORG 30H | |
| MAIN: | |
| MOV P1,#00H | |
| LOOP: | |
| JB P3.3,NEXT | |
| MOV P1,#00H | |
| SJMP LOOP |
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 process from "node:process"; | |
| class Game { | |
| private state: (0 | 1 | 2)[]; | |
| private winningCombinations: number[][]; | |
| constructor() { | |
| this.state = [0, 0, 0, 0, 0, 0, 0, 0, 0]; | |
| this.winningCombinations = [ | |
| // Horizontals |
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
| cool = [2,5,3,6,9] | |
| def insertion_sort(nums): | |
| for i in range(len(nums)): | |
| min_index = i | |
| for j in range(i+1, len(nums)): | |
| if nums[j] < nums[i]: | |
| min_index = j |
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
| { | |
| "metadata":{ | |
| "version":2 | |
| }, | |
| "zaps":[ | |
| { | |
| "id":1, | |
| "title":"HTI to Excel", | |
| "nodes":{ | |
| "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
| import pLimit from "p-limit"; | |
| export interface GitHubAnalyzerResponse { | |
| success: boolean; | |
| evaluation: Evaluation; | |
| } | |
| export interface Evaluation { | |
| id: number; | |
| username: string; |
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
| {"tags":[{"name":"poseidon","description":"FileuploadedviaPoseidonAPI"},{"name":"hti-analysis","description":"FileforHTIanalysisprocessing"},{"name":"api-upload","description":"FileuploadedviaAPI"},{"name":"analysis-job","description":"Analysisjobcmc2ku81b0001s4pj23r48jwz"},{"name":"entity-count","description":"Contains2entitiesforanalysis"}],"context":"FileuploadedforHTIanalysisviaPoseidonplatform","webhookUrl":"http://localhost:3000/api/v1/webhooks/hti/ready","shouldFireHtd":true,"shouldProcess":true,"shouldFireTranscodeOnly":false,"identifiers":[{"kind":"email","email":"[email protected]"},{"kind":"email","email":"[email protected]"}]} |
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
| model User { | |
| id String @id @default(cuid()) | |
| email String @unique | |
| created_at DateTime @default(now()) | |
| updated_at DateTime @updatedAt | |
| api_keys ApiKey[] | |
| quota_account QuotaAccount? | |
| analysis_jobs AnalysisJob[] |
NewerOlder