.Net MAUI android write json file
15:13
sql insert update delete records
14:40
C++ STL Vector
7:09
Жыл бұрын
C++ STL Arrays
5:28
Жыл бұрын
C++ Arrays
9:00
Жыл бұрын
Bind Lists in Net MAUI
14:19
Жыл бұрын
Build Java Docker Container
13:08
Жыл бұрын
Intro to Docker
19:32
Жыл бұрын
Kindling
17:40
Жыл бұрын
breadcrumbs
23:24
Жыл бұрын
Read JSON using Jackson in Java
8:52
Write JSON using Jackson in Java
8:34
Java Craps Game
20:41
2 жыл бұрын
NET MAUI Read TextFile into ListView
17:16
NET MAUI Persistent Preferences
8:58
NET MAUI Dynamic Resources
9:02
2 жыл бұрын
NET MAUI Flyout Page
4:30
2 жыл бұрын
NET MAUI Static resources
7:52
2 жыл бұрын
.Net MAUI localization
11:02
2 жыл бұрын
Java Variables
11:17
2 жыл бұрын
Java Float Math
2:15
2 жыл бұрын
Java Output
14:48
2 жыл бұрын
C++ STL Map from CSV
18:52
2 жыл бұрын
Xamarin Respond to Checkbox in code
6:38
Пікірлер
@YevgeniyDeyev
@YevgeniyDeyev 15 күн бұрын
Amazing video, helped me to solve problem with my testing project. Thank you so much, dear Professor Cottrell!!
@Jlndvr
@Jlndvr 17 күн бұрын
So for everyone who is confused about running programs with multiples files on visual studio code with c++. All he did was use .hpp for the h files which “is not bad practice” atleast to me it’s not. One thing which is very different is he included the h files cpp file in the main which is not what you’re supposed to do but visual studio code allows it. If you include the hpp file or h file in the main it won’t run unlike in other compilers like gdb replit x code
@blazingzest9380
@blazingzest9380 18 күн бұрын
useless
@fzrahmadan
@fzrahmadan 26 күн бұрын
this does really help, thanks for sharing
@skizofrenia23
@skizofrenia23 Ай бұрын
Thank you for the guide
@pinterest-ej3gp
@pinterest-ej3gp Ай бұрын
i love u thank god
@stephanieezat-panah7750
@stephanieezat-panah7750 2 ай бұрын
thank you
@sarfrazahmad_x1
@sarfrazahmad_x1 2 ай бұрын
How to delete the project. If possible, Any Body can answer as soon as possible
@pieroalfredoguzmanmora1562
@pieroalfredoguzmanmora1562 3 ай бұрын
Thank you! The video is very clear
@hampus3699
@hampus3699 4 ай бұрын
thanks man
@padaru1fromNINTENDOSWITCH
@padaru1fromNINTENDOSWITCH 6 ай бұрын
thank you person from 3 years ago
@arminshadkam8830
@arminshadkam8830 6 ай бұрын
Thanks for sharing. it helped 🙏
@marten9334
@marten9334 6 ай бұрын
Thank you!
@sohaibsadeqi
@sohaibsadeqi 6 ай бұрын
Thanks, It was helpful
@talukdersiam9709
@talukdersiam9709 6 ай бұрын
Thanks
@dylansacco9033
@dylansacco9033 6 ай бұрын
I Remember learning this when you taught it to us in class, but i now have to implement it for a company that i work for and this video was very helpful. <3
@Ali-EditsGS
@Ali-EditsGS 6 ай бұрын
thx brudda
@ganapathipasupathi1666
@ganapathipasupathi1666 7 ай бұрын
how to delete ? (it throw memory leaks)
@amadbinmumtaz6206
@amadbinmumtaz6206 7 ай бұрын
Thank you for providing this demonstration.
@anugrahrai7548
@anugrahrai7548 7 ай бұрын
YOOO you have to get the mic out of your mouth bro
@Puppetmasterrr
@Puppetmasterrr 8 ай бұрын
Really good video!
@jesismalls
@jesismalls 9 ай бұрын
Thank you, its discouraging getting stopped on this step in a new class, but you helped so much.
@FiruzzZ-777
@FiruzzZ-777 9 ай бұрын
adding the pluging WITH the dependencies and no tests run, removing dependencies tag made work 1 of 2 .. 2024 .. Netbeans 21 and still trying to run junit5 test is a mess Also adding Mockito will make stop working
@OhmShankar-xu2kw
@OhmShankar-xu2kw 9 ай бұрын
thanks, I was confused and read many articles before this, none of which helped. after watching, i learned how to make a project. Thanks!
@decentwig5648
@decentwig5648 9 ай бұрын
You didn't close it?
@woodandcole
@woodandcole 9 ай бұрын
Hello! Thanks for the great video, it was easy to understand and sure helped a lot with an assignment! How would you make this entire program output the information into an output.txt?
@chrisowens6161
@chrisowens6161 10 ай бұрын
This is great, exactly what i was looking for, but where does the file get written to? in my solution, I have a Json file under the Resources/Raw folder, with build set as Maui Asset and copy if newer. and when reading, it just cant find it. When i use the FileSystem.AppDataDirectory and my filename private void LoadDrinkMenuItems() { try { List<MenuItem> lstMenuItems_drinks = new List<MenuItem>(); string fileName = FileSystem.AppDataDirectory + "/MenuItems_drinks.json"; var json = File.ReadAllText(fileName); lstMenuItems_drinks = JsonConvert.DeserializeObject<List<MenuItem>>(json); } catch (Exception ex) { } } on the ReadAllText method, it jumps to the catch with {System.IO.FileNotFoundException: Could not find file '/data/user/0/com.migniardise.digitalwaiter/files/MenuItems_drinks.json'. I would have thought that as an asset it would be copied as part of the build to the appropriate place.... I've tried just putting the file name, the file name from the Resources path down etc etc, but nothing works. I appreciate its best to keep the path relative, but at this point, i'd be happy just for it to find the file. If you have any ideas/comments, i'd really appreciate it
@ronfudim4153
@ronfudim4153 10 ай бұрын
god bless you sir this was very helpful
@trustingod0
@trustingod0 11 ай бұрын
Great video but I just have a few questions. Where is this WeightPage located in your example? And how does using that give you access to the entire code behind? I dont understand how these namespaces are used in the xaml content page, for example what does x: mean and x:Reference WeightPage? Is there a book that goes into more detail about this? Thanks !!!
@mustafa._.9371
@mustafa._.9371 11 ай бұрын
Needed this, Thanks!
@ashwani2202
@ashwani2202 11 ай бұрын
I cannot find both of the methods you taught
@jiyuanan6927
@jiyuanan6927 Жыл бұрын
very good, do you know how to add local jar file that has been installed in my local repository /.me/..?
@belgacemaymen7747
@belgacemaymen7747 Жыл бұрын
how to moq static class ?
@FekraMotive
@FekraMotive Жыл бұрын
Thank you
@nzzgcg4217
@nzzgcg4217 Жыл бұрын
Thank you kind sir!
@Jean-MarcHuet-o2n
@Jean-MarcHuet-o2n Жыл бұрын
Hello. Nice video. How to be sure that Prferences can be used? I had an Android mobil for which Prefernecs could not be used? I don´t know why. (Samsung S20F1)
@beyzaaaaaaaaaaaaaaaaa
@beyzaaaaaaaaaaaaaaaaa Жыл бұрын
Hello, I want to ask something. Since yesterday every time I open the vs code, a message saying "Java projects are opening, check the details" appears. It wasn't there before, is it normal? İs that means vscode trying to open all java projects background? ( my laptop is getting heat since that happens.thats why im asking)
@ctsh9910708
@ctsh9910708 Жыл бұрын
This video is helpful for me, thank you. But I have another problem, that is how to link external .lib in vscode?
@tiobjetivacontabilidade
@tiobjetivacontabilidade Жыл бұрын
I can't hear u
@kvelez
@kvelez Жыл бұрын
Great.
@Kashem459
@Kashem459 Жыл бұрын
Then how to create package & class like as eclipse
@crackrokmccaib
@crackrokmccaib Жыл бұрын
This is Java, not C#. Quit putting the opening curly bracket on its own line.
@victorhf9804
@victorhf9804 9 ай бұрын
As a C# developer that works with Java i gotta say i explicitly do this just to piss off Java developers.
@Mr.Zafonacci
@Mr.Zafonacci Жыл бұрын
Thanks for the video!
@christoferlaygo1720
@christoferlaygo1720 Жыл бұрын
does asnyone know why im getting this error when i trying using classes Undefined symbols for architecture arm64: "casino::add()", referenced from: _main in hw2-ceee75.o ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) christofer@Christofers-MacBook-Pro-2 hw2-1 %
@abdullahgomaa1
@abdullahgomaa1 Жыл бұрын
Thank you
@kriskata7653
@kriskata7653 Жыл бұрын
Hey Cottrell. Just a tip instead of closing and opening the app every time you can press CTRL + SHIFT + B to build the project and refresh it in the browser :)
@joymakerRC
@joymakerRC Жыл бұрын
thanks so much
@mahanrasouli.design
@mahanrasouli.design Жыл бұрын
Thank you. This was very short, helpful and concise.
@nouchance
@nouchance Жыл бұрын
Thank you SIR
@bluesdog88
@bluesdog88 Жыл бұрын
great tips thanks!