It's wrong source of this image
The correct order :
The correct order :
background: #fff url("./assets/one.jpeg") repeat center center fixed;background-colorbackground-imagebackground-repeatbackground-position background-attachment๐4โค2๐ฅ1
Guys, OpenAI has restricted people from generating
Ghibli art images further.To be honest, I am very happy for Hayao Miyazaki. He mastered that art with emotions and dedicated his time to it. But I knew that even if OpenAI hadn't restricted it, AI still wouldn't be able to replicate his artโat least not until AI gains emotions.
Please open Telegram to view this post
VIEW IN TELEGRAM
โค5๐2๐ฅ1๐
1
So guys i have just launched uad similar to projects like universal android debloater but its not a bloatware it self it's CLI it's fast delete the android apps from your sight that you dont need
GitHub
GitHub - MukundSinghRajput/uad
Contribute to MukundSinghRajput/uad development by creating an account on GitHub.
๐3๐ฅฐ1๐1
use rand::TryRngCore;
use rand::rngs::OsRng;
fn gen_psswd(len: usize) -> Result<String, Box<dyn std::error::Error>> {
const CHARSET: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZ\
abcdefghijklmnopqrstuvwxyz\
0123456789\
!@#$%^&*()-_=+[]{}|;:,.<>?";
let mut rng = OsRng;
let mut password = String::with_capacity(len);
for _ in 0..len {
let rand_index = rng.try_next_u32()? as usize % CHARSET.len();
password.push(CHARSET[rand_index] as char);
}
Ok(password)
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
let password = gen_psswd(16)?;
println!("Generated secure password: {}", password);
Ok(())
}
Unlike conventional password generators that rely on predictable pseudo-randomness, this one is extremely hard for attackers to guessโeven if they know how it works.
So yeah, if youโve never heard of OS-level randomness... this might just be the most secure password generator youโve seen so far
Please open Telegram to view this post
VIEW IN TELEGRAM
๐ฑ7๐ข2โค1๐ญ1
๐ส๊ฑแดแด: Your Instant Music Companion for Telegram! ๐ต
Tired of switching apps just to share a song? Meet ๐ส๊ฑแดแด (@LysmpBot), the inline music bot that brings the party directly to your Telegram chats!
How it works:
It couldn't be simpler! Just type
Why you'll love ๐ส๊ฑแดแด:
โก๏ธ Instant Sharing: No more fumbling with links or leaving your conversation.
๐ถ Seamless Integration: Works perfectly in private chats, groups, and channels.
๐ง Pure Convenience: Search and send your favorite tunes with just a few taps.
Ready to try it out?
Give ๐ส๊ฑแดแด a spin today and elevate your chat experience with instant music sharing!
Remember it's still in beta sometimes the audio just dont appear but don't worry it would be fixed in future
--- @MukundX
Tired of switching apps just to share a song? Meet ๐ส๊ฑแดแด (@LysmpBot), the inline music bot that brings the party directly to your Telegram chats!
How it works:
It couldn't be simpler! Just type
@LysmpBot followed by the song name in any chat, and hit send. ๐ส๊ฑแดแด instantly finds and lets you share the music, right there, right then.Why you'll love ๐ส๊ฑแดแด:
โก๏ธ Instant Sharing: No more fumbling with links or leaving your conversation.
๐ถ Seamless Integration: Works perfectly in private chats, groups, and channels.
๐ง Pure Convenience: Search and send your favorite tunes with just a few taps.
Ready to try it out?
Give ๐ส๊ฑแดแด a spin today and elevate your chat experience with instant music sharing!
Remember it's still in beta sometimes the audio just dont appear but don't worry it would be fixed in future
--- @MukundX
โค2๐1๐ญ1
Tired of touching grass? Read manga instead.
Just summon @getmangarobot and type something like:
@getmangarobot one piece
Boom. Manga. Delivered. No filler episodes, we promise.๐ฟ ๐
-- I will add some new features like recent released and page screenshot to get some sexy manga/manwah pages like the attached image and genre search and favourite list later
Just summon @getmangarobot and type something like:
@getmangarobot one piece
Boom. Manga. Delivered. No filler episodes, we promise.
-- I will add some new features like recent released and page screenshot to get some sexy manga/manwah pages like the attached image and genre search and favourite list later
Please open Telegram to view this post
VIEW IN TELEGRAM
โค3
Tired of accidentally missing anime news you donโt care about?
Well, tough luck โ weโre sending it to you anyway.
๐ @RecentAnimeNews
Because your brain deserves one more notification.
Well, tough luck โ weโre sending it to you anyway.
Because your brain deserves one more notification.
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1
GitHub
GitHub - MukundSinghRajput/recent-anime-news: Auto anime news sender telegram bot
Auto anime news sender telegram bot. Contribute to MukundSinghRajput/recent-anime-news development by creating an account on GitHub.
Here is the GitHub repository to make an auto anime news sender bot it scraps myanimelist.net.
Prerequisites:
- Bot Token
- Redis DB URI get one from cloud.redis.io
- Chat ID or Username
Additional steps for VPS:
Copy the sample env and change it with your values:
-- Other steps are mentioned in README.MD or u can directly build Dockerfile and deploy it
Prerequisites:
- Bot Token
- Redis DB URI get one from cloud.redis.io
- Chat ID or Username
Additional steps for VPS:
Copy the sample env and change it with your values:
cp .env.example .env
-- Other steps are mentioned in README.MD or u can directly build Dockerfile and deploy it
โค2
๐ FileServer in Rust
Just dropped my first OSS Rust project โ a simple file server to upload & serve files with preview support.
Fast โก๏ธ, lightweight ๐ชถ, and supports both SQLite and Postgres.
Check it out ๐ GitHub
โ Features:
* Upload & download files easily
* Database support: SQLite (default) + Postgres
* Preview generator
๐ TODO:
* [ ] Set custom file size in uploads
Just dropped my first OSS Rust project โ a simple file server to upload & serve files with preview support.
Fast โก๏ธ, lightweight ๐ชถ, and supports both SQLite and Postgres.
Check it out ๐ GitHub
โ Features:
* Upload & download files easily
* Database support: SQLite (default) + Postgres
* Preview generator
๐ TODO:
* [ ] Set custom file size in uploads
โค6
