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[] |
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
name: E2E Tests | |
on: | |
push: | |
branches: [adabat] | |
pull_request: | |
branches: [adabat] | |
jobs: | |
e2e-tests: |
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 { DeepgramClient, type PrerecordedSchema } from "@deepgram/sdk"; | |
import type { SpeakerSegment, Utterance } from "../utils/types"; | |
import { AppError } from "../utils/error"; | |
import type { S3Client } from "bun"; | |
import { FFmpeg } from "@ffmpeg/ffmpeg"; | |
import { randomUUID } from "crypto"; | |
export class AudioService { | |
transcribingConfig: Partial<PrerecordedSchema>; | |
ffmpeg: FFmpeg; |
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
local seat = script.Parent | |
local front_speed = 100 | |
local up_speed = 5 | |
local max_height = 20 | |
local AngularVelocity = script.AngularVelocity | |
local LinearVelocity = script.LinearVelocity |
NewerOlder