Categories > WeAreDevs > Suggestions >

Code block bugs and Rogue Hub on scripts page

New Reply

Alternate

stop take my rice

patron

Posts: 672

Threads: 103

Joined: Mar, 2022

Reputation: 38

Posted

So, first, code blocks are kinda broken lmfao, they look pretty ugly and don't really work anymore.

 

Also, Rogue Hub is still on the scripts page despite it being discontinued

 

Code block example below:

import random
import string

def generate_password(length=12):
    characters = string.ascii_letters + string.digits + string.punctuation
    password = ''.join(random.choice(characters) for i in range(length))
    return password
  • 1

  • Comment

test_bot2 is back

 

please stop taking my rice i need it to breathe

Posts: 1658

Threads: 80

Joined: Feb, 2020

Reputation: 87

Replied

just tried it that's weird

  • 0

  • Comment

JJSploit_On_Top

JJSploitOnTop

vip

Posts: 415

Threads: 2

Joined: Apr, 2021

Reputation: 42

Replied

Tbh most of the scripts on the Scripts page need to be changed to newer scripts. Jon really should consider removing most of the scripts on there and replacing them with modern scripts.

  • 0

  • Comment

https://i.imgur.com/FBZnezJ.png

Person who made banner https://forum.wearedevs.net/profile?uid=92872

boyke

kid with a laptop

vip

Posts: 1077

Threads: 20

Joined: May, 2021

Reputation: 52

Replied

print("is brokne")
  • 0

  • Comment

Posts: 988

Threads: 34

Joined: Dec, 2016

Reputation: 106

Replied

@tempegoreng, You were right. The feature works, but it wasn't set to accept Python; Although the editor option list made it seem so. I've just now added support for it. I've also added support for Rust.

 

import random
import string

def generate_password(length=12):
    characters = string.ascii_letters + string.digits + string.punctuation
    password = ''.join(random.choice(characters) for i in range(length))
    return password

 

// This is the main function.
fn main() {
    // Statements here are executed when the compiled binary is called.

    // Print text to the console.
    println!("Hello World!");
}
  • 0

  • Comment

Login to unlock the reply editor

Add your reply

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )