Menu
Portfolio
Blog
Snippets
Login
Confirm
exit_to_app
Close
Entries
library_add
Utility(Event,Mouse): Log Movement X,Y
delete
Utility(txt): Basic Sentence Generator
delete
Utility(Event,Keyboard): Logger
delete
Utility(txt): Expanded Phrase Generator
delete
Scrape(General|Multi): Paginated Crawler
delete
Scrape(Sunbiz|Multi): Get Biz's By Zip
delete
Utility(Time): Test Load Speed
delete
Scrape(General|Single|NLP): Get Keyword Stats
delete
Scrape(General|Single): Get Text Near Links
delete
Utility(Event|Mouse): Press Down,Up, & Dragend
delete
Utility(Number): Between Range
delete
Utility(Event|Window): On Resize
delete
Scrape(Youtube|Single): Crawl Channel Videos
delete
Scrape(General|Multi): Tiny Link Crawler
delete
Utility(Time): Day of Week Report
delete
Utility(Number): Aspect Ratio Size Pairs
delete
Utility(Data): Sort Object Properties
delete
Scrape(General|Single): RiTa Sentences & Words
delete
Scrape(General|Single): Investigate Element Layers
delete
Scrape(NLP|Single): Using Compromise Plugins
delete
Utility(General): Remote Script Loader
delete
Scrape(General|Single|NLP): Compromise RiTa D3
delete
Scrape(General|Multi|Node): Grouped Node Crawler
delete
Scrape(Amazon|Multi): Crawl Product SERPs
delete
Scrape(Amazon|Multi): Get Paginated Brands
delete
Utility (Data): Download JSON in Browser
delete
Utility (Data): JSON AutoTypes
delete
Scrape(YouTube|Single): Video Page
delete
Utility (Text): Make Page Editable
delete
Utility (Text): Article Editor
delete
Scrape(General|Single|Text): Get Text On Click
delete
Utility (File): DnD File Parser (CSV,JSON,TXT)
delete
Scrape(General|Single): Get Links (Examples)
delete
Scrape(General|Single|Text): Get Sentences by Tag
delete
Utility (File): JSON to CSV via D3.js
delete
Scrape(General|Single): Auto Parse by Content Type
delete
Scrape(General|Single): Get Paragraphs & Sentences
delete
Scrape(Amazon|Multi): Get Reviews by ASIN
delete
Scrape(General|Single): Download Images on Page
delete
Utility(Event,Form): Custom Submit Function
delete
Utility (Fetch): Basic API Post Request
delete
Utility (Event,Form,Fetch): Form Data to API
delete
Utility (Time): Async Delay
delete
Utility (Time): Async Repeat Every N Secs
delete
Scrape(coj): Crawl Property SERPs
delete
Utility (Data): Promise Chain
delete
Utility (Fetch): Examples - JSON,Text,HTML
delete
Scrape(Amazon|Single): Product Review NLP
delete
Utility (Nodejs): Streaming Collections
delete
Scrape(Rate My Professor|Multi): Crawl Prof SERPs
delete
Utility (Time): JS Timer
delete
Utility (Text): Proper Case
delete
Scrape(Thingiverse API): Get Things via Search API
delete
Scrape(General|Single|Node): Get Node Attributes
delete
Scrape(General|Single|Node): Node Attributes + Text
delete
Scrape(Thesaurus): Get Words from SERPs
delete
Scrape(Walmart): Crawl Product SERPs
delete
Scrape(free3d): Crawl 3D Model SERPs
delete
Scrape(Aliexpress|Single): Get Products From SERP
delete
Scrape(simplify3d): Crawl Post SERPs
delete
Scrape(Twitter): Crawl Post Feed (infinite scroll)
delete
Scrape(DDuckGo|Single): Get Links from SERP
delete
Scrape(General|Single): Get Tokens String Distance
delete
Scrape(General|Single): Content Report
delete
Scrape(General|Single|Node): Node Recon (CSV)
delete
Utility (File): D3 JSON to CSV
delete
Scrape(coj|Multi): Crawl Property SERPs
delete
Scrape(coj|Single): sidenote
delete
Scrape(General|Single): Recursive Node Crawler
delete
Utility (Event,Window): Scroll to Root ScrollHeight
delete
Scrape(Indeed|Multi): Crawl Job SERPs
delete
Scrape(Thingiverse API): Get Things By Id
delete
Scrape(Thingiverse): Crawl Things by Category
delete
Scrape(Thingiverse API): Get Thing Batches by Id via DnD
delete
Scrape(YouTube|Single): Get Video Playlist
delete
Utility (Data): Join Thing Metrics & Meta
delete
Utility(Data): Get Nested Array Lengths
delete
Utility (Twitter): Hide Followed Profiles
delete
Utility (Time): YYYY-MM-DD HH:MM:SS
delete
Scrape(Thangs|Multi): Crawl 3D Model SERPs
delete
Scrape(PrusaPrints,Multi): Get Prints
delete
Scrape(Reddit,Single): Get Posts
delete
Userscript(Youtube): Scrape Channel Videos
delete
Userscript(Youtube): Tab Manager
delete
Scrape(Sunbiz|Multi): Biz Details
delete
Utility(Data):DnD View Types
delete
Scrape(General|Single|Node): Select Nodes by Attr
delete
Scrape(Aliexpress|Multi) Get Products via API
delete
Utility(Text): Strip Web Page CSS, Script, Events, Media
delete
Scrape(Youtube|Single) Get Subs
delete
Scrape(General|Single): SelectAll ReduceByProp
delete
Scrape(General|Single): SelectAll ReduceMultiProps
delete
Scrape(General|Multi): Tiny Link Crawler + Delay & Node Reports
delete
Scrape(P5|Multi): Get Examples
delete
Scrape(LinkedIn|Single): Find New Connections
delete
UserScript(linkedIn|Single) Get Jobs
delete
Utility (Time): Date From Days Ago
delete
Utility(General|Single) Keep Scrolling
delete
Scrape(YouTube) Videos From Search
delete
Utility(General|Single): getOffset
delete
Utility(Event,Form): Get Data On Form Input
delete
Utility(Event,Element): ResizeObserver
delete
COCO-SSD Object Categories
delete
Scrape(Wikipedia|Multi): What Links Here?
delete
Scrape(DDuckGo|Single): Download Images
delete
Scrape(General|Single|NLP): Compromise nGram
delete
Scrape(PrusaPrints,Multi): Get Prints
Edit Snippet
var collection = []; (async () => { var options = { limit: 57, }; async function* gen() { var i = 0; while (i <= options.limit) { yield i++; }}; for await (let n of gen()) { var res = await fetch("https://www.prusaprinters.org/graphql/", { "headers": { "accept": "application/json, text/plain, */*", "accept-language": "en", "client-uid": "438a1f17-c2db-4c66-a318-46e9d624d922", "content-type": "application/json", "operation": "PrintList", "x-authorization": "" }, "referrer": "https://www.prusaprinters.org/prints?page=0", "referrerPolicy": "no-referrer-when-downgrade", "body": `{\"operationName\":\"PrintList\",\"variables\":{\"filesType\":[],\"ordering\":\"-first_publish\",\"printerIds\":null,\"materialIds\":null,\"nozzleDiameters\":null,\"categoryId\":null,\"onlyFollowing\":null,\"featured\":null,\"includeUserGcodes\":null,\"limit\":500,\"offset\":${n*500}},\"query\":\"query PrintList($limit: Int!, $offset: Int, $categoryId: ID, $materialIds: [Int], $userId: ID, $printerIds: [Int], $ordering: String, $hasModel: Boolean, $filesType: [FilterPrintFilesTypeEnum], $includeUserGcodes: Boolean, $nozzleDiameters: [Float], $weight: IntervalObject, $printDuration: IntervalObject, $onlyFollowing: Boolean, $featured: Boolean, $featuredNow: Boolean, $usedMaterial: IntervalObject) {\\n prints(limit: $limit, offset: $offset, categoryId: $categoryId, materialIds: $materialIds, printerIds: $printerIds, userId: $userId, ordering: $ordering, hasModel: $hasModel, filesType: $filesType, nozzleDiameters: $nozzleDiameters, includeUserGcodes: $includeUserGcodes, weight: $weight, printDuration: $printDuration, onlyFollowing: $onlyFollowing, featured: $featured, featuredNow: $featuredNow, usedMaterial: $usedMaterial) {\\n ...PrintListFragment\\n foundInUserGcodes\\n printer {\\n id\\n __typename\\n }\\n user {\\n rating\\n __typename\\n }\\n __typename\\n }\\n printsCount(categoryId: $categoryId, materialIds: $materialIds, printerIds: $printerIds, userId: $userId, ordering: $ordering, hasModel: $hasModel, filesType: $filesType, nozzleDiameters: $nozzleDiameters, includeUserGcodes: $includeUserGcodes, weight: $weight, printDuration: $printDuration, onlyFollowing: $onlyFollowing, featured: $featured, featuredNow: $featuredNow, usedMaterial: $usedMaterial) {\\n printsCount\\n categoriesCounts {\\n categoryId\\n count\\n __typename\\n }\\n __typename\\n }\\n}\\n\\nfragment PrintListFragment on PrintType {\\n id\\n name\\n slug\\n ratingAvg\\n ratingCount\\n likesCount\\n liked\\n datePublished\\n dateFeatured\\n downloadCount\\n displayCount\\n inMyCollections\\n foundInUserGcodes\\n userGcodeCount\\n userGcodesCount\\n materials {\\n id\\n __typename\\n }\\n category {\\n id\\n path {\\n id\\n name\\n __typename\\n }\\n __typename\\n }\\n modified\\n images {\\n id\\n filePath\\n __typename\\n }\\n filesType\\n hasModel\\n user {\\n id\\n slug\\n avatarFilePath\\n publicUsername\\n __typename\\n }\\n __typename\\n}\\n\"}`, "method": "POST", "mode": "cors", "credentials": "omit" }); var data = await res.json(); collection = await [...collection, ...data.data.prints]; } var ids = new Set(); var uniqCollection = collection.reduce((a,d) => { var prev = ids.size; ids.add(d.id) prev < ids.size ? a.push(d) : null; return a; },[]) const downloadCSV = (data, fileName) => { var d = document; var a = d.createElement('a'); a.href = window.URL.createObjectURL(new Blob([JSON.stringify(data)],{type:'text/csv;charset=utf-8;'})); a.setAttribute('download', `${fileName}.json`); d.body.appendChild(a); a.click(); d.body.removeChild(a); }; downloadCSV(uniqCollection, "prusaPrints_2020-11"); })();