This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TimeOnlyConverter : JsonConverter<TimeOnly> | |
{ | |
private readonly string serializationFormat; | |
public TimeOnlyConverter() : this(null) | |
{ | |
} | |
public TimeOnlyConverter(string? serializationFormat) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DateOnlyConverter : JsonConverter<DateOnly> | |
{ | |
private readonly string serializationFormat; | |
public DateOnlyConverter() : this(null) | |
{ | |
} | |
public DateOnlyConverter(string? serializationFormat) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (var frullino = 0; frullino < 42; frullino++) | |
{ | |
System.Console.WriteLine("Taggia"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Threading.Tasks; | |
namespace System.Threading | |
{ | |
public class AsyncLock : IDisposable | |
{ | |
private readonly SemaphoreSlim semaphoreSlim = new SemaphoreSlim(1, 1); | |
public async Task<AsyncLock> LockAsync() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Position : IEquatable<Position> | |
{ | |
public double Latitude { get; set; } | |
public double Longitude { get; set; } | |
public bool Equals([AllowNull] Position other) | |
=> (Latitude, Longitude) == (other?.Latitude, other?.Longitude); | |
public override bool Equals(object obj) => Equals(obj as Position); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.5 | |
ADD app /app | |
RUN pip install --upgrade pip | |
RUN pip install https://github.com/lhelontra/tensorflow-on-arm/releases/download/v1.5.0/tensorflow-1.5.0-cp35-none-linux_armv7l.whl | |
RUN pip install -r /app/requirements.txt | |
# Expose the port | |
EXPOSE 80 |
NewerOlder