It is a very big community with a server that have many users that user can play and tinkering around
- Go to tilde.club
- Click at Sign-up
- Put everything it says
- When you reached public ssh key. You have 2 ways
pkg = ["discord","discord-ext-alternatives","SimpleEconomy","asyncio"] | |
for x in pkg: | |
import os | |
os.system(f"pip install {x}") | |
print(f"Done install {x}") | |
import discord | |
from discord.ext import commands | |
from SimpleEconomy import Seco | |
import random | |
import asyncio |
import discord | |
from discord.ext import commands,tasks | |
from SimpleEconomy import Seco | |
import random | |
import asyncio | |
bot = commands.Bot(command_prefix="m") | |
@bot.event | |
async def on_command_error(ctx,error): | |
await ctx.send(error) |
from flask import Flask | |
from threading import Thread | |
app = Flask(__name__) | |
@app.route('/') | |
def main(): | |
return {"hello" : "everything is ok"} | |
def run(): | |
app.run(host="0.0.0.0",port=8080) |
while True: | |
from random import sample | |
from datetime import timedelta | |
from time import time, sleep | |
from os import system | |
from string import ascii_letters, digits | |
inp = int(input("String length : ")) | |
ainp = input("Upper or normal?") | |
count = 1 |
It is a very big community with a server that have many users that user can play and tinkering around
use std; | |
use log; | |
use env_logger; | |
struct CustomTargetAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA{ | |
file: std::fs::File | |
} | |
impl CustomTargetAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA { | |
fn new() -> Result<CustomTargetAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA, std::io::Error> { |
int counts = 0;
int *pointer_counts = &counts;
A pointer is a variable that stores the memory address of another variable as its value.
A pointer variable points to a data type (like int
, str
) of the same type, and is created with the *
operator.
When print out the pointer, it would look something like this.
Code: