This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
This document now exists on the official ASP.NET core docs page.
| >>> from spacy.lang.th import Thai | |
| >>> nlp = Thai() | |
| >>> text="คุณรักผมไหม" | |
| >>> a = nlp(text) | |
| >>> a | |
| คุณรักผมไหม | |
| >>> list(a) | |
| [คุณ, รัก, ผม, ไหม] |
| #!/bin/bash | |
| # A simple script to backup an organization's GitHub repositories. | |
| #------------------------------------------------------------------------------- | |
| # NOTES: | |
| #------------------------------------------------------------------------------- | |
| # * User @jimklimov (and probably some others called out in the long comment | |
| # thread below) have modified this script to make it more robust and keep | |
| # up with various changes in the GitHub API and response format at: | |
| # https://github.com/jimklimov/github-scripts |
| //MIT license | |
| public static UIImage ScaleImage(UIImage image, int maxSize) | |
| { | |
| UIImage res; | |
| using (CGImage imageRef = image.CGImage) | |
| { | |
| CGImageAlphaInfo alphaInfo = imageRef.AlphaInfo; |