View UfStatesBrazil.php
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 | |
namespace App\Constants; | |
/** | |
* Classe com todos os UFs de cada estado do Brasil | |
*/ | |
class UfStatesBrazil | |
{ | |
public const ACRE = 'AC'; |
View OfxExample.ofx
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
OFXHEADER:100 | |
DATA:OFXSGML | |
VERSION:102 | |
SECURITY:NONE | |
ENCODING:USASCII | |
CHARSET:1252 | |
COMPRESSION:NONE | |
OLDFILEUID:NONE | |
NEWFILEUID:NONE |
View CanvasUtils.cs
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 class CanvasUtils | |
{ | |
private bool HasClickedOnCanvasElement() | |
{ | |
PointerEventData pointerData = new PointerEventData(EventSystem.current); | |
List<RaycastResult> results = new List<RaycastResult>(); | |
pointerData.position = Input.mousePosition; | |
Raycaster.Raycast(pointerData, results); |
View GetStringBetweenByIndex.ps1
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
$originalString = "Hello world" | |
$firstIndex = $originalString.IndexOf('H') | |
$lastIndex = $originalString.IndexOf('o') | |
$startIndex = $firstIndex + 1 | |
$length = ($lastIndex - $firstIndex) - 1; | |
$finalString = $originalString.Substring($startIndex, $length) |
View ConvertGitLogToJson.ps1
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
# Credits: https://stackoverflow.com/a/49515414/12542704 | |
$header = @("commit", "tree", "parent", "refs", "subject", "body", "author", "commiter") | |
[string] $gitLogs = (git --no-pager log -n 10 --no-merges --pretty=format:'%H|%T|%P|%D|%s|%b|%an|%cn;') | |
$replacedArray = $gitLogs.Replace("; ", ';') -split ";", 0, "multiline"; | |
$handledLogs = foreach ($commit in $replacedArray) { | |
$prop = $commit -split "\|" | |
$hash = [ordered]@{} |
View canvasUtilities.js
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
/** | |
* Class with some utilities to work on a canvas context | |
* @author Fabrício Pinto Ferreira | |
*/ | |
export class CanvasUtility { | |
/** | |
* @param {CanvasRenderingContext2D} newContext | |
*/ | |
constructor(newCanvasContext) { | |
/** @type {CanvasRenderingContext2D} */ |
View global.json
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
{ | |
"sdk": { | |
"version": "3.1.0", | |
"rollForward": "latestFeature" | |
} | |
} |
View .gitattributes
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
# Auto detect text files and perform LF normalization | |
* text=auto | |
*.cs linguist-language=csharp | |
*.csproj linguist-language=csharp | |
*.sln linguist-language=csharp | |
*.md linguist-detectable=true | |
*.md linguist-documentation=false | |
# And ignore those repositories considering them as documentation |
View Speak-Powershell.ps1
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
<# | |
Usage example: | |
./Speak-Powershell.ps1 "Hy PowerShell" | |
#> | |
Add-Type -AssemblyName System.speech | |
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer | |
$textToSpeak = switch ( [String]::IsNullOrEmpty($args[0]) ) { | |
$true { "Hello World" } | |
$false { $args[0] } |
View Request.cs
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; | |
using System.Text; | |
using System.Threading.Tasks; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
namespace Project.Base | |
{ | |
public static class Request |
NewerOlder