I hereby claim:
- I am siliconrob on github.
- I am siliconrob (https://keybase.io/siliconrob) on keybase.
- I have a public key ASCjmM1Av05-0SkhTvUnpoCmeE45Kh0W5HEbfWKojH7lgAo
To claim this, I am signing this object:
name: deploy service tar | |
on: | |
push: | |
branches: | |
- 'deploy/*' | |
jobs: | |
update: | |
name: Update target service Github deploy workflows | |
runs-on: ubuntu-latest |
using System; | |
using System.Data; | |
using System.Threading.Tasks; | |
using Dapper; | |
public static class IDbConnectionExtensions | |
{ | |
public static async Task<DateTime> DbGeneratedFakeDateOfBirthAsync(this IDbConnection db, int range = 100) | |
{ | |
if (range < 1 || range > 100) |
using System; | |
namespace EqualTest | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var ohdear = new | |
{ |
I hereby claim:
To claim this, I am signing this object:
import sys | |
from pprint import pprint | |
import arrow | |
from WunderWeather import weather | |
def eclipse_conditions(api_key, lat, lng, start_time_utc, end_time_utc): | |
if (start_time_utc > end_time_utc): | |
raise Exception('Start time must be less than end time') | |
extractor = weather.Extract(api_key) | |
location = "{0},{1}".format(lat, lng) |
/*************************************************************************** | |
* _ _ ____ _ | |
* Project ___| | | | _ \| | | |
* / __| | | | |_) | | | |
* | (__| |_| | _ <| |___ | |
* \___|\___/|_| \_\_____| | |
* | |
* Copyright (C) 1998 - 2015, Daniel Stenberg, <[email protected]>, et al. | |
* | |
* This software is licensed as described in the file COPYING, which |
ALTER TABLE your_table_name_here | |
ADD PARTITION (year='2017', month='*', day='*') | |
LOCATION 's3://your-alb-log-bucket/processed/AWSLogs/00000-change-with-your-account-id/elasticloadbalancing/us-east-1-change-with-your-region/2017/' |
/****** Object: Table [dbo].[Table1] Script Date: 6/22/2017 10:42:23 PM ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[Table1]( | |
[Id] [int] IDENTITY(1,1) NOT NULL, | |
[Description] [nchar](10) NULL, |
public IObservable<int> ObservableCounter(int count, int delay) | |
{ | |
return Observable.Range(0, count).Zip( | |
Observable.Interval(TimeSpan.FromMilliseconds(delay)), (item, _) => item); | |
} |