I hereby claim:
- I am noelruault on github.
- I am noelruault (https://keybase.io/noelruault) on keybase.
- I have a public key ASB58nJVOJrG2WiUC4w5AZpaJCQQTfB9YW1bWaHIP8qR5Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "os" | |
| ) | |
| const webSiteURL = "http://www.example.com/index.html" |
Killed: 9 as output in the terminal.Security & Privacy panel, General tab is updated with the info that the binary was prevented from running. Click Allow Anyway.Open - the binary should run as you expect.| #!/bin/bash | |
| #================================================================ | |
| # HEADER | |
| #================================================================ | |
| #% SYNOPSIS | |
| #+ ${SCRIPT_NAME} [-hv] args ... | |
| #% | |
| #% DESCRIPTION | |
| #% This is a script that erases a disk and then copies a designated source disk into an specified target disk. | |
| #% You can run it in one line when connected to the internet like this: |
| #!/bin/bash | |
| supported_resolutions=("144" "240" "360" "480" "720" "1024") # Supported resolutions | |
| supported_extensions=("png" "jpg" "jpeg") # Supported image file extensions | |
| selected_output_directory="" | |
| # default_output_directory="img" | |
| selected_resolution="" | |
| while [[ $# -gt 0 ]]; do |
| #!/bin/bash | |
| # Converting and rendering web fonts to its base64 @font-face variant | |
| # Also posted on StackOverflow! https://stackoverflow.com/a/77929643/4349318 | |
| # Initialize a variable to hold all @font-face codes | |
| all_font_face_codes="" | |
| FONT_DIR="." | |
| OUTPUT_DIR="./css" |
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <form id="myForm" action="output.html" method="get"> | |
| <label for="method">Choose a method:</label> | |
| <select id="method" name="method"> | |
| <option value="GET">GET</option> | |
| <option value="POST">POST</option> |
| ## Remove Windows users script | |
| # Initial excluded users list | |
| $excludedUsers = @("Admin", "admin", "Administrator", "administrator", "Administrador", "administrador", "Invitado", "DefaultAccount", "WDAGUtilityAccount", "USER", "User", "user", "gaia", "Professorat", "Profesorado", "profesorado", "professor", "profesor", "professorat") | |
| # Get existing local users | |
| $localUsers = Get-WmiObject -Class Win32_UserAccount -Filter "LocalAccount='True'" | Select-Object -ExpandProperty Name | |
| # Filter excluded users that are in the local users list | |
| $defaultChoices = $excludedUsers | Where-Object { $localUsers -contains $_ } |