Skip to content

Instantly share code, notes, and snippets.

View rla4's full-sized avatar

Roberta Arcoverde rla4

View GitHub Profile

Keybase proof

I hereby claim:

  • I am rla4 on github.
  • I am rla4 (https://keybase.io/rla4) on keybase.
  • I have a public key ASAbKULPI0TDx05hkNMWH3vo88U9DlqsrHetwZgfZMcPDAo

To claim this, I am signing this object:

git diff -w | git apply --cached --ignore-whitespace
@rla4
rla4 / settings.json
Last active November 20, 2020 14:29
Windows Terminal settings
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"copyFormatting": false,
"profiles": {
"defaults": {
"cursorShape": "filledBox",
"fontFace": "Roboto Mono for Powerline"
@rla4
rla4 / gist:918d458b87177d5a0f7f2ec4dcd91b05
Created April 16, 2020 14:25
LinqPad script for comparing atlassian all.js and local file checksums
var response = await Http
.Request("https://connect-cdn.atl-paas.net/all.js")
.ExpectString()
.GetAsync();
using (var sha384Hash = SHA384.Create())
{
var atlassianFileBytes = Encoding.UTF8.GetBytes(response.Data);
var localFileBytes = Encoding.UTF8.GetBytes(File.ReadAllText(@"C:\third-party-code\atlassian-connect-js-cdn\dist\all.js"));
@rla4
rla4 / gist:78a21c30404a7e7581120f884bf157f0
Created June 11, 2019 11:56
Windows: disable Bing results from start menu
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search" -Name "BingSearchEnabled" -Type DWord -Value 0