Skip to content

Instantly share code, notes, and snippets.

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

Renato Apaza T. renatoapaza

🏠
Working from home
View GitHub Profile
@sanskritkm
sanskritkm / Balsamiq Mockups 3.5.17
Last active August 14, 2025 11:02
Balsamiq Mockups 3.5.17 for Desktop full license key (Tested) or Balsamiq Wireframes for Desktop
Balsamiq Wireframes for Desktop full license key free
This old name is Balsamiq Mockups now the company changing the name to Balsamiq Wireframes for Desktop insteed
HOW TO:
First download softwere here: https://balsamiq.com/wireframes/desktop/
Install and follow screen direction
Use below serial:
=====================================================================================
@konstantinbo
konstantinbo / custom-juno.sh
Last active February 12, 2020 20:18
Thing to do after installation of Elementary OS Juno (5.0)
# First you update your system
sudo apt update && sudo apt-get dist-upgrade
# Uninstall unnecessary programs
sudo apt purge epiphany-browser epiphany-browser-data #browser
sudo apt purge pantheon-mail
# Bring back Software and Updates from Ubuntu
sudo apt-get install software-properties-gtk
# Properties Commons (to install elementary tweaks)
@josantonius
josantonius / http-status-codes.json
Last active May 18, 2025 13:55
Full list of HTTP status codes (Español | English)
{
"en": {
"1xx": {
"short": "Informational",
"large": "Request received, continuing process. This class of status code indicates a provisional response, consisting only of the Status-Line and optional headers, and is terminated by an empty line. Since HTTP/1.0 did not define any 1xx status codes, servers must not send a 1xx response to an HTTP/1.0 client except under experimental conditions."
},
"100": {
"short": "Continue",
"large": "The server has received the request headers and the client should proceed to send the request body (in the case of a request for which a body needs to be sent; for example, a POST request). Sending a large request body to a server after a request has been rejected for inappropriate headers would be inefficient. To have a server check the request's headers, a client must send Expect: 100-continue as a header in its initial request and receive a 100 Continue status code in response before sending the body. The response 417 Expectation Failed i
@vegaasen
vegaasen / UnlockUser.java
Last active April 8, 2022 19:23
Unlock user in AD using java and UnBoundID :-)
/**
* Simplifies the process of unlocking users.
* <p>
* The AD attribute "userAccountControl" may be any of the following
* - 512 Enabled Account (normally this..)
* - 514 Disabled Account
* - 544 Enabled, Password Not Required
* - 546 Disabled, Password Not Required
* - 66048 Enabled, Password Doesn't Expire
* - 66050 Disabled, Password Doesn't Expire