Skip to content

Instantly share code, notes, and snippets.

View DamolAAkinleye's full-sized avatar
🎯

Damola Akinleye DamolAAkinleye

🎯
View GitHub Profile
@DamolAAkinleye
DamolAAkinleye / SSIS.MSBuild.proj
Created February 5, 2017 11:43 — forked from kulmam92/SSIS.MSBuild.proj
MSBuild build script to build SSIS project using Microsoft.SqlServer.IntegrationServices.Build.dll I copied this from the below link and modified a little bit to make it work in my environment. msbuild script for building and deploying a SSIS .ispac file(http://pastebin.com/kbj8tRUz)
<?xml version="1.0" encoding="Windows-1252"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="SSISBuild;SSISDeploy">
<!--Requires a property called $(SSISProj) to be defined when this script is called-->
<UsingTask TaskName="DeploymentFileCompilerTask" AssemblyFile="C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\Microsoft.SqlServer.IntegrationServices.Build.dll" />
<Target Name="SSISBuild" Condition="'$(SSISProj)' != ''">
<PropertyGroup>
<SSISProjPath>.\$(SSISProj)\$(SSISProj).dtproj</SSISProjPath>
</PropertyGroup>
<Message Text="**************Building SSIS project: $(SSISProjPath) for configuration: $(CONFIGURATION)**************" />
<DeploymentFileCompilerTask InputProject="$(SSISProjPath)" Configuration="$(CONFIGURATION)" ProtectionLevel="DontSaveSensitive">
@DamolAAkinleye
DamolAAkinleye / using_git-svn.md
Created May 17, 2018 07:22 — forked from rickyah/using_git-svn.md
A simple guide to git-svn

#Getting started with git-svn

git-svn is a git command that allows using git to interact with Subversion repositories.git-svn is part of git, meaning that is NOT a plugin but actually bundled with your git installation. SourceTree also happens to support this command so you can use it with your usual workflow.

Reference: http://git-scm.com/book/en/v1/Git-and-Other-Systems-Git-and-Subversion

##Cloning the SVN repository

You need to create a new local copy of the repository with the command

@DamolAAkinleye
DamolAAkinleye / README.md
Created September 27, 2018 03:46 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@DamolAAkinleye
DamolAAkinleye / git-helpers.zsh
Created November 7, 2018 20:27 — forked from justin808/git-helpers.zsh
zsh with git flow
# depends on justin808 gist named utility.zsh
# https://gist.github.com/justin808/bdef67f37c2cbdba898a
# See forum discussion: http://forum.railsonmaui.com/t/zsh-with-git-flow/135
#### GIT ####
# http://superuser.com/questions/458906/zsh-tab-completion-of-git-commands-is-very-slow-how-can-i-turn-it-off
# fix slow completion on files
# __git_files () {
# _wanted files expl 'local files' _files
@DamolAAkinleye
DamolAAkinleye / release.sh
Created November 7, 2018 20:52 — forked from bclinkinbeard/release.sh
Bash script to automate the Git Flow tag/release process
#!/bin/bash
# current Git branch
branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
# v1.0.0, v1.5.2, etc.
versionLabel=v$1
# establish branch and tag name variables
devBranch=develop
@DamolAAkinleye
DamolAAkinleye / pre-commit.sh
Created October 3, 2019 05:02 — forked from akfish/pre-commit.sh
Run MSBuild and MSTest for C# project from git pre-commit hook
#!/bin/sh
# Helper
safeRunCommand() {
typeset cmd="$*"
typeset ret_code
echo cmd=$cmd
eval $cmd
ret_code=$?
@DamolAAkinleye
DamolAAkinleye / common.ps1
Last active October 15, 2019 15:45
Created with Copy to Gist
param(
[string]
$ParamFile = "common.parameters.txt",
[string]
$subscriptionId,
[string]
$certPassword,
@DamolAAkinleye
DamolAAkinleye / Azure-common2.ps1
Last active October 15, 2019 15:50
Created with Copy to Gist
param(
2
[Parameter(Mandatory=$True)]
3
[string]
4
$rootFolderPath,
5
6
@DamolAAkinleye
DamolAAkinleye / 1572555067.txt
Created October 31, 2019 20:51
Created with Copy to Gist
96
97
98
99
100
101
102
103
104
#!/usr/bin/env python
# coding: utf-8
#Import necessary libraries
import msal
import requests
import json
import pandas as pd
from datetime import date, timedelta