code Cross-platform inference using fast.ai models After training a model using fast.ai, you can use it on some other platform to make inferences (that is, get predictions on new data). However, using a model trained on one platform
front-end Concurrent HTTP Requests with System.Threading.Channels The .NET Core team quietly landed the System.Threading.Channels namespace in corefx. They're quite similar to channels from Go: They allow one or more writers to send multiple results to one or
sql IIS Express SSL port limitations IIS Express supports HTTPS for development, which is nice. You can use the iisSettings.iisExpress.sslPort option in launchSettings.json to set the HTTPS port. However this port must be in the range
front-end DELETE in batches Microsoft SQL Server supports a DELETE TOP (x) FROM table construct, which allows you to only delete at most x rows from a table. This is useful for deleting rows in batches, to
code Too much © In Internet Explorer 11 the code open("?a=b©=c") opens the url ?a=b©=c instead. Unfortunately, at the time of me writing this, IE11 is still supported by Microsoft.
front-end When bugs reach legal age <textarea rows="3"> One Two Three Four Five </textarea> (jsfiddle)Firefox gives textarea elements an extra row. The bugzilla bug has been open for 19 years now.