Skip to content

Instantly share code, notes, and snippets.

View jupy's full-sized avatar

Mikhail Navernyuk jupy

  • Montenegro
View GitHub Profile
@jupy
jupy / keybase.md
Last active November 2, 2020 15:03

Keybase proof

I hereby claim:

  • I am jupy on github.
  • I am nmavern (https://keybase.io/nmavern) on keybase.
  • I have a public key ASD8DnDAnUgVrOnT_t-6mwsSxkfawHfV6IrUgK6hZIp_mgo

To claim this, I am signing this object:

@jupy
jupy / CombineUrls.cs
Created June 6, 2013 08:38
Как правильно объединить базовый (абсолютный) и относительный URL
Uri baseUrl = new Uri("http://www.csharpdeveloping.net");
string relativeUrl = "Images/test.jpg";
Uri combined = new Uri(baseUrl, relativeUrl);
Console.WriteLine(combined);