Skip to content

Instantly share code, notes, and snippets.

View rsantosdev's full-sized avatar
🏠
Working from home

Rafael dos Santos rsantosdev

🏠
Working from home
View GitHub Profile
version: '3.4'
services:
sql.data:
image: mcr.microsoft.com/mssql/server:2017-latest
container_name: dev_sql
environment:
- SA_PASSWORD=yourStrong(!)Password
- ACCEPT_EULA=Y
healthcheck:
@rsantosdev
rsantosdev / ImageConverter.cs
Created January 5, 2019 17:54
Reference conversion options for my online course
public class ImageConverter
{
byte[] ConvertToPng(byte[] source, ConversionOptions options) => Execute(source,
$"- -filter Triangle -define filter:support=2 -resize {options.Width}x{options.Height}> -density 150x150 -unsharp 0.25x0.25+8+0.065 -dither None -posterize 136 -define png:compression-filter=5 -define png:compression-level=9 -define png:compression-strategy=1 -define png:exclude-chunk=all -interlace none -colorspace sRGB -strip png:-");
byte[] ConvertToJpg(byte[] source, ConversionOptions options) => Execute(source,
$"- -filter Triangle -define filter:support=2 -resize {options.Width}x{options.Height}> -unsharp 0.25x0.25+8+0.065 -dither None -posterize 136 -quality {options.Quality} -define jpeg:fancy-upsampling=off -interlace none -colorspace sRGB -background white -alpha remove -strip jpg:-");
}
@rsantosdev
rsantosdev / rethinkdb-slow.js
Created April 15, 2016 12:41
Monitor or trace slow queries on rethinkdb cluster.
r.db("rethinkdb").table('jobs')
.filter(function(j){
return j('type').eq('query')
.and(j('duration_sec').gt(0.001))
.and(j('info')('query').match('jobs').eq(null))
.and(j('info')('query').match('rethinkdb').eq(null));
})
.changes();
@rsantosdev
rsantosdev / WebHost.cs
Created May 15, 2018 23:43
a copy of webhost file from asp.net core metapackage
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO;
using System.Reflection;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.HostFiltering;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;