#programming file types
Explore tagged Tumblr posts
infoanalysishub · 2 days ago
Text
List of All File Extensions and Their Details
Explore the complete list of all file extensions with detailed descriptions categorized by type—documents, images, videos, audio, executables, and more. 🗂️ List of All File Extensions and Their Details: A Complete Guide File extensions are suffixes at the end of filenames that tell your operating system which program should open the file. They help categorize files into types like documents,…
0 notes
charlie-rulerofhell · 2 months ago
Text
just wanted to find one specific piece of information ... and then somehow ended up extracting all nearly 300,000 voicelines of the game, and spent the last two hours listening through all of Samuel's 800. love how he spends the majority of that time either swearing at random people / events, or complaining about the stench or the weather. or dropping some Jewish wisdom.
i also know now that his favourite dish are his mame's hamantaschen, that he once had a lucky knife but lost it, is no early bird (well, given he gets sleep at all), has the funniest battle insults ('God made a joke when he made you!' nearly broke me), got dragged into a mine once by some older boys and wandered around lost in there for a whole day (give me your knife, Sam, where are those fuckers now?), has about a dozen different terms of endearment for Henry and the pettiest exchanges with Hans ('Did he tell you that or did you figure it out yourself?' -- 'Stop the mockery, and answer when a no­bleman asks you something!' -- 'But of course! Forgive me my insolence, my lord!')
gotta say, it was worth it.
35 notes · View notes
roseverdict · 1 year ago
Text
please does anybody have a copy of the second bionicle movie i've scoured the internet for copies of various legalities and cleaned three whole DVDs that should have been it and the only copy i've been able to find that actually plays on my computer is subtly glitched as fuck
here's the most egregious dvd btw
like. look at this thing.
Tumblr media Tumblr media Tumblr media
i think this movie is specifically trying to spite me at this point
(weather update: tentative all hail biomedia project…?)
24 notes · View notes
gothteddiesdotcom · 8 months ago
Text
not to brag about being good at my job but I’ve now developed two separate tools for debugging entirely on my own within my company entirely from scratch without help and A. it makes my job so much fucking easier and B. my boss is thinks im incredible just because im too lazy to want to write the same bits of code over and over just for debugging purposes
#unimportant thoughts#one i wrote 2-3 months ago#but i upgraded it this week to add in even more#and its just. perfect now.#given an id from any of the programs we built and run in our company#i instantaneously return everything about it#its name; what it does; what type of program it is; what server its run on; when it runs; where it connects; the parameters needed to#connect to wherever it connects; whether the program is currently turned on; the last 10 times the program ran; how many minutes each of#those runs took; how many files each of those runs created; whether those runs were successful; code snippets you can copy paste and run in#another window to look at the files created by each of those runs; the files created by the most recent run; thise file names; those file s#sizes; what types of files they are; whether theyre encrypted#how theyre encrypted#all of that and MORE#most of the information was already there but it took fucking 20 minutes to get all the information you needed#and you had to run a bunch of different snippets of code to get all the information and then put it all together#and now you can just fucking pop in the id of the program and .02 of a second later all the information is on your screen#AND IT MAKES MY LIFE SO MUCH EASIER#so. so. so. much. easier.#and then this week I wrote another program so I can compare runtimes of two different runs of the same program together based on how we stor#runtime data in our database#csuse i was tired of going back and forth manually between to different runs to compare#so now i have a program that just takes the ids of two different runs and compares them#doesnt even matter if the checkpoints are different I programmed it to figure out the order automatically and plug in any missing holes#finds the differences in runtime automatically and flags the biggest differences#and I can even customize how much of a difference I care about or to hide things I don’t care about
12 notes · View notes
seveneyesoup · 10 days ago
Text
okay. my homework assignment. is before the summer is over i have to write AND record a song. it can be short, it can be silly, it can be bad, it can be 100 seconds and called “ode to costco hotdog,” but it has to exist. it has to. my promise to myself.
5 notes · View notes
wishfuldeity · 9 months ago
Text
i thought i was just... like... thought computers were cool....... why does typing ":33 :333 meowww mrrp mrrp meoww :33 :3 :333" in morse code give me like, euphoria.
wh
hhello???
... --- --- / ---... ...-- / ---... ...-- ...-- / ---... ...-- / .. -- / .- / .-. --- -... --- - --. .. .-. .-.. / -. --- .-- / .... ..- .... / -.-. --- --- .-.. / -.-.-- -.-.-- / ..-. . . .-.. ... / .-.-.- .-.-.- .-.-.- / -. .. -.-. . / ..--.. / .. -.. -.- / -- . --- .-- .-- / -- .-. .-. .--. / -- . .-- --- .-- .-- / ---... ...-- /
[TRANSLATION: SOO :3 :33 :3 IM A ROBOTGIRL NOW HUH COOL !! FEELS ... NICE ? IDK MEOWW MRRP MEWOWW :3 /END TRANSLATION]
^ i wrote this manually and it look half an hour minimum im so normal
:3 :33 meow
7 notes · View notes
orcelito · 3 months ago
Text
Got jumpscared by my own full legal name showing up in my email notifications bc I forgot I emailed my code to myself today just in case my VM ends up stopping working again (I got nervous & didn't wanna lose my progress lol)
Goldfish level memory retention
& the funny thing is that the email itself is just. This
Tumblr media
Full Legal Name code • hi
#speculation nation#title 'code' email is just 'hi'. with the .c file attached of course#honestly i had a very productive day in lab today. i got the core structure of the program down and made sure it all worked#testing it with One of the sorting algorithms. and it worked!!#the lab is to code functions for different kinds of sorts. like bubble sort selection sort and uhh. some other shit idr rn#and have the functions take timestamps from before and after they run the sorts to calculate the elapsed time#and we have to run this for array sizes of like. 10 50 500 etc etc up to like 50000 or smth? if i remember right.#and then once all that's done we take the output and graph the time elapsed for each type of sort/search per array sizes#so today at lab i made the random array generator function. a swap function. the execution function. bubble sort. and main.#main calls the execution function passing in the array sizes. execution(10); execution(50); etc#execution defines the array of that size. then calls the random number generator to populate the array. then passes it to the sort functions#tested with my one bubble sort function. which finished in like 0.00003 seconds or smth for array size 10#BUT taking the time stamps was tricky. there are a lot of ways to do that. and time(); in c is in full seconds#i ended up asking the TA if he had a recommendation for what to use bc theres a LOT of time functions out there#and full seconds isnt precise enough for this purpose. & he recommended clock()!!#records number of clock ticks which is NOT the same as seconds. but when u divide it by uh. forgetting it rn but it's a constant#that will turn it into actual seconds. clock tics per sec?? smth like that.#so anyways very productive 👍 i just need to set main up to call execution function for all the different array sizes#and then write all the functions for the different sorts/searches. but i have the core structure down with the bubble sort function#(specifically with the time stamps and the print function after) that i will copy-paste for all the other functions#and then inside them i put the basic code. none of it's complicated. all can be found on the internet easy.#SO!!!!! honestly i think itd take me less than an hour to finish. tho plotting out that graph is going to be annoying#something like 6 sizes per 5 sort/search functions. painstakingly copy pasting each one into excel or smth lol#but yea im content with how much ive gotten done. yippee!!!!#now i just need to finish my web programming lab before sunday night. blehhhhh
2 notes · View notes
hua-fei-hua · 8 months ago
Text
today i learned that we weebs are responsible for the existence of the .ass file type. #heritage
#花話#i actually learned this yesterday i've just been cracking myself up over the 'hashtag-heritage' thing ever since#.ass is a subtitle file btw!!! they're what make the really pretty ones with the elaborate typesetting and positioning n stuff#i always thought they did that shit by burning the fonts into the video via aftereffects or smth but it turns out#that while you could burn an ass file to a video for hardsubbing you can apparently just. like it's a text file you can use a text editor#and also turn them off when watching your stuff if you wish and god i was so surprised when i realized you could do that#with the pretty subtitles bc when using online streaming the soft subs were usually so ugly#anyway through a series of wacky hijinks i've ended up coding a subtitle file type converter these last few hours#and in looking up the standards for how .srt .ass and .vtt files are formatted i learned this gem#and you know what!!!! it makes soooo much sense#of course we weebs went off and made a file type for elaborate subtitle styling and positioning and timing#the intersection of art and technology in the weeb fan sphere is actually pretty cool!! there's niche ass software for so much shit#bc of the tendency of weebs to be into tech and stuff#in my spelunkinh around the old web i've also found a bunch of old specialized scanlation software from the 2000s!!! that's so cool!!!!#i just use a notes program and photoshop but they were out there in 2004 or so making photo editors that#could not only open up and edit multiple images in sequence you could page through but also load up your translation txt file#and i think also had specialized tools for cleaning text bubbles and stuff#and also obviously correcting scan issues and straightening things out AND THIS IS SO COOL!!!!#like we did that!! that's how things were done before i got into anime!!! back when i was a little kid; before i was even rlly sentient!!!!!
5 notes · View notes
gothpony666 · 1 year ago
Text
i have been having my usual vivid prophetic dreams abt people that i only sort of know lately and im not sure if i should tell them abt them. its just a little strange to message someone out of the blue abt a dream i had abt them but it also feels urgent and is weighing on my mind.
6 notes · View notes
rosesradio · 9 months ago
Text
...
2 notes · View notes
spectralan0maly · 1 year ago
Text
things that are easy for you are often actually skills that you have. btw.
3 notes · View notes
kraniumet · 1 year ago
Text
cannot get over the kindle mobi 180° turn. first it's "you can only send .mobi/.azw3 files to the kindle. it's our proprietary format and the kindle cannot read epub ^^" then suddenly it's "you cannot send .mobi at all, only epub, now!! or. well. of course the kindle can still read .mobi files. so if you transfer it via usb, they still work. in fact, you still cannot add epub files directly to the system memory because the device doesn't support it. but no .mobi network transfer!!!". like. i bought this device 8 years ago. as far as i know it still has the same hardware. what is this dance
5 notes · View notes
kamek · 2 years ago
Text
i have GOT to be more autistic about my extremely niche interests because apparently nobody else is going to be
9 notes · View notes
ithidunes · 1 year ago
Text
Every time I finish a sketchbook I get consumed with 2-3 days of desire to go through and get pictures & digitally organize all the alpha-draft type thumbnails or comic planning into someplace I could organize my thoughts chronologically better but. Since i haven't done it for any of them yet and i just wrapped up sketchbook #27 it feels, ah. A little daunting lol
3 notes · View notes
recreationalcynodont · 10 months ago
Text
Tumblr media
i turned him into a machine embroidery pattern
please look at this graffiti my sister saw in paris
Tumblr media
107K notes · View notes
fox-bright · 4 months ago
Text
Important! Your pet's RFID chip number might have been disconnected this week.
Is your pet chipped? They should be. Do you know who made the chip?
Pet RFID chips are so small that there's really only room on them for a serial number. When your lost pet is brought to a shelter or a vet's office, they can scan the chip, read that number, and then type it into a program that draws from a series of linked databases to find your name and phone number. That's how they find you, and tell you that Silly Lilly von Wigglesbottom has gone wandering, and she's safe and sound, and would you come get her, please?
Texas-based Save This Life, which provided chips to vets and shelters all across the US, has all at once and abruptly gone dark; their database is just gone. Their customers were not given warning and so did not know to change their registration to another company. A lot of animals have basically become anonymous now.
If you don't know what company you've been using, call your vet's office and ask what pet chip number they have on file. If the chip number starts with 991 or 900164, it's probably a Save This Life chip.
If it turns out yours is one of the affected cases, the chip itself will still be fine! There's no need to add another, or anything like that. You'll just need to transfer the number to another company, and your vet should be able to recommend the one that they like the best.
25K notes · View notes