This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
# postgre-env.list | |
POSTGRES_USER=postgres | |
POSTGRES_PASSWORD=your_pg_password | |
# pgadmin-env.list | |
[email protected] | |
PGADMIN_DEFAULT_PASSWORD=your_pgadmin_password | |
# docker-compose.yml | |
version: '3.7' |
use image::{io::Reader as ImageReader, GenericImageView}; | |
use reqwest::blocking::get; | |
use std::io::{Cursor, Write}; | |
fn main() { | |
// Fetch the image from the URL | |
let url = "https://media-4.api-sports.io/football/teams/529.png"; | |
let response = get(url).expect("Failed to fetch the image"); | |
let bytes = response.bytes().expect("Failed to read response bytes"); |