Skip to content

Instantly share code, notes, and snippets.

View vxzry's full-sized avatar
🏠
Working from home

golo vxzry

🏠
Working from home
View GitHub Profile
@vxzry
vxzry / 30-days-of-code-day-11
Last active March 19, 2018 03:54
Hackerrank 30 Days of Code Day 11: 2D Arrays
<?php
/*
test input:
1 1 1 0 0 0
0 1 0 0 0 0
1 1 1 0 0 0
0 0 2 4 4 0
0 0 0 2 0 0
0 0 1 2 4 0
*/
@vxzry
vxzry / VendTableAVG_Extension.xml
Last active February 23, 2022 01:57
D365 F&O: Set form datasource fields as mandatory via extension
[ExtensionOf(formStr(VendTable))]
final class VendTableAVG_Extension
{
void init()
{
next init();
this.setMandatoryFields();
}
@vxzry
vxzry / setting-up-tfs-d365.md
Last active May 1, 2020 07:39
Setting up TFS/Azure DevOps for Dynamics 365 F&O

Setting up TFS/Azure DevOps for Dynamics 365 F&O

In this tutorial, I will show you how to set up your D365 dev environment to connect to your Azure DevOps project. I will use our current setup as an example.

Prerequisites

  1. User must atleast have a Basic access level on their Azure DevOps organization to access Azure Repos. See this link for the pricing.

  2. Rename virtual machine. Name must be unique across your team. Rename virtual machine

According to the docs:

@vxzry
vxzry / MorseConverter.php
Last active March 20, 2020 02:46
PHP code to convert morse code into english text and vice versa - challenge from https://github.com/ponchog/phpcodingchallenge
<?php
/**
* Converts morse code into english text and vice versa
* php version 7.2
*
* @category NA
* @package NA
* @author vzxry <vxzry@github.com>
*/
namespace MorseConverter;