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
// Methods: After, Before | |
string response = @"hello_world"; | |
string after = response.After("hello"); | |
// after = "_world" | |
string before = response.Before("world"); | |
// before = "hello_" |
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 override async Task<IEnumerable<City>> GetAllAsync() | |
{ | |
var cities = new Dictionary<long, City>(); | |
//var areas = new Dictionary<long, Area>(); | |
const string sql = | |
@"SELECT c.id, c.name, a.id, a.name FROM cities c | |
INNER JOIN city_areas ca ON ca.city_id = c.id | |
INNER JOIN areas a ON a.id = ca.area_id"; | |
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
https://steamcommunity.com/inventory/76561198180976409/440/2?l=english&count=5000 |
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
@echo off | |
set OPENSSL_CONF=%~dp0..\conf\openssl.cnf | |
..\bin\openssl req -x509 -sha256 -newkey rsa:2048 -nodes -days 5475 -keyout rootCA.key -out rootCA.crt -subj "/CN=OSPanel/" | |
..\bin\openssl req -newkey rsa:2048 -nodes -days 5475 -keyout server.key -out server.csr -subj "/CN=PhpStorm/" | |
..\bin\openssl x509 -req -sha256 -days 5475 -in server.csr -extfile v3.txt -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out server.crt | |
..\bin\openssl dhparam -out dhparam.pem 2048 |
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
"repositories": [ | |
{ | |
"type": "vcs", | |
"url": "https://github.com/grandsilence/laravel-steam-auth" | |
} | |
], | |
"require": { | |
"invisnik/laravel-steam-auth": "dev-master", | |
} |
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
/* Global font */ | |
.monaco-shell, .windows { | |
font-family: Tahoma, Arial, sans-serif !important; | |
--monaco-monospace-font: 'Terminus (TTF) for Windows', Consolas, 'Courier New', monospace !important; | |
} | |
/* Remove italic for selected file */ | |
.monaco-icon-label.italic>.monaco-icon-label-description-container>.label-description, .monaco-icon-label.italic>.monaco-icon-label-description-container>.label-name { | |
font-style: normal !important; | |
color: #c5b482; | |
} |
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
<?php | |
function pretty_phone($phone) { | |
if (!preg_match('/^(\+?)(\d)(\d{3})(\d{3})(\d{2})(\d{2})$/', $phone, $matches)) { | |
return 'invalid phone'; | |
} | |
$is_international = !empty($matches[0]) && $matches[0] === '+'; | |
$last_delimiter = $is_international ? '-' : ' '; | |
$delimeters = [' ', ' ', $last_delimiter, $last_delimiter]; |
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 static string Sha256(string text) | |
{ | |
var sb = new StringBuilder(); | |
using (var hash = SHA256.Create()) | |
{ | |
var result = hash.ComputeHash(Encoding.UTF8.GetBytes(text)); | |
// ReSharper disable once ForCanBeConvertedToForeach | |
for (int i = 0; i < result.Length; i++) | |
sb.Append(result[i].ToString("x2")); | |
} |
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 Leaf.Core.Extensions.Net; | |
//using Leaf.Core.Patterns; | |
public class MailClient // : Singleton<MailClient> | |
{ | |
public static async Task SendAsync(string body, string subject = "Test Email") | |
{ | |
SmtpClient client = null; | |
MailMessage mail = null; |