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
private static byte[] ReducePicture(string inputPath, int percentage, int quality = 75) | |
{ | |
using (var originalImage = Image.FromFile(inputPath)) | |
{ | |
var newWidth = originalImage.Width * percentage / 100; | |
var newHeight = originalImage.Height * percentage / 100; | |
using (var resizedImage = new Bitmap(newWidth, newHeight)) | |
{ | |
using (var graphics = Graphics.FromImage(resizedImage)) |
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
DecodeJsonUnicodeBytes(const unicodeByteStr: String): String; | |
var | |
LJSONObject: TJSONValue; | |
begin | |
try | |
LJSONObject := TJSONObject.ParseJSONValue(TEncoding.UTF8.GetBytes('{"alias":"'+unicodeByteStr+'"}'), 0, true); | |
Result := LJSONObject.GetValue<String>('alias'); | |
finally | |
LJSONObject.Free; | |
end; |
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
using System; | |
using System.Security.Cryptography.X509Certificates; | |
namespace CertInstaller | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine(@"Certificate Installer v1.0"); |
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
using System.Collections.Generic; | |
using System.Reflection; | |
using Newtonsoft.Json; | |
using Newtonsoft.Json.Serialization; | |
namespace ConsoleApp1 | |
{ | |
public class PropertyIgnoreSerializerContractResolver : DefaultContractResolver | |
{ | |
private readonly HashSet<string> _ignores; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Newtonsoft.Json; | |
using Newtonsoft.Json.Serialization; | |
namespace ConsoleApp1 |
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
using System; | |
using System.Security.Cryptography; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; | |
using System.Web.Http; | |
namespace SignGenApi.Controllers | |
{ | |
public class SignController : ApiController | |
{ |
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
public KeyboardLayoutType LayoutType | |
{ | |
get | |
{ | |
return this.layoutType; | |
} | |
set | |
{ | |
if (!Enum.IsDefined(typeof (KeyboardLayoutType), (object) value)) | |
throw new ArgumentException("Invalid LayoutType. When setting the LayoutType property, it must be a valid member of the KeyboardLayoutType enumeration!"); |
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
public enum TestEnum | |
{ | |
A, | |
B, | |
C | |
} | |
var t = ~TestEnum.A; // t = ~1; | |
var t = ~TestEnum.B; // t = ~1; | |
var t = ~TestEnum.C; // t = ~1; |
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
1- download Node.js from https://nodejs.org/en/download/ and install it. | |
2- npm install -g npm@latest | |
3- npm i -g create-react-app | |
4- in VSCODE instal this ext: | |
- Simple React Snippets | |
- Prettier | |
- Eslint |
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
private void button1_Click(object sender, EventArgs e) | |
{ | |
// Declare a Resource Manager instance. | |
ResourceManager LocRM = new ResourceManager("CultureTest.Language", typeof(Form1).Assembly); | |
// Assign the string for the "strMessage" key to a message box. | |
MessageBox.Show(LocRM.GetString("Hello")); | |
} | |
private void button2_Click(object sender, EventArgs e) | |
{ |
NewerOlder