Skip to content

Instantly share code, notes, and snippets.

View ukcoderj's full-sized avatar

Justin ukcoderj

View GitHub Profile
@therightstuff
therightstuff / Program.cs
Created November 19, 2017 15:34
‘How to create an Azure SQL Database programmatically’ with less frustration
/****************************** Module Header ******************************\
* DOWNLOADED FROM https://code.msdn.microsoft.com/How-to-create-an-Azure-SQL-dbd0bf6a
* Modified By: Adam Fisher (https://github.com/therightstuff)
* Module Name: Program.cs
* Project: CSCreateAzureSQL
* Copyright (c) Microsoft Corporation.
*
* This sample will show how to create a SQL database on Microsoft Azure
* using C#
*
@BorisWechselberger
BorisWechselberger / MultiTranslateHttpLoader.ts
Last active July 6, 2022 15:59
TranslateLoader for multiple JSON files
import {HttpClient} from '@angular/common/http';
import {TranslateLoader} from '@ngx-translate/core';
import {Observable} from 'rxjs/Observable';
import 'rxjs/add/observable/forkJoin';
export function translateLoader(http: HttpClient) {
return new MultiTranslateHttpLoader(http, [
{prefix: './assets/i18n/', suffix: '.json'},
{prefix: './assets/i18n/countries-', suffix: '.json'}
@jbratu
jbratu / setupiisforsslperfectforwardsecrecy_v17.ps1
Last active January 17, 2025 10:17
Great powershell script for tightening HTTPS security on IIS and disabling insecure protocols and ciphers. Very useful on core installations.
# Copyright 2019, Alexander Hass
# https://www.hass.de/content/setup-microsoft-windows-or-iis-ssl-perfect-forward-secrecy-and-tls-12
#
# After running this script the computer only supports:
# - TLS 1.2
#
# Version 3.0.1, see CHANGELOG.txt for changes.
Write-Host 'Configuring IIS with SSL/TLS Deployment Best Practices...'
Write-Host '--------------------------------------------------------------------------------'
@justinacton
justinacton / SSLSettingsIIS8.ps1
Created January 8, 2016 05:48
Powershell script to configure your IIS server with Perfect Forward Secrecy and TLS 1.2.
# Copyright 2014, Alexander Hass
# http://www.hass.de/content/setup-your-iis-ssl-perfect-forward-secrecy-and-tls-12
#
# Version 1.4
# - RC4 has been disabled.
# Version 1.3
# - MD5 has been disabled.
# Version 1.2
# - Re-factored code style and output
# Version 1.1
@AkosLukacs
AkosLukacs / ExampleOutput.sql
Created July 8, 2012 22:06
Create drop+create scripts for MS SQL stored procedures and views in a given database using PowerShell and SMO
-- * * * * 2012.07.09. 0:13:16, server:'xxxx', db:'xxxx', search:'A_exampl' * * * *
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[A_example]') AND type in (N'P', N'PC')) --#1
Drop procedure [dbo].[A_example];
GO
-- * * * * BODY * * * *
-- * * * * #1:A_example; CreateDate:2012.07.09. 0:13:04, DateLastModified:2012.07.09. 0:13:04 * * * *
GO
-- =============================================
-- Author: Akos