Skip to content

Instantly share code, notes, and snippets.

View Toumash's full-sized avatar

Tomasz Dłuski Toumash

View GitHub Profile
@Toumash
Toumash / [RFC] Developerska wersja Webcon BPS Designer Studio.md
Last active February 9, 2022 19:43
Webcon Tooling for developerrs

1. Wstęp

Webcon to ogromne narzędzie klasy BPML do standaryzacji procesów biznesowych w firmach od małych zakładów aż do klasy Enterprise. Z narzędziem na codzień pracuje cała masa ludzi tworząc do niego różnego rodzaju dodatki, integracje. Jeśli kiedykolwiek pisałeś większą integrację do systemu webcon zapewne wiesz z jakimi problemami stykają się developerzy, którzy do tego systemu tworzą integracje na codzień . Wraz z wycofaniem wsparcia technologii komunikacji i integracji Webcon BPS a systemami zewnętrznymi o nazwie "SOAP", komunikacja z systemem webcon przestała podlegać pod standardy wyznaczane przez schematy XML. Aktualnie zastąpione zostały one standardem OpenAPI - który dość dobrze opisuje system, ale pod względem transportu, natomiast w systemie brak jakiejkolwiek wziamnki o logice importowania danych do różnych typów pól. Szczególny nacisk kładziemy na nowe, nieopisane typy, przez które integratory zwyczajnie

@natesubra
natesubra / no_mp.bat
Created May 21, 2020 16:10
Disable Windows Defender - Powershell
# disable
powershell -command 'Set-MpPreference -DisableRealtimeMonitoring $true -DisableScriptScanning $true -DisableBehaviorMonitoring $true -DisableIOAVProtection $true -DisableIntrusionPreventionSystem $true'
# Or exclude
powershell -command 'Add-MpPreference -ExclusionPath "c:\temp" -ExclusionProcess "c:\temp\yourstuffs.exe"'
@EduardoSaverin
EduardoSaverin / LoginForm.js
Created July 8, 2018 09:32
Material UI React Login Form
import React from 'react';
import { Paper, withStyles, Grid, TextField, Button, FormControlLabel, Checkbox } from '@material-ui/core';
import { Face, Fingerprint } from '@material-ui/icons'
const styles = theme => ({
margin: {
margin: theme.spacing.unit * 2,
},
padding: {
padding: theme.spacing.unit
}
@MorbosVermin
MorbosVermin / VaultConfigurationManager.cs
Created May 24, 2018 21:42
.Net C# Class for getting configuration information from Vault (vaultproject.io)
using log4net;
using System;
using System.Collections.Generic;
using System.Security;
using VaultSharp;
using VaultSharp.Backends.Authentication.Models;
using VaultSharp.Backends.Authentication.Models.Token;
using VaultSharp.Backends.Authentication.Models.UsernamePassword;
namespace MyApp
@Au1st3in
Au1st3in / dayz_autorun.ahk
Last active December 27, 2024 14:40
DayZ AutoRun AutoHotKey Script with NumLock Toggle
#NoEnv
SendMode Input
#IfWinActive, DayZ
SetNumlockState, off
~NumLock::
if (GetKeyState("NumLock", "T")) {
Send, {lshift Down}
Send, {w Down}
@chrisobriensp
chrisobriensp / FetchListsForWebPartPropsDropdown.ts
Last active November 8, 2019 12:13
Dynamically populate SPFX web part property dropdown list - using lists in current site. See http://cob-sp.com/SPFx-WP-Props2
/* need some imports e.g.:
import { IODataList } from '@microsoft/sp-odata-types';
import { SPHttpClient, SPHttpClientConfigurations, SPHttpClientConfiguration, SPHttpClientResponse, ODataVersion, ISPHttpClientConfiguration } from '@microsoft/sp-http';
*/
private dropdownOptions: IPropertyPaneDropdownOption[];
private listsFetched: boolean;
// these methods are split out to go step-by-step, but you could refactor and be more direct if you choose..