- 31
- 20 629
john mcfetridge
Приєднався 14 лис 2013
ainov24
my OLLI class on AI LLM state of art asking the question "should we drop the I"
Переглядів: 39
Відео
landingsAI
Переглядів 6310 місяців тому
overview on AI with discussions on how intelligent it really is. includes many ChatGPT prompts
landing MWF scheduling app
Переглядів 1363 роки тому
short video on using the scheduling app for our MWF league
Flutter Web App and CORS issues
Переглядів 13 тис.3 роки тому
targeting the web with a flutter app is easy but you must make sure your backend supports Cross Origin Resource Sharing (CORS) in making web api calls.This video address changes needed to your ASP.NET Identity code to address these issues.
image uploading from Flutter to ASP.NET Web API server
Переглядів 2,8 тис.5 років тому
flutter demo app that shows how to use Photo picker to select a photo from image library and then send to .NET server with a MultiPart POST. Of course the backend can be any server that understands an HTTP Multipart POST
build asp.net web api that uses OAuth to secure its methods
Переглядів 2245 років тому
This tutorial shows how to create an asp.net web api that uses OAuth to secure its methods. we then use Postman to test the result .
flutterlogin
Переглядів 3265 років тому
using asp.net Identity services to provide secure oAuth calls with Flutter
Part 2 continuation of building IOS snap clone with Asp.Net Core backend
Переглядів 466 років тому
Part 2 continuation of building IOS snap clone with Asp.Net Core backend
IOS Swift Snap clone using asp.net Core for backend. Getting server parts ready
Переглядів 1486 років тому
IOS Swift Snap clone using asp.net Core for backend. Getting server parts ready
xamarin ios collectioncontroller tutorial part 2
Переглядів 436 років тому
xamarin ios collectioncontroller tutorial part 2
developing web server using asp.net web api
Переглядів 8210 років тому
developing web server using asp.net web api
Great Launch!
Awesome! Really well done - not just the video but the launch itself. Thank you!
Thank you, John!
If I don't have control over the API server (going through a company) would I just tell them to do this on their side?
I got stuck on that too. Thanks for pointing out the direction to solve this bug
How protect API request made from Flutter Web app?
thanks a lot. it helped
ur video is too heavy to download.
Thank you john this solved my issue
do u have .net flutter notification video
next part here: ua-cam.com/video/aTPLf5Dj0lw/v-deo.html
Share ASP.Net Code
You did'nt show asp.net code? kindly share link
please i need code back end i use this but return httpRequest.Files.Count=0 public string UploadPostBySaveAs1() { int currentfile = 0; string result = null; var httpRequest = HttpContext.Current.Request; if (httpRequest.Files.Count > 0) { var docfiles = new List<string>(); string filenewname=""; foreach (string file in httpRequest.Files) { var postedFile = httpRequest.Files[currentfile]; filenewname = generatefilename(postedFile.FileName, currentfile); var filePath = HttpContext.Current.Server.MapPath("~/images/" + filenewname); postedFile.SaveAs(filePath); docfiles.Add(filenewname); currentfile++; } result= filenewname; } else { result= "Not File :"+ httpRequest.Files.Count.ToString(); } return result; }
Great job John!! I've never saw this kind of work, I totally use Dart, but it's my first time seeing this with another backend, cause I use Firestore from Firebase! Regrats from Mexico!
holy skag-balls, I looked around on the internet but everyone was making it too complicated, you made it super easy to understand do what I needed to do in no time at all.
Which VS version is that? I'm missing parts of the top toolbar (Add constraints, remove constraints, view as generic). Did you install anything apart from VS?
Good video, thanks
Too many "and" "um" while speaking. Tough to listen to.
I understand what you´re explaining. But if you don´t show how to make it from scratch is really hard to follow how everything ended up there.