- Server: PostgreSQL
216.158.72.53:5432
, version13.7 (Debian 13.7-0+deb11u1)
- Local time stamp:
2022-07-20T12:41:43.0051958+02:00
- Schema: public
- Table
public.addresses
- Table
public.alarm_alarm_contacts
let (|TakeUntil|_|) x xs = | |
match List.takeWhile ((<>) x) xs with | |
| y when y = xs -> None | |
| y -> Some(y, List.skipWhile ((<>) x) xs) | |
let (|Split|_|) split xs = | |
match xs with | |
| TakeUntil split (x1, (_ :: x2)) -> Some(x1, x2) | |
| _ -> None |
216.158.72.53:5432
, version 13.7 (Debian 13.7-0+deb11u1)
2022-07-20T12:41:43.0051958+02:00
public.addresses
public.alarm_alarm_contacts
Get your Windows iso and a virtio drivers iso and store them inside the global zone. The virtio drivers will be needed for Windows to recognize the disks during install.
The virtio drivers can be downloaded from https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/
> ls /rpool/iso
windows_install.iso
We recently had to provide (near) live data to a set of views in our application. After considering the most common ways to build this we decided to go with long polling. Our entire app is event based, so we know if a certain event happed the data might have changed. Lets assume the following types represent what can happen in our application:
type CounterEvent =
| CounterWasIncremented byValue: int
internal class DockerMsSqlServerDatabase : IAsyncDisposable | |
{ | |
private const string Password = "!Passw0rd"; | |
private const string Image = "mcr.microsoft.com/mssql/server"; | |
private const string Tag = "2019-GA-ubuntu-16.04"; | |
private static IContainer _sqlServerContainer; | |
private SemaphoreSlim semaphore = new(1, 1); | |
private readonly string DatabaseName; |
create or replace function companies.search_companies( | |
_search varchar, | |
_skip integer, | |
_take integer | |
) | |
returns json | |
language plpgsql | |
as $$ | |
declare | |
_count bigint; |
Thanks to Sergey Tihon for running F# Weekly and F# Advent.
Thanks to manofstick for trying out the code and coming with invaluable feedback. Cistern.ValueLinq is very impressive.
There were many interesting improvements in F#6 but one in particular caught my eye, the attribute InlineIfLambda
.