#youtube source code
Explore tagged Tumblr posts
nyansequitur · 4 months ago
Text
Hey you! Arknights player who is totally representative of the playerbase at large? Do you have opinions? Do you want to form opinions on things you never thought about before? Inspired by (stealing directly from) this Tom Scott video:
youtube
Who is the best arknights operator? (best is left ambiguous intentionally, IDC how you vote, although I'd prefer there to be a reason.) The poll is hosted at:
https://arkpoll.nyansequitur.gay/
(Leaderboard will not populate until an op has at least 5 votes one way or another.)
55 notes · View notes
soullessbullshit · 4 months ago
Text
Cassian: Do you ever take cyanide just to feel something?
Fennorian: What?? No!! What is wrong with you??
Cassian: No, no. Hear me out.
Cassian: Don't you feel numb at this point? Being around for so long?
Gwendis: Uhhhhhh...
Cassian: We always recover from injuries, so I just do it every now and then to feel alive again!
Fennorian: That's not normal.
Cassian: It is! It is normal!
Melina: Would this fall under masochism, or is it way past that?
Cassian: Shut the fuck up. What I do in my free time is none of your business.
Gwendis: You're the one who brought this up.
Cassian: I have no idea what you're talking about.
Fennorian: Cassian, I swear to god-
15 notes · View notes
wisefoxluminary · 1 year ago
Text
youtube
Destiel music video I made set to All 2 U (A Motherfucker) from the recent Helluva Boss episode. This video is taken from Dean's perspective as he slowly loses faith in Castiel.
16 notes · View notes
cinemaquiles · 26 days ago
Text
youtube
Um final de filme mais sombrio do que se imagina: "Contra o tempo" - Source Code, 2011
2 notes · View notes
oraclememehacker · 1 year ago
Text
youtube
For some reason this reminds me of @ochazos p5 verse.
5 notes · View notes
redneckdysguys · 1 month ago
Text
100daysofcode #day002
Node package Manager
Native to nodejs installation is npm itself. Its is very robust and get's the job done. But there is a better option. I would not say limitations of native npm is overcome by pnpm and its predecessor yarn. There are added features to npm and not necessarily limitations. I was using yarn until last month when I run into a codebase the was configured with pnpm. I have since used it for any project I have developed. To install pnpm you can visit their documentation, my prefered way is to use powershell or chocolately. Now chocolately or choco is an option when installing nodejs, if you did not install it then use the powershell command.
Visit pnpm and install using your preferred method.
Powershell command - Invoke-WebRequest https://get.pnpm.io/install.ps1 -UseBasicParsing | Invoke-Expression
Chocolately command - choco install pnpm
If you have to install a package manager then get chocolately or sccop. These will allow you to run an upgrade command when there is an update
0 notes
perezzdb · 2 months ago
Video
youtube
DIGIMON SOURCE CODE 数码宝贝:源码 android game first look gameplay
1 note · View note
starwonderz · 3 months ago
Text
youtube
i'm not a little bit scientific i'm nostradamus i am telepathic i think in na-na-na-na-nonreality cause i believe in make believe
0 notes
Video
youtube
What Movie Did The Groundhog Day Plot Best?
0 notes
thecodingbusofficial · 5 months ago
Video
youtube
AI or Human? Detect the Source of Code with AI Code Detector Pro!
0 notes
i-c-u-p · 5 months ago
Text
My life is NOTHING but a minecraft roleplay. every day i wake up and put on my youtuber voice and i turn to my FAKE camera to talk to my FAKE viewers and my FAKE youtuber friends and we ROLELAY and its all FAKE!! NONE OF IT IS REAL!! FUCKKKK FML
0 notes
gantengpermanen · 7 months ago
Text
youtube
Simple beginners guide how to build create WebHID API Electron JS Desktop App for windows 10 & windows 11. Electron webhid api Desktop App html js Script: https://bit.ly/4egIyAw or https://drive.google.com/file/d/1euT1JxtpOgdZwVpA5C1nXOZRZ7bnbsoa/ Electron JS Desktop App Project Tutorial for Beginners: WebHID API Example w/ Source Code
0 notes
cinecois · 8 months ago
Text
youtube
On prend un train explosif avec *SOURCE CODE* Aujourd'hui, c'est le jour de la marmotte à bord d'un train mortel direction le film SOURCE CODE. Un québécois regarde le doublage français du film américain SOURCE CODE (2011). ≡ Passes au Niveau Supérieur sur mon Patreon: https://www.patreon.com/cinecois
1 note · View note
severalpossiblemusiks · 9 months ago
Text
Listen to this and tell me this isn't an anime theme song:
youtube
1 note · View note
oraclememehacker · 1 year ago
Text
youtube
As a massive golden sun fan I want to cry. This makes me so damn happy.
3 notes · View notes
redneckdysguys · 1 month ago
Text
100daysofcode #day001
The npm advantage
As a developer you need all the api's that are available so that you don't have to reinvent the wheel. There is no point in that, npm allows you to reuse code that someone has made into a lib-utility. I call it a lib utility because it's normally a full set of programming api that enables you to achieve a purpose by making you harness the source code that actually makes your life easy. Infact under the hood react itself is a lib-utility but it's seen as a framework altogether. Most JavaScript frameworks leverage the npm system or reusing code. Frameworks like react, svelte, angular, vue.js, solidJS and quik.
Building cross-platform Apps with Electron and React
Above are most frameworks that are mainstream, I did not include nextjs, nuxtjs and preact because are a subset of mainstream frameworks. React was made as a single page application to solve a problem of server roundtrips which had performance issues. In the same way Electron was developed so that web developers that sometimes get a one of desktop application project don't have to go learn another programming language.
Npm package managers
There used to be a package manager called npm which was the native package manager and its very good. Since everyone is on the mission to solve problem, there has been an introduction of yarn and pnpm which is the latest. Pnpm came out in 2022 and its awesome, I will not go into the improvements made in yarn and pnpm but I will say node package manager(npm) is the tooling you need to use to install all you npm into your projects. After you install NodeJS, the base tool you need to develop JavaScript, It has prebuilt api's that allows you to access the filesystem, scientific and arithmetic base and console tools. These modules will be added by default in any node project along with the ones you would like to use.
youtube
0 notes