This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System | |
Imports System.Collections.Generic | |
Imports System.Data | |
Imports System.Data.Common | |
Imports System.Globalization | |
Imports System.IO | |
Imports System.Linq | |
Imports Microsoft.VisualBasic | |
Imports OneStream.Finance.Database | |
Imports OneStream.Finance.Engine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System | |
Imports System.Collections.Generic | |
Imports System.Data | |
Imports System.Data.Common | |
Imports System.Globalization | |
Imports System.IO | |
Imports System.Linq | |
Imports Microsoft.VisualBasic | |
Imports OneStream.Finance.Database | |
Imports OneStream.Finance.Engine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetCapsLockState AlwaysOff | |
; left hand , top row | |
CapsLock & q:: | |
Send £ | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetCapsLockState AlwaysOff | |
; left hand , top row | |
CapsLock & q:: | |
Send £ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# when testing locally, set environment variable OAUTHLIB_INSECURE_TRANSPORT to 1 | |
# so you can use http://localhost... in redirect | |
import os | |
from O365 import Connection | |
from flask import Flask, redirect, request, url_for, abort | |
# O365 secrets | |
APP_ID = os.environ.get('O365_APP_ID') | |
APP_PWD = os.environ.get('O365_APP_PWD') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.autoepm.versioner.common; | |
import org.apache.http.Header; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.StatusLine; | |
import org.apache.http.client.fluent.Executor; | |
import org.apache.http.client.fluent.Response; | |
import org.apache.http.message.BasicHeader; | |
import org.mockito.ArgumentCaptor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To use this script, rename LAN, BACKUP etc to match relevant network card names | |
# in your environment (you can add or remove lines as well), | |
# and set values to match your metric preference (1 is the preferred card). | |
# All cards not mentioned here will be set to 100. | |
$cards = @{} # don't touch this line | |
$cards.LAN = 1 | |
$cards.BACKUP = 99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 1 | |
$SQLconn = New-Object -TypeName System.Data.SqlClient.SqlConnection -ArgumentList ('server=ardy-sql01; database=foundation; uid=EPMSQL; pwd=Hyp3r10n') | |
$SQLconn.Open() | |
$SQLcmd = $SQLconn.CreateCommand() | |
$SQLcmd.CommandType = [System.Data.CommandType]::Text | |
$SQLcmd.CommandText = | |
'SELECT COMPONENT_NAME, PROPERTY_NAME, PROPERTY_VALUE FROM HSS_COMPONENT_PROPERTY_VALUES inner join HSS_COMPONENT on HSS_COMPONENT_PROPERTY_VALUES.COMPONENT_ID = HSS_COMPONENT.COMPONENT_ID order by component_name asc' | |
$data = $SQLcmd.ExecuteReader() | |
$dataTable = New-Object -TypeName 'System.Data.DataTable' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-ServiceUpTime | |
{ | |
[CmdletBinding()] | |
param | |
( | |
# Name of Computer(s) to query | |
[Parameter(Mandatory = $false, | |
Position = 1, | |
ValueFromPipelineByPropertyName = $true)] | |
[string[]]$ComputerName = $env:COMPUTERNAME, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/local/Cellar/cmake/3.9.0/bin/cmake -H/Users/toyg/Dev/waifu2x-dev -B/Users/toyg/Dev/waifu2x-dev --check-build-system CMakeFiles/Makefile.cmake 0 | |
/usr/local/Cellar/cmake/3.9.0/bin/cmake -E cmake_progress_start /Users/toyg/Dev/waifu2x-dev/CMakeFiles /Users/toyg/Dev/waifu2x-dev/CMakeFiles/progress.marks | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/Makefile2 all | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/conv.dir/build.make CMakeFiles/conv.dir/depend | |
cd /Users/toyg/Dev/waifu2x-dev && /usr/local/Cellar/cmake/3.9.0/bin/cmake -E cmake_depends "Unix Makefiles" /Users/toyg/Dev/waifu2x-dev /Users/toyg/Dev/waifu2x-dev /Users/toyg/Dev/waifu2x-dev /Users/toyg/Dev/waifu2x-dev /Users/toyg/Dev/waifu2x-dev/CMakeFiles/conv.dir/DependInfo.cmake --color= | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/conv.dir/build.make CMakeFiles/conv.dir/build | |
make[2]: Nothing to be done for `CMakeFiles/conv.dir/build'. | |
[ 8%] Built target conv | |
/Applications/Xcode.a |
NewerOlder