Skip to content

jarenadams21/dia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

First Project : Mac Media Blob for Mobile via Swift and Express

{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "MediaPoolItem", "type": "object", "properties": { "id": { "type": "string" }, "filename": { "type": "string" }, "fileSize": { "type": "integer" }, "fileType": { "type": "string", "enum": ["video/mp4"] }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "filePath": { "type": "string" }, "thumbnail": { "type": ["string", "null"] }, "duration": { "type": ["number", "null"] }, "metadata": { "type": ["object", "null"], "properties": { "title": { "type": ["string", "null"] }, "description": { "type": ["string", "null"] }, "tags": { "type": ["array", "null"], "items": { "type": "string" } } } } }, "required": ["id", "filename", "fileSize", "fileType", "createdAt", "filePath"] }

Useful Git Hacks

git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch media-blob/media/bill-gates-deposition.mp3' --prune-empty --tag-name-filter cat -- --all

--> This removed all mentions of the large mp3 file from previous commits (dangerous, do with caution)

About

ideas i have

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published