| Gigabytes (GB) | Megabytes (MB) decimal | Megabytes (MB) binary |
|---|---|---|
| 1 GB | 1,000 MB | 1,024 MB |
| 2 GB | 2,000 MB | 2,048 MB |
| 3 GB | 3,000 MB | 3,072 MB |
| 4 GB | 4,000 MB | 4,096 MB |
| 5 GB | 5,000 MB | 5,120 MB |
| 6 GB | 6,000 MB | 6,144 MB |
| 7 GB | 7,000 MB | 7,168 MB |
| 8 GB | 8,000 MB | 8,192 MB |
Discover gists
This file contains hidden or 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
| // Como Usar: | |
| // Abra https://www.mercadolivre.com.br/cupons/filter?status=inactive | |
| // Pressione F12 → Console | |
| // Cole o script e pressione Enter | |
| // O script vai: | |
| // * Criar um iframe | |
| // * Clicar em todos os botões "Aplicar" | |
| // * Fazer refresh | |
| // * Repetir até não haver mais botões |
This file contains hidden or 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
| # - Q* (Q-Star) | |
| # /\__/\ - q.py | |
| # ( o.o ) - v0.0.1 | |
| # >^< - by @rUv | |
| # 01110010 01110101 01110110 | |
| # This is a proof of concept implementation of the Q* (AGI) leak from OpenAi | |
| # This Python code defines a sophisticated Q-learning agent for reinforcement learning. | |
| # It includes dynamic exploration, learning from experiences, and checks for convergence. | |
| # The agent's capabilities are refined iteratively to optimize its decision-making strategy in a given environment. |
This file contains hidden or 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
| #Update system & reboot | |
| sudo apt update && sudo apt -y upgrade | |
| sudo reboot | |
| #Install Asterisk 16 LTS dependencies | |
| sudo apt -y install git curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev | |
| #Add universe repository and install subversio | |
| sudo add-apt-repository universe | |
| sudo apt update && sudo apt -y install subversion |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Ascendia Build Script - sm7125 | |
| # Coded by BlackMesa123 @2023 | |
| # Modified and adapted by RisenID @2024 | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # |
This file contains hidden or 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
| /* | |
| Element to slide gets the following CSS: | |
| max-height: 0; | |
| opacity: 0; | |
| overflow: hidden; | |
| transition: max-height 0.4s ease 0s; | |
| */ | |
| /** | |
| * Like jQuery's slideDown function - uses CSS3 transitions |
This file contains hidden or 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
| import java.io.FileDescriptor; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStream; | |
| import java.io.PrintStream; | |
| public class HelloWorld{ | |
| private static HelloWorld instance; | |
| public static void main(String[] args){ | |
| instantiateHelloWorldMainClassAndRun(); |
To use install Tampermonkey extension for Chrome-based or Firefox-based browsers.
This file contains hidden or 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
| # To enable use of the DCO kernel module in openvpn connections from networkmanager | |
| # run from sudo su | |
| # only tested with Mint 21.3 so far. | |
| # https://community.openvpn.net/openvpn/wiki/OpenvpnSoftwareRepos | |
| mkdir -p /etc/apt/keyrings # directory does not exist on older releases | |
| # fail fast, silent, show errors, location (follow redirect?) | |
| curl -fsSL https://swupdate.openvpn.net/repos/repo-public.gpg | gpg --dearmor > /etc/apt/keyrings/openvpn-repo-public.gpg | |
| arch=$(dpkg --print-architecture) | |
| uver=` ( . /etc/os-release ; echo $UBUNTU_CODENAME)` |
This file contains hidden or 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
| # /etc/crowdsec/notifications/ntfy.yaml | |
| type: http # Don't change | |
| name: ntfy # Must match the registered plugin in the profile | |
| # One of "trace", "debug", "info", "warn", "error", "off" | |
| log_level: trace | |
| # group_wait: # Time to wait collecting alerts before relaying a message to this plugin, eg "30s" | |
| # group_threshold: # Amount of alerts that triggers a message before <group_wait> has expired, eg "10" |
NewerOlder