#types of programming languages
Explore tagged Tumblr posts
howlsofbloodhounds · 3 days ago
Text
I wonder if killer ever compliments people on how well they’re “coded” or “programmed.” Especially people that tend to put on masks in some way, such as the way epic often copes through humor, for example.
85 notes · View notes
rabbiteclair · 8 months ago
Text
legally i should not say that I'm gonna wring the neck of whoever wrote this code, but for the record if I did I feel that it would be justified
38 notes · View notes
cosmogyros · 2 months ago
Text
.
#wow. i just tried to make a very simple image edit#and i was so utterly incapable of getting any image editing app to do ANYTHING i wanted that it put me into a blind fury#like i literally had to get up and walk away and make a cup of tea so i wouldn't throw my laptop against the wall#it's very rare that i discover something i am SO bad at that it causes me this much frustration#i guess it's good to be reminded of this feeling now and then#probably many of the things that are easy for me feel this way to other people#whether it's something i'm really good at like language-related stuff#or something i suck at but only find mildly annoying like math#or something i'm mid at but still find interesting and enjoyably challenging like programming#there's probably some folks out there who feel about it the same way i feel about image editing#like frustrated almost to the point of tears and genuinely ready to stab someone in the chest out of sheer anger#and legit all i wanted to do was make part of an image transparent and overlay it on another image#that would then show through in the transparent part of the top layer :')#this is probably so easy for some of y'all. i am very humbled :(#anyway it's interesting that most types of apps – no matter what they're for – are immediately intuitive to me#whether it's an app for language-learning; coding; writing; reading; music; you name it. it tends to make sense to me#i don't know if the apps i have for images (firealpaca and sketchbook) are just particularly badly designed#or if it's normal and traditional for art app ideas of 'intuitive' to be very different from those of most other apps#(and like... i have done a lil bit of digital art before! i've worked with layers and all that! and i STILL find it this mystifying!)#cosmo gyres#anyway. just venting. please ignore
5 notes · View notes
aceoffangirls · 24 days ago
Text
Being in a english speaking country that is not the UK or USA can be weird because majority of the time I use like the UK spelling and pronunciation but every now and then I use American Spelling...
4 notes · View notes
casualbystander98 · 11 months ago
Text
it is the dumbest pet peeve of mine but if I see one more "hypno programming" kink post with nonsense pseudocode in it I will bake a menagerie of cakes
9 notes · View notes
bucephaly · 1 year ago
Text
Tumblr media
@alexclaain people can pass down language to people other than their children lol
'Will pressure be applied to keep the culture alive' what do you think is happening right now. I'm confused, do you think we just exist in individual nuclear families. Also, these kids could still become teachers and mentors without having children
15 notes · View notes
ponyatowski · 3 months ago
Text
so ive been to london for the (kindof) very first time as a conscious human being and man it is like. i can’t articulate all the feelings ive been having but its making me REALLY emo because Wow heres a city that seemingly works!
#🦆#like ive traveled to a fair share of places#all of them europe so. its just. jesus#i get why my father as a sad kid living in a communist country would spend literally months on end there working shit jobs#ive been spoonfed the english language basically since i was a toddler and putting it to use was fun#and how is the architecture not fuckign. cube and graffiti type Penis#im not kidding ive learned more on this 4 day trip abt art than#during 4 years in highschool#WHATEVER im so MAD because the reason it’s allowed to prosper is 99% colonialism and it makes me want to rip my skin off because HOW is this#city so. everything. ive never been to nyc but is this how it feels? like the world is so small and so large at the same time#they can just do everything there. make all kinds of shit possible. create functional public transport#especially re: warsaw its soooo fucking funny but also not like its made me feel even worse for her#or maybe like. even more frustrated#because wow we are like so ass#eye twitching. how can you just fucking not utilize the river that YOU ARE PROGRAMMED TO LIVE IN PROXIMITY OF#and its so fucking ugly guyssssss i know we can jerk off to soviet blocks all we want but its a copeeeee its such a fucking cope#like come on how is it possible for random ass town from the prussian partition number 73638468 to STILL be prettier than the fucking#CAPITAL.#how after all these years this city is still a corpse that people just pile the most vomit inducing urban architecture#upon#we cant have anythingggggggg if you want to ser pre war architecture in warsaw you can maybe admire a beautiful modernist cube with shrapnel#holes the size of your fists#everything else that has been reduced to gravel in ww2 is currently making up a very nice park in a different part of town#and whats even the point of building something else if were just gonna get bombed again but this time crazy TWIST its the russians and#another reset for wwa#i’ll probably delete this in the morning srry just had to indulge in a bit of doomerism on a friday evening
3 notes · View notes
pucellerie · 4 months ago
Text
how to not destroy everything & everyone in my vicinity when my subtitles keep getting messed up on VLC tutorial google wikihow quora reddit
4 notes · View notes
1o1percentmilk · 2 years ago
Text
i actually think hatori is more of an electrical/hardware engineer than an informatics/information technology/software engineering person
13 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
vijaytechupdates · 2 years ago
Text
youtube
2 notes · View notes
vanilla-voyeur · 2 years ago
Text
Very amused every time someone discovers the ultimate way to do OOP in its truest, most polymorphic, most object-oriented form and its just immutable classes with public instance variables and no methods and no inheritance being transformed through singleton classes with no instance variables and one side-effect-free method, potentially taking a function as a parameter or returning another single method class. Brother you just reinvented functional programming.
4 notes · View notes
guzscode · 11 months ago
Text
Dislate DevLog 1: When Comparing Size Matters
Daily Blogs 277 - Aug 8th, 12.024
Something which I noticed today while programming the project-dislate's database interface, is how much the files that I write got bigger. When I was starting programming, most files didn't pass the 100 lines most of the time. I still remember doing my first "real" project, a simple To-Do list application called ToToday (which I actually used when I was starting to organize my life), which I made 2 years ago and felt really proud on how I made the code "scalable" to add more features and just use the LocalStorage API for everything. The Tasks' Component I specially felt proud about, and even showed to friends them, showing the amount of lines and how much it was scalable and organized.
However, seeing now, even though the files have around 300 lines of code, the actual logic of the code is just around 120 lines, the rest is just HTML and CSS. Not only that, but last year, as an experiment, I created another To-Do list application in just one HTML file, which ended having 350 lines of code for the entire application (this kinda also shows how much JavaScript, and its ecosystem has the tendency of over-engineering a log of things).
And today, I actually wrote just a database interface, and it ended up with 300 lines of code before I was even having time of completing it today. All these lines are code, pretty much. And I asked me "why?", and pretty much already had the answer in mind: I'm doing more complex things now.
I hardly look backwards to compare myself, which I know is a problem and I probably should do it more since it really shows me how much I improved as a programmer/Software Engineer. I even call myself now a "Software Engineer" instead of "Programmer", because that what I am, I solve problems now, I make actual software that solves problems instead of just gluing things together and calling it a day. Even though number of lines doesn't really represent quality or even improvement, the idea that nowadays this amount of code every day is normal and the bare minimum for a small part of the projects that I do, I would say that it shows that I'm improving and actually creating things. Projects and codebases aren't big when the only thing you're doing is gluing libraries and frameworks together, I would say. If you are solving problems, if you're making business logic, you will need to write it and write more code.
That's why I always recommend making and write projects that you will use, that you actually care, instead of just following tutorials and making To-Do apps. Actual software is hard and big most of the time, but writing them can be fulfilling. I acknowledge that my first To-Do app was a start and a good step in actually trying to complete something, but I fell a lot happier seeing myself now actually persuading bigger challenges. And I hope that you go pursue bigger challenges.
Today's artists & creative things Music: Road To Hide - by ZeRO
© 2024 Gustavo "Guz" L. de Mello. Licensed under CC BY-SA 4.0
1 note · View note
jobsbuster · 1 year ago
Text
0 notes
leveragehunters · 8 months ago
Text
CoPilot in MS Word
I opened Word yesterday to discover that it now contains CoPilot. It follows you as you type and if you have a personal Microsoft 365 account, you can't turn it off. You will be given 60 AI credits per month and you can't opt out of it.
The only way to banish it is to revert to an earlier version of Office. There is lot of conflicting information and overly complex guides out there, so I thought I'd share the simplest way I found.
How to revert back to an old version of Office that does not have CoPilot
This is fairly simple, thankfully, presuming everything is in the default locations. If not you'll need to adjust the below for where you have things saved.
Click the Windows Button and S to bring up the search box, then type cmd. It will bring up the command prompt as an option. Run it as an administrator.
Paste this into the box at the cursor: cd "\Program Files\Common Files\microsoft shared\ClickToRun"
Hit Enter
Then paste this into the box at the cursor: officec2rclient.exe /update user updatetoversion=16.0.17726.20160
Hit enter and wait while it downloads and installs.
VERY IMPORTANT. Once it's done, open Word, go to File, Account (bottom left), and you'll see a box on the right that says Microsoft 365 updates. Click the box and change the drop down to Disable Updates.
This will roll you back to build 17726.20160, from July 2024, which does not have CoPilot, and prevent it from being installed.
If you want a different build, you can see them all listed here. You will need to change the 17726.20160 at step 4 to whatever build number you want.
This is not a perfect fix, because while it removes CoPilot, it also stops you receiving security updates and bug fixes.
Switching from Office to LibreOffice
At this point, I'm giving up on Microsoft Office/Word. After trying a few different options, I've switched to LibreOffice.
You can download it here for free: https://www.libreoffice.org/
If you like the look of Word, these tutorials show you how to get that look:
www.howtogeek.com/788591/how-to-make-libreoffice-look-like-microsoft-office/
www.debugpoint.com/libreoffice-like-microsoft-office/
If you've been using Word for awhile, chances are you have a significant custom dictionary. You can add it to LibreOffice following these steps.
First, get your dictionary from Microsoft
Go to Manage your Microsoft 365 account: account.microsoft.com.
One you're logged in, scroll down to Privacy, click it and go to the Privacy dashboard.
Scroll down to Spelling and Text. Click into it and scroll past all the words to download your custom dictionary. It will save it as a CSV file.
Open the file you just downloaded and copy the words.
Open Notepad and paste in the words. Save it as a text file and give it a meaningful name (I went with FromWord).
Next, add it to LibreOffice
Open LibreOffice.
Go to Tools in the menu bar, then Options. It will open a new window.
Find Languages and Locales in the left menu, click it, then click on Writing aids.
You'll see User-defined dictionaries. Click New to the right of the box and give it a meaningful name (mine is FromWord).
Hit Apply, then Okay, then exit LibreOffice.
Open Windows Explorer and go to C:\Users\[YourUserName]\AppData\Roaming\LibreOffice\4\user\wordbook and you will see the new dictionary you created. (If you can't see the AppData folder, you will need to show hidden files by ticking the box in the View menu.)
Open it in Notepad by right clicking and choosing 'open with', then pick Notepad from the options.
Open the text file you created at step 5 in 'get your dictionary from Microsoft', copy the words and paste them into your new custom dictionary UNDER the dotted line.
Save and close.
Reopen LibreOffice. Go to Tools, Options, Languages and Locales, Writing aids and make sure the box next to the new dictionary is ticked.
If you use LIbreOffice on multiple machines, you'll need to do this for each machine.
Please note: this worked for me. If it doesn't work for you, check you've followed each step correctly, and try restarting your computer. If it still doesn't work, I can't provide tech support (sorry).
3K notes · View notes
bnncat · 2 years ago
Text
JAVASCRIPT YOUR ARE MY FUCKING ENEMY
0 notes