Skip to content

Instantly share code, notes, and snippets.

View jboliveira's full-sized avatar
🏠
Working from home

Jader Oliveira jboliveira

🏠
Working from home
  • ABN AMRO Bank B.V.
  • Utrecht, the Netherlands
  • LinkedIn in/jaderbueno
View GitHub Profile
@jboliveira
jboliveira / how-to-generate-p12cert-without-mac.md
Last active March 12, 2021 16:37 — forked from jcward/Readme.txt
Generating iOS P12 / certs without Mac OSX Keychain (on linux, windows, etc)

How to Generate iOS P12 certs without MAC OSX

Steps to generate

  1. Install openssl via choco:
choco install openssl -y
@jboliveira
jboliveira / books-lambda3.tsv
Last active March 12, 2021 16:28 — forked from akamud/NovosLivros.tsv
Books Lambda3
Book Author
Mastering Vim Quickly Jovica Ilic
Domain-Driven Design: Tackling Complexity in the Heart of Software Eric Evans
Building Microservices Sam Newman
Cracking the Coding Interview Gayle Laakmann McDowell
Art of Scalability: Scalable Web Architecture, Processes, and Organizations for the Modern Enterprise Martin L. Abbott, Michael T. Fisher
Building Microservices with ASP.NET Core: Develop, Test, and Deploy Cross-Platform Services in the Cloud Kevin Hoffman
Kotlin in Action Dmitry Jemerov, Svetlana Isakova
xUnit Test Patterns: Refactoring Test Code Gerard Meszaros
Reactive Design Patterns Roland Kuhn Dr., Brian Hanafee, Jamie Allen
@jboliveira
jboliveira / set-chmod-400-windows.ps1
Last active March 12, 2021 16:16 — forked from rjmii/chmod-400.ps1
Set permission of file equivalent to chmod 400 on Windows.
$path = "[FILE_PATH]"
icacls.exe $path /reset
icacls.exe $path /GRANT:R "$($env:USERNAME):(R)"
icacls.exe $path /inheritance:r