top of page

groups

View groups and posts below.

This post is from a suggested group

Giestro Full Release 5 is officially out! Check it out on Replit!

This post is from a suggested group

Giestro for Python update fr-1-4-p is out!

https://replit.com/@pixilmaybe/python-giestro

pixilmaybe
This post is from a suggested group

The boiler.java template has been released at replit.com, view and use now at:


🎉 replit.com/boiler-java

This post is from a suggested group


This post is from a suggested group

Compact Class Main and PSVM for Java:


import javax.swing.JOptionPane;class Main{public static void main(String[] args)

{

}

}

pixilmaybe
This post is from a suggested group

Welcome to the JavaJavaJava (JJJ) community, where you can share Java, javascript and Boilerjava code as well as ask questions!

This post is from a suggested group
pixilmaybe
This post is from a suggested group

Repost of printClr(2):


class printClr:
    cPink = '\033[95m'
    cBlue = '\033[94m'
    cCyan = '\033[96m'
    cGreen = '\033[92m'
    cYellow = '\033[93m'
    cRed = '\033[91m'
    cWhite = '\033[0m'
    sBold = '\033[1m'
    sUnderline = '\033[4m'
    end = '\033[0m'

# Colours always start with "c"
# Text styles always start with "s"
# Type "end" at the {printClr.end} of a print() statement to avoid overlapping!
# Type your script below:


example:

print(f"{printClr.cYellow}Hello World{printClr.end}")

OUTPUT:
Hello World
This post is from a suggested group

Timity module:


Get time easily.


Copy the following text into your IDE:


import datetime as dt


class timity:


formatt = "%H:%M:%S"


bottom of page