#๐Ÿ’ป๏ธฑprogramming

1 messages ยท Page 13 of 1

quiet arrow
#

That's a github thing probably, not git

#

Maybe it just needs more idk

vital summit
#

I mean git commands

#

Kinda these stuff

#

list of updates

supple schooner
#

mb you didnt push it correctly?

supple schooner
#

ew๐Ÿ’€

vital summit
#

I don't really know how to do that correctly

#

Example may be?

#
git add .
git commit -m "First commit"
git push -f origin main
#

that's how i do it

vital summit
supple schooner
vital summit
#

ok done

supple schooner
#

then go to webhooks on github page

vital summit
#

okay

supple schooner
#

then add a new one

#

on the Payload URL paste your discord webhook link

vital summit
#

wait wait

supple schooner
#

Content type * : application/json

supple schooner
vital summit
supple schooner
#

behind the url, add /github

vital summit
#

behind

supple schooner
#

tbh, i kinda forgot how i did it. there's tutorial on the internet

vital summit
#

or

#

at the end

supple schooner
#

end

vital summit
#

like that?

supple schooner
#

yes

vital summit
#

(I am so bad at hiding stuff)

#

oh my god ๐Ÿ˜ญ

supple schooner
#

now delete the pic lol

vital summit
#

Alright

supple schooner
#

the token is important lol

vital summit
#

I see

supple schooner
#

if someone access it, ppl can just start spamming webhooks with it

supple schooner
#

you can try pushing one commit

vital summit
#

How do I make list of commissions

supple schooner
#

these are just actions that youve done when pushing some commit or merging pulls etc

vital summit
#

git push is obvious one so yeah

supple schooner
#

i dont use that ๐Ÿ’€ i just use the button in intellij to push my commits lol

vital summit
#

oh

#

I guess I will just google it

supple schooner
#

yea

supple schooner
#

good night anyways

quiet arrow
#

gn

vital summit
#

I just use -f or -u

quiet arrow
#

You shouldn't have to -f

vital summit
#

so -u?

quiet arrow
#

Idk what that does, I just do git push

vital summit
#

ill try

#

try*

steep dagger
#

I've not once had to use force push

#

my favourite way to use git is just git stash -u (include untracked) then git apply 0

#

any other way of switching branches is wrong

vital summit
#

Guys delete your Visual Studio Code and IntellijIDE

storm swift
paper python
#

Code

jolly palm
#

I have VS Code, InteliJ and MS365 :3

pallid plaza
jolly palm
#

๐Ÿ˜‚

grim goblet
#

is there a program out there that can convert hundreds of images back into a video??

#

i need it for a project im working on

devout nest
#

Capcut

vital summit
#

minecraft

dry ermine
#

Any editing software

zinc steppe
vital summit
quick glacier
#

@quiet arrow is there cubepanion mod jarfile

#

?

quiet arrow
#

you can compile it from GitHub

quick glacier
#

how

quiet arrow
#

But if you have it installed ~/.minecraft/labymod-neo/addons

quick glacier
#

noh not for laby

#

wait

#

can i take it from there

quiet arrow
#

yes

#

But, it's a Laby addon. it won't work without laby lol

quick glacier
#

o

#

is it not possible to get on feather

quiet arrow
#

Not without rewriting it

quick glacier
#

damn

quiet arrow
#

@spice maple is doing something like it I believe

spice maple
#

mhm

quick glacier
#

ah alr

spice maple
#

what are u looking for from laby addons

quick glacier
#

?

#

cubepanion

spice maple
#

yea i mean from cubepanion what feature

quick glacier
#

autovote

#

and

#

item counter

#

like the diamonds,gold,ems

#

iron

spice maple
#

mmmm i have autovote but idk what item counter is

#

see my github in discord profile

quick glacier
#

alr thx

spice maple
#

i just havent updated it for lucky islands

#

do you know how to compile it from source?

quiet arrow
quick glacier
spice maple
#

do u want me to compile it for u or show u how to compile it urself

#

ofcourse when a stranger gives u a jar there is always a risk

quick glacier
#

i alr got a trojan from it once

#

lol

#

but u can do it

spice maple
#

ill just tell u how to for future reference

quick glacier
#

alre

spice maple
#
  1. install intellij for java
  2. download the zip and extract it OR git clone it (go through the source first, always check for malicious files)
  3. open the extracted folder with intellij
  4. you will see an elephant icon on the right side, click on it and you will see "build", click on it and let it build
  5. the jar is now in the folder in extractedFolder/build/libs
#

ping me if u dont understand something

quick glacier
#

1gb that program

#

damn

quick glacier
#

github is confusing

quiet arrow
#

you can just use the cli for gradle

spice maple
quick glacier
#

idk what its doing rn

#

i clicked on the elephant

#

nothings happening

spice maple
#

Send ss of intellij window

quick glacier
#

ah

#

now its building

spice maple
#

Ye

quick glacier
spice maple
#

Good

#

You dont need to anymore

#

If its building

quick glacier
#

will this take long

spice maple
#

Depends on your hardware

#

It wont be longer than 10mins

quick glacier
#

alr

civic prawn
#

hello can anybody help me? I made a own skin and it doesnt load in any Server, how can I change that

quiet arrow
#

Your skin may only use the steve/alex format, no custom stuff

civic prawn
#

but how can I change that

minor roost
clever salmon
#
#include <iostream>
#include <string>
#include <vector>
#include <map>

std::string FillBefore(std::string str, char symbol, int beforeSize) {
    std::string resultStr = str;
    int fillAmount = beforeSize - std::size(str);
    for (int i = 0; i < fillAmount; i++)
        resultStr += symbol;
    return resultStr;
}

void PrintTable(std::vector<std::vector<std::string>> rows)
{
    std::map<int, int> columnSizes;
    size_t rowsSize = rows.size();
    size_t colsSize = rows[0].size();
    for (int i = 0; i < rowsSize; i++) {
        for (int j = 0; j < colsSize; j++) {
            std::string col = rows[i][j];
            int colSize = std::size(col);
            if (columnSizes[j] < colSize) {
                columnSizes[j] = colSize;
            }
        }
    }
    std::string borderStr = "+";
    for (int i = 0; i < colsSize; i++) {
        for (int j = 0; j < columnSizes[i]; j++)
            borderStr += "-";
        borderStr += "+";
    }

    std::cout << borderStr << std::endl;
    for (std::vector<std::string> row : rows) {
        std::string rowResult = "|";
        for (int i = 0; i < colsSize; i++) {
            std::string column = row[i];
            int size = columnSizes[i];
            rowResult += FillBefore(column, ' ', size);
            rowResult += "|";
        }
        std::cout << rowResult << std::endl;
        std::cout << borderStr << std::endl;
    }
}

My attempt to print a table in C++

quiet arrow
#

you can use an array rather than a map for storing the column sizes, your keys are 0-colsSize anyway ๐Ÿ™ƒ

Really funny, but I wrote almost the same stuff in Java a bit ago haha, for comparing some stuff and I was getting annoyed it wasn't aligned

floral ingot
#

@minor roost wsup

jolly palm
#

lil side project im working on ๐Ÿ‘€

#

Translate and copy every unice character cubecraft has inside a web tool ready to paste into mc :3

#

but ofc a warning bc things like that are also possible

supple schooner
#

Well I'm not really sure what you trying to do

jolly palm
jolly palm
#

Actually, my idea behind it was simply to fight my boredom and to make the Unicoodes more accessible to everyone.

clever salmon
#

secrets of programming: that's how statuses in Gradle, pip, Node.js, etc. works. (Python example)

import time

def render_status(content, msg):
    common_length = max(len(content), len(msg))
    print(msg.ljust(common_length, ' '))
    print(content.ljust(common_length, ' '), end="\r")

if __name__ == "__main__":
    for percent in range(1, 100 + 1):        

        scale = int(percent / 4)
        status = f"| {'=' * scale} {' ' * (25 - scale)} |" 

        handle_status(status, f"Processing... {percent}%")

        time.sleep(0.2)
#

\r symbol

#
Processing... 1%
Processing... 2%
Processing... 3%
Processing... 4%
Processing... 5%
...
Processing... 96%
Processing... 97%
Processing... 98%
Processing... 99%
Processing... 100%
| =========================  |
#

that's the magic

vagrant oyster
#

As someone who doesnt know code, this is voodoo to me

hardy socket
#

does anyone know how to get started in c++ with directx?

shut estuary
ebon oracle
lusty hare
#

how do i make GitHub repositories not packaged with a folder before the contents when downloading the entire repository

supple schooner
lusty hare
lusty hare
supple schooner
#

yea

lusty hare
#

wanted the downloaded repository only having the contents, not being shoved into a folder inside a zip

supple schooner
#

Well if you download the repository, it'll always come with a zip file

lusty hare
#

not sure if i should make a release or set up a workflow

#

i suck at the latter, not sure if i did something correctly in the former

fallow yacht
muted escarp
#

omg it's austin

steep dagger
#

gitchad

steep dagger
lofty vale
#

is there a way to use my ipad as a midi input interface to allow communication protocols and interfacing with a host pc through a back forward compatible data transmission port preferably with minimal latency

jolly palm
jolly palm
lofty vale
#

like use garagabend keyboard and transfer midi data to pc

jolly palm
lofty vale
#

oo ok ty

steep dagger
#

it's hard to read that my eyes glaze over

hidden imp
#

Has anyone ever programed to make your own website for school purposes?

quiet arrow
#

I think everyone who followed a course related to cs has had to do that :v

strong knoll
#

nah

#

i got banne for being good

open ore
#

@safe tangle best dev for pmmp

#

In my Eyes

safe tangle
alpine ore
jolly palm
steep dagger
#

mad flex

muted plank
#

@dry ermine

supple schooner
dry ermine
#

@muted plank

paper rain
#

never again, will i look at zips the same, they had the worst possible documentation ๐Ÿ˜ญ

steep dagger
#

spitting mad fax

#

Get starred.

#

I love the anger in the readme

paper rain
#

xd thanks

jolly palm
rose wraith
#

Is there any Client for Bedrock like Badlion Labymod or Lunar?

supple schooner
tidal minnow
#

i delete data?

#

bruuh

#

idk what to do!

plush walrus
#

There's nothing to be done unfortunately

cloud eagle
#

hi. is an admin online. i need help

cloud eagle
dreamy arrow
#

can some one teach me bedrock protocol please?mc_heart

steep dagger
#

no one will teach you it

#

every developer has to go through the great trail of reading the docs

#

some often fear the docs

#

but all programmers must overcome them, at whatever cost, to obtain true mastery

ivory flume
#

๐Ÿ—ฃ๏ธ ๐Ÿ”ฅ

supple schooner
#

๐Ÿ”ฅ

vital summit
#

๐Ÿ”ฅ

#

legendary words

dreamy arrow
runic vessel
#

The sky of the astral texture pack on bedrock no longer works, is it the pack that is not up to date or my console that is bugging

#

Can you help me please ?

indigo nacelle
# dreamy arrow Please guys

the documentation and youtube will be very helpful, it might be hard to find someone to take time out of their day to teach you something for free

clever salmon
#

C++ is easy

steep dagger
#

said no one ever

jolly palm
#

Haha

fossil nebula
#

ip

#

?

dreamy arrow
steep dagger
#

be the change you want to see - make that video!

silent zenith
minor roost
#

hi

#

What is the best version to play cubecraft in java?

#

the older the better

pallid plaza
vital summit
#

For enthusiastic Web Developers, I found two cool UI libraries for yall ๐Ÿ™Œ

Magic UI
Aceternity UI

jolly palm
vital summit
jolly palm
vital summit
jolly palm
vital summit
vital summit
#

May be one day

jolly palm
vital summit
#

Will need to check it out later then

jolly palm
#

Defo

fervent shadow
#

how do i draw

minor roost
#

Brainrotted script for cubecraft O:

skidibi= pyth starts --~ te FILE ids "9928263024" ohio.var respacks-~-~non bhvpacos (bedrock) -~-~ on end.

lucid bramble
#

.print hello world!

minor roost
#

For java/bedrock

vital summit
gaunt hill
vital summit
#

greenshock

steep dagger
#

I remember seeing greensock things everywhere on codepen

jolly palm
steep dagger
#

only place I've seen it though

#

I'm surprised I doesn't seem to come up more

#

I guess its kinda niche going that hard on the animations

jolly palm
steep dagger
#

but what tools do big tech companies not use lol

#

I meant more in the media space

#

and only 20k stars

paper rain
faint heron
#

Someone ran
age = age + 1
on me send help ๐Ÿ˜‚

steep dagger
#

while (theEndlessMarchOfTimeContinues) {
sleep(31_536_000);
age++;
}

finite venture
#
while true do
    
    if month == birthday.month and date == birthday.date then
        age=age+1
    end

    if year ==  death.year and month == death.month and date == death.date then
        exit()
    end

end
vocal night
finite venture
sharp crystal
vocal night
#

how

quiet arrow
sharp crystal
#

i just had a 3 hour long train trip

#

and im on a one hour train trip again

steep dagger
#

while (!allFreshWaterIsPolluted) {
sleep(1800);
sipWater();
}

vocal night
#

kek

open needle
finite venture
minor roost
# finite venture beacuse it is

@finite venture

what if I ๐Ÿ˜ฌ๐Ÿค”.. put my ||minecraft ||โ›๏ธ๐Ÿ’Ž ||bed ||๐Ÿ›๏ธ ๐Ÿ’ค.. ||next to yours|| ๐Ÿ˜ณ๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ.. ||aha ha ||๐Ÿ˜…๐Ÿคฃ.. ||just kidding||๐Ÿคช๐Ÿ˜.. ||unless..?|| ๐Ÿ˜๐Ÿ˜˜

finite venture
plush walrus
minor roost
steep dagger
#

every big tech company also needs awful internal tools of course

faint heron
verbal rock
#

What's this channel for...

jolly palm
#

Its nice to sniff for packets and get some information Out of simple Marketplace requests.

{
  "id": "5e6dca43-8a1a-459d-8b57-4ec43d974b19",
  "Title": {
    "en-us": "Elemental Teens",
    "neutral": "Elemental Teens"
  },
  "Description": {
    "en-us": "Earth, Fire, Air, Water! The elements all have their own unique look, and these trendy teens have chosen their own! Which is your favorite?\n\n+ 10 Elemental Teens\n+ FREE Skin: Cory\n\nBy CubeCraft Games",
    "neutral": "Earth, Fire, Air, Water! The elements all have their own unique look, and these trendy teens have chosen their own! Which is your favorite?\n\n+ 10 Elemental Teens\n+ FREE Skin: Cory\n\nBy CubeCraft Games"
  },
  "ContentType": "MarketplaceDurableCatalog_V1.2",
  "Tags": [
    "skinpack",
    "tag.cute",
    "tag.cool",
    "tag.fire",
    "tag.epic",
    "tag.seasonal",
    "genre.roleplaying_game"
  ],
  "CreatorId": "2535444456665343",
  "Images": [
    {
      "Type": "Thumbnail",
      "url": "EXTERNAL_WEBLINK"
    }
  ],
  "CreationDate": "2024-08-30T09:28:33.896Z",
  "AverageRating": 2.5,
  "TotalRatingsCount": 2,
  "IsTest": false,
  "DisplayProperties": {
    "bundleMSRP": 0,
    "creatorName": "CubeCraft Games",
    "price": "310",
    "purchasable": true,
    "packIdentity": [
      {
        "type": "skinpack",
        "uuid": "04395553-0781-4a23-9d54-d253955b10aa"
      }
    ]
  },
  "Prices": [
    {
      "sales": [],
      "listPrice": "310",
      "currencyId": "ecd19d3c-7635-402c-a185-eb11cb6c6946"
    },
    {
      "sales": [],
      "listPrice": "310",
      "currencyId": "0113e233-7637-48e7-91b0-349fdc74713d"
    }
  ],
  "Locale": "en-us",
  "StartDate": "2024-09-10T17:00:00Z",
  "_rid": "mpUQANlVhwOrjQAAAAAAAA==",
  "_self": "dbs/mpUQAA==/colls/mpUQANlVhwM=/docs/mpUQANlVhwOrjQAAAAAAAA==/",
  "_etag": "\"cd001593-0000-0700-0000-66eb08840000\"",
  "_attachments": "attachments/",
  "_ts": 1726679172
}
steep dagger
#

average 2.5 kinda rough

storm eagle
minor roost
steep dagger
#

you can get that on most websites very easily

white hound
#

Guys anyone can help me i cant join cube craft

polar zealot
#

A microcode in my state is called a BBC Microbit ๐Ÿ’€

jolly palm
jolly palm
storm eagle
#

you do know that theres an unspoken rule in yonking where you do not telling people about it right

jolly palm
storm eagle
#

yeah and the endpoint url is

#

not easily public

minor roost
jolly palm
storm eagle
#

no dont give it to me

#

not interested to it

jolly palm
jolly palm
minor roost
jolly palm
jolly palm
minor roost
jolly palm
minor roost
jolly palm
vital summit
vital summit
jolly palm
vital summit
#

"not documented" ๐Ÿ˜ญ

jolly palm
jolly palm
# vital summit I see

See the cryptic looking GET req there (Not the full one since im on Phone hah)? ๐Ÿ˜ญ
Its a pain the find them

minor roost
jolly palm
#

Found an Endpoint to Display all the free items.
Aka the Items that Cost nothing

{
  "id": "053bbc6a-d0e6-4f11-a0c5-d855b546b9fa",
  "Title": {
    "en-us": "More TNT! Add-On",
    "neutral": "More TNT! Add-On"
  },
  "Description": {
    "en-us": "This explosive Add-On is pretty simpleโ€ฆ It adds more TNT to any world you want! Craft yourself a wide selection of super overpowered and unique TNT types!",
    "neutral": "This explosive Add-On is pretty simpleโ€ฆ It adds more TNT to any world you want! Craft yourself a wide selection of super overpowered and unique TNT types!"
  },
  "ContentType": "MarketplaceDurableCatalog_V1.2",
  "Tags": [
    "addon",
    "tag.craftable_blocks",
    "tag.craftable_tools",
    "tag.crafting",
    "tag.custom_blocks",
    "tag.custom_tools",
    "tag.lucky",
    "tag.mega",
    "tag.add_on",
    "genre.action"
  ],
  "CreatorId": "2535452686478334",
  "Images": [
    {
      "Type": "Thumbnail",
      "url": "EXTERNAL_WEBLINK"
    }
  ],
  "CreationDate": "2024-02-13T19:27:37.624Z",
  "AverageRating": 4.8,
  "TotalRatingsCount": 281268,
  "IsTest": false,
  "DisplayProperties": {
    "bundleMSRP": 0,
    "creatorName": "Tsunami Studios",
    "price": "0",
    "purchasable": true,
    "videoUrl": "EXTERNAL_WEBLINK",
    "packIdentity": [
      {
        "type": "behaviorpack",
        "uuid": "3dad7c02-d9d8-4fb2-a8ac-3ad9b33c6d1b"
      },
      {
        "type": "resourcepack",
        "uuid": "e0bcdf81-d096-43ac-9d6f-463238a7e5c8"
      }
    ]
  },
  "Prices": [
    {
      "sales": [],
      "listPrice": "0",
      "currencyId": "ecd19d3c-7635-402c-a185-eb11cb6c6946"
    },
    {
      "sales": [],
      "listPrice": "0",
      "currencyId": "0113e233-7637-48e7-91b0-349fdc74713d"
    }
  ],
  "Locale": "en-us",
  "StartDate": "2024-02-20T18:00:00Z",
  "_rid": "mpUQANlVhwMrgwAAAAAAAA==",
  "_self": "dbs/mpUQAA==/colls/mpUQANlVhwM=/docs/mpUQANlVhwMrgwAAAAAAAA==/",
  "_etag": "\"cf00a37b-0000-0700-0000-66ec584a0000\"",
  "_attachments": "attachments/",
  "_ts": 1726765130
}
#

productmanagement.freeproducts.json?locale=en-us&limit=25

#

Locate is the LANG Code
And the Limit is the param how many items are in the JSON

#

Also an Endpoint to get all Marketplace Creators this could be helpful to search for special creators in the other endpoints.

{
  "100Media": "master_player_account!C815378092EF16AB",
  "2-Tail Productions": "master_player_account!FAAF566E8298B9CB",
  "4J Studios": "master_player_account!28D0EC53875E6219",
  "4KS Studios": "master_player_account!2E272B64665ECEE8",
  "5 Frame Studios": "master_player_account!B2D7071F1B63021C",
  "555Comic": "master_player_account!20469F736BA06B81",
  "57Digital": "master_player_account!628A275A0B44E2F9",
  "A Foxy Toast": "master_player_account!A069C17F4BED7DBF"
... further creators
#

All with a Phone on vacation ๐Ÿ’€

steep dagger
#

there's a mobile app for postman??

#

I'm still sad that postman ended up being mostly useless to me

#

it can't run javascript so the fancy dumps in laravel don't work at all

brisk flare
jolly palm
jolly palm
jolly palm
fervent shadow
#

should i use godot or unity for a 2d pixel pizza tower style game

jolly palm
steep dagger
#

I couldn't find any that can run javascript in the response :(

#

other than browsers themselves in the dev tools of course

jolly palm
tranquil ice
arctic prairie
#

@tranquil ice

#

is there any command name

#

/icanhavebukkit

celest marsh
jolly palm
#

Lol

arctic prairie
vital summit
arctic prairie
steep dagger
modest shell
#

I can code commandblocks

#

๐Ÿ‘

open needle
#

Does CC allow the use of 1.1.1.1 WARP?

#

(A DNS resolver)

quiet arrow
#

yes you can have cloudflare tell you where stuff is

muted escarp
#

hey feestja did you know that spiders are the only web developers that like finding bugs?

left grove
#

hello

half hull
#

is this kust help with command blocks

#

im new here

steep dagger
#

Linux is fun

#

I somehow accidentally deleted the entire user interface

#

I now only have a terminal

jolly palm
#

Terminal is the banger for Linux anyway haha

pallid plaza
steep dagger
#

explain me why the audio packages are needed to run gnome

quiet arrow
#

probably for the sound effects

green blaze
#

Can

#

I

paper rain
#

no

#

you cannot

peak remnant
#

Guys, how do I link my Cube Craft account to Discord

quiet arrow
peak remnant
#

thanks

pastel grail
#

!JAVA SCRIPT CODING !ANYLYZING!

#

!gamerules

#

!edit^server_profile

final oar
#

how can i report a player??

#

pls

#

falls against him three times at bedwars

pastel grail
#

(player)=scanning+12hours(PLAYTIME)= 30 hours

opal oyster
pallid plaza
#

spiders are cool btw

opal oyster
#

no

#

theyre not cool

#

spiders i mean

#

not the devs and qa obv

#

i would never say something like that about them

#

never ever

#

heh

quiet arrow
steep dagger
#

spiders are the best when they are not in my house

paper rain
#

spiders are actually quite usefull when they are in the house

#

they catch nasty bugs, flies, mosquitos

#

while doing nothing to you

#

win win situation

#

unless u live in Madagascar ig

indigo nacelle
#

The only spiders I Iike are web crawlers

pastel grail
#

(user) (time)= True

open needle
modest bronze
#

sigmaaaaaaaaaa

lean orchid
#

U devs should add new kits bro and ranked skywars would be cool just like hypixel๐Ÿ‘๐Ÿพ๐Ÿ‘๐Ÿพ๐Ÿ‘๐Ÿพ

flint flare
noble gyro
#

but like ranked bedwars

#

of hypixel

#

the matchmaking would be on a discord server

lean orchid
storm flower
#

and u?

#

who u think u is

lean orchid
# storm flower and u?

Someone who likes pvp and wants that the pvp system like ranked skywars to be added so it can gain more players????

storm flower
#

The ranked is already integrated?

#

??

#

???

lean orchid
#

???

#

??

#

?

storm flower
#

?

lean orchid
#

What is lb

#

???

storm flower
#

leader board

lean orchid
#

Bruh

#

U could just say leaderboard

#

Bruh

lean orchid
#

Gamemode

#

Ranked skywars

#

New kita

#

Kits*

#

Like hypixel was doing it but hypixel deleted it

storm flower
lean orchid
lean orchid
#

Builder is trash

storm flower
#

it's enought

lean orchid
#

Tank is ok

storm flower
#

best kit

#

all pro ppl use that

#

for 45 sec game

lean orchid
storm flower
#

builder most skilled kit

lean orchid
#

They all warr using builder or tank

lean orchid
#

Ur prob right

#

But

storm flower
#

but

lean orchid
#

The other ones arr trash

#

TRASH

storm flower
#

yes

#

redstone

lean orchid
#

they need to remove them and add new kita

lean orchid
#

With that traps that never works on me

storm flower
lean orchid
#

Bedwars

storm flower
#

u have an other one who gave u 3 gap

#

what is the best???

lean orchid
#

Idk what u talking about

storm flower
#

huh

#

kit

#

ew

lean orchid
#

Wat

#

And they need to add rods

#

For knockback

#

Like snowballs

#

And eggs

#

They once had them in skywars but they rmoved it idk why

storm flower
#

mb

#

their are in chest

scenic fulcrum
#

Hii

wise hound
#

found it in a random server ๐Ÿ˜›

olive lion
#

import java.util.Scanner;

class FishScanner {
public static void main(String[] args) {

    System.out.println("FISH SCANNER");
    System.out.println("Are you a fish?");
    Scanner scan = new Scanner(System.in);
    String fish = scan.nextLine();

    if (fish.equals("yes")) {
        System.out.println("><(((('>");
    } else if (fish.equals("no")) {
        System.out.println("thats cap");
        System.out.println("This you? ><(((('>");
    } else {
        System.out.println("Bro, what are you saying? U fish ><(((('>");
    }

    scan.close();
}

}

#

made a fish scanner

jolly palm
#

Haha

olive lion
#

i lowkey studied 12 weeks of compsci for dis

jolly palm
#

12 weeks?
Lol

Why sooo long

olive lion
#

cuz u n i

spice maple
#

what do u guys think about this gui im making, ive still not finished the configuration system for features but id like to know others thoughts

warm bison
spice maple
warm bison
spice maple
#

Theres not much being rendered or computed

#

Minimal animations

#

No reason to lag unless you are on a 4gb laptop from 2014

warm bison
spice maple
#

Wifi?

#

Its all client side

#

Elaborate on what you mean please

verbal rock
#

Would be useful for grinding

spice maple
#

I would but i dont have any experience with bedrock whatsoever, i might take a look next week

steep dagger
#

animations usually shouldn't get in the way of what you want to do

spice maple
#

I see your point, thanks for the feedback

warm bison
# spice maple Wifi?

oh wait, you made it on java? thats good then no lags, just in bedrock it start lag

verbal rock
quiet arrow
#

Java

spice maple
#

Yes its Java with the help of NanoVG

spice maple
jolly palm
#

CC please explain yourself ๐Ÿ’€
Why are these subdomains registered?

#

Whooo is Marco

paper python
#

isnt that marta? i think marta's name was marcoslater before

burnt fable
# jolly palm CC please explain yourself ๐Ÿ’€ Why are these subdomains registered?

Looks like someone found out about certificate transparency logs ๐Ÿ˜‰

Those domains never pointed towards anything actually in use, a long while ago we had a system which made use of a tool that generated certificates on the fly, like this one: https://caddyserver.com/docs/automatic-https#on-demand-tls

This effectively allowed us to set up and remove subdomains from our web-servers very easily as it just set them up as and when we needed them, the side effect however was that it would request and validate a certificate for our domain on any possible combination of subdomains someone tried to visit, as it would make the certificate there and then to then serve the request, even if the site didn't exist. (In that case, it would use the newly created site to serve a redirect back to the main domain)

Some people found out about it, and as you can see abused it a little bit to make it show up on CT logs as if we used all of those domains. A lesson was learned there.. ๐Ÿ˜…

fallow yacht
#

man I was hoping for a funnier answer ๐Ÿฅฑ

silver imp
verbal rock
steep dagger
#

that's absolutely wild lol

sudden flower
#

You should make a new server the new server for Java with war mods like planes and tank and guns and missile

wise hound
#

war thunder in minecraft

ebon cedar
#

Hi, does some know in what language Skyblock CubeCarft is coded

jolly palm
ebon cedar
pastel grail
#

Say /kill @e

pallid plaza
jolly palm
rocky meadow
#

Immmm yesh yesh programming

#

Brogramming

sterile mason
#

y equals mc squared

odd pollen
#

Cool

solar mortar
#

This channel is useless๐Ÿ—ฟ

quiet arrow
#

Slander

olive lion
#

Java specifically

undone loom
#

something new

vocal night
quiet arrow
undone loom
#

wanted to join eggwars

tall inlet
#

who is the best player

indigo nacelle
elfin zenith
sour pike
#

I'm not the best player on cubecraft

#

Hi everyone

supple gale
fluid fog
#

Hello fellow Shadow fan

hard relic
#

Hello!

verbal rock
#

Hii

stray tendon
#

/whereami

lusty hare
#

hey uh, how do i make items go emissive?

#

been trying to do it but the texture pixels marked for emission doesn't even work as expected

(i know, it's from the hive)

ivory flume
storm eagle
#

also to make it emissive, it would be better to make the item as an attachable and render the item with texture mesh

#
  • editing materials is not really recommended imo, it can break the game
steep dagger
# ivory flume

having not used c I'm guessing are std

mbstrowcs
strxfr
??,?
I give up

vocal night
#

When in doubt. ChatGPT

quiet arrow
#

Fun, right?

vocal night
storm eagle
#

also check blockbench

spark hearth
#

Guys, how do I link my Cube Craft account to Discord

peak remnant
spark hearth
#

Thx

#

@peak remnant are you an admin

peak remnant
#

No๐Ÿฅฒ

split geyser
#

Tbh the linking systhem thing is actually harder than it should be hahah

storm eagle
#

what do you guys think of bedrock edition's scripting API getting access to client to server packets and vice versa

clever salmon
#
program gravitycalc
        implicit none
        real :: height, time

        do while (.true.)
                print *, "Enter height: "
                read *, height

                if (height == -1) then
                        exit
                end if
                
                time = gravity_time(height)

                print *, "Total gravity time: ", time
        end do

contains

        real function gravity_time(height)
                implicit none
                real :: height, gravity_boost

                gravity_boost = 9.81

                gravity_time = sqrt((height * 2) / gravity_boost)
        end function gravity_time

end program gravitycalc
#

Physics + Fortran

#

we can fly 1000 meters for 14 seconds

steep dagger
#

why is my guy learning fortran

#

job security for that is crazy good tho

pallid plaza
pallid plaza
#

wow. my bro's phone suddenly went recovery mode after my bro wanted to reboot it because smth wasn't working
now i have to fix it :)

#

at least it has a custom recovery installed so it shouldn't be too difficult...i hope

verbal rock
#

Guess your not only helper on cubecraft

pallid plaza
#

fr

jolly palm
pallid plaza
sharp crystal
pallid plaza
strong fox
#

Well im so UNLUCKY with unlocking bootloader

#

Btw if you dont want to get bootloop again then find a custom rom which compatible with your device

gilded adder
#

ip

quiet marlin
#

I was waiting for my behind the cube Q&A

#

๐Ÿฅบ

thick sierra
#

Nooo i m noot wibs ๐Ÿ˜”

raw hull
#

Ooooh programming! Something I canโ€™t do

steep dagger
#

Well not yet bro

gilded sandal
#

Is this just like any programming at all

delicate rock
#

Hi cubecraft, I am reporting the hacker and I successfully reporting 25, can I be a helper ?, and thank you.

split geyser
split geyser
#

Trying my best to not rage everytime

verbal rock
verbal rock
#

And also wait for my cool down

verbal rock
split geyser
#

XD

#

Its so hard to resist tho

verbal rock
formal dawn
#

I think is best for you to not send this here.

tranquil tangle
grizzled dock
split geyser
#

XD

verbal rock
#

Has been a while since I seen you toxic

grizzled dock
glad crag
warm horizon
#

does anyone have a list of ALL standard bedrock eggwars maps?

delicate rock
#

.

split geyser
#

.

wise hound
polar zealot
#

/dig

warm horizon
half hull
#

What does /pip do, i used it once and it said failed to teleport

steep dagger
#

probably an admin command

quiet arrow
#

pull in player

steep dagger
#

ohhh neat

ebon cedar
#

Hello i started a journey to create the skyblock end dimension.
If someone knows something about what coding language they use and if they use some mods or plugins it would be awesome .

faint heron
ebon cedar
#

Thank you

jolly palm
ebon cedar
#

O nice, I didn't know that

#

Thx

#

: )

faint heron
#

you can google these things yk?

#

also something that may help you is if you join a developer dc server

#

those things tend to help a lot

ebon cedar
#

On Google I didn't find in what league where the Cubecraft servers coded so I tired here.

faint heron
#

fair enough

#

as i say though, try developer dc servers, may help with debugging

ebon cedar
#

Yeah and thx for the help

faint heron
#

nws, my dms are open if you want to message me

#

sadly i do work mainly in python and c# so not sure how useful that will be to you

ebon cedar
#

Yoo thank you very much for the help

olive lion
#

import java.util.Scanner;
public class ClosedLmao {

public static boolean isClosed(String input)
{
 
        //complete this method with an if statement
    if (input.toUpperCase().contains("CLOSED"))
    {
        return true;
    }
        //using toUpperCase and contains
return false;
 
}

public static void main(String[] args)
{
    Scanner scan = new Scanner(System.in);
    System.out.println("please put closed in ur string to return true");
    String insert = scan.nextLine();
    System.out.println(isClosed(insert));
    System.out.println("yay");
}

}

goofy java code

minor roost
tranquil tangle
#

No sane programmer would comment those two things

olive lion
#

no I go to uni

tranquil tangle
#

They pointless too

#

That's the sorta thing chat gpt comments

olive lion
#

it's one of the questions I got for practice

tranquil tangle
#

Weird

brisk badge
steep dagger
#

chat gpt wouldn't make comments like that. such silliness requires a human touch

tranquil tangle
#

Not nesscarly true seeing as it's built of open source code

quiet arrow
#

It's just the comments from the teacher explaining the exercise lol

#

The code is just put around is weirdly I suppose

steep dagger
#

I really hope the open source code I rely on is a little more thought out lol

half hull
paper rain
#

its teleports the specified player to the admin

half hull
#

Oh

#

lol

opal oyster
#

Imagine programming

verbal rock
opal oyster
#

Like theyre just random letters and words

#

Put in random orders

verbal rock
opal oyster
#

And it turns into a game

verbal rock
#

Sounds about right

opal oyster
#

But still

verbal rock
#

Fun fact: I can code

opal oyster
verbal rock
#

Well I only know the basics

opal oyster
#

Same

#

I know block coding ๐Ÿ˜Ž

jolly palm
#

Lol

verbal rock
opal oyster
#

Stop skulling me

verbal rock
#

๐Ÿ’€

opal oyster
#

I dont approve of being skulled

verbal rock
opal oyster
#

Stop slaying

#

Wait no

verbal rock
#

๐Ÿ’€

opal oyster
#

Oka lets go back to general

verbal rock
#

Yes sir

hollow spoke
opal oyster
copper stirrup
#

yoooo

steep dagger
#

what's a block coding

#

like scratch?

quiet arrow
#

MIT App Inventorrrrrrrrrr

chrome hare
#

@everone anyone able to bye a realm on java

sand agate
warm terrace
#

HEY THERE IS THIS SERVER can recognize python ?

steep dagger
#

in what way would a server recognise python lol

jolly palm
#

That was exactly my question when I read the message

near forum
#

maybe he was referring to python as the programming language of bedrock edition, and the cubecraft server recognising it... might be wrong tho

near forum
#

oh bruh XD i was so certain i remembered correctly XD

jolly palm
#

Haha

quiet arrow
hollow spoke
#

Python haters rise up

snow dagger
quiet arrow
#

cc as in CubeCraft? We run a fork of paper (for the minecraft server itself), so Java

snow dagger
#

Also that ticket a while back, it is the shield that causes problems, any offhand item

snow dagger
quiet arrow
#

Best of luck

steep dagger
hollow spoke
#

Real programmers program in Assembly smh

steep dagger
#

Well I prefer Holy C tbh

storm eagle
#

zed in cubecraft

copper stirrup
#

hi

#

yes

storm eagle
#

i must be dreaming

opal oyster
opal oyster
#

where is it

jolly palm
#

Haha

steep dagger
#

I remember making an extremely convoluted idle game in scratch once

#

screen was just completely full of things moving

hollow spoke
#

Assembly is for idk

#

People who hate life

#

But I had to do that for computer organisation :D

dire sluice
#

Who owns cubecraft

hollow spoke
#

Founded by Rubik and operated by Ziax I believe

steep dagger
#

no no not C but Holy C

hollow spoke
#

Oh i didnt know that one yet

#

It still looks pretty usable tho

#

Just very unreadable if you dont code normally

#

Real programmers actually use brainfqck fr

simple charm
dire sluice
simple charm
#

just write it in google๐Ÿ‘

dire sluice
#

J

#

K

#

Who owns this dc tho

#

Same guy is it

simple charm
#

but im not sure

#

so dont take it for granted๐Ÿ‘

jolly palm
simple charm
#

๐Ÿ‘

paper rain
gaunt bramble
#

!media

steep dagger
#

no I love them

whole veldt
#

It is one of the most widely used programming languages.

hollow spoke
#

Python programmers when they have to actually build a function instead of using a pre built in one

paper rain
#

I was born at a very young age

#

Soon later my father left me

#

It really means a lot ๐Ÿ’™

hollow spoke
#

I canโ€™t react with a heart but if I could I would

steep dagger
#

I too was very small in my early years

split geyser
#

Indeed

paper rain
#

For the first few years i couldn't even walk

steep dagger
tranquil tangle
hollow spoke
#

There is absolutely nothing that isnt built in to python

#

Like for example Netflix, which was written in python, was already built in

steep dagger
#

I'm sure they also copied from stack overflow too

tranquil tangle
#

Comaporer to something like JavaScript which 9/10 required a libary of sorts for some things

hollow spoke
#

It is, yes

#

But it having a lot of built in functions doesnt make it a good language

hushed helm
hollow spoke
tranquil tangle
quiet arrow
#

go >

hollow spoke
jolly palm
jolly palm
steep dagger
#

now that is what I call spicy

storm eagle
#

i messed up SO BAD

quiet arrow
#

I think it's because of that font

open needle
jolly palm
paper rain
#

Idk where to ask but will knock back sync come to cubecraft?

verbal rock
#

Code it that whatever I do I'll always win

jolly palm
verbal rock
jolly palm
verbal rock
#

Better than nopr

jolly palm
#

Ik not exactly a programming question but does anyone have an idea how to improve the UI? ๐Ÿ˜„

quiet arrow
#

Add light mode

sand agate
jolly palm
sand agate
#

Oh

verbal rock
quiet arrow
#

Madness

jolly palm
verbal rock
jolly palm
#

haha

steep dagger
steep dagger
#

if you have many things st the same importance level it's not super clear what is most useful or where you should be looking

#

also add icons bc I love icons

storm eagle
steep dagger
#

the visual hierarchy for importance is what my colleague who's made hundreds of sites talks about most

steep dagger
storm eagle
#

it uh

#

monospace doesnt look any different

#

it could be my code editor

quiet arrow
#

What are you using

#

Maybe it needs a restart HoloThink

storm eagle
#

nah it doesnt

#

theres one font that actually changes

steep dagger
storm eagle
#

only this one actually changes

steep dagger
#

I've never seen a code editor that has fonts that aren't monospace

#

that still isn't monospace bro

#

you probably have some weird setting on

storm eagle
#

prob

steep dagger
#

what editor is it?

storm eagle
#

QuickEdit

steep dagger
#

yea I'd recommend using something a little better

storm eagle
#

everything else messes up tbh

#

i tried Acode too but it doenst like my virtual keyboard

steep dagger
#

if you want something still lightweight try sublime

storm eagle
#

:skull

steep dagger
#

Id definitely try more programs

#

this on Google play?

storm eagle
#

ye

steep dagger
#

ahh yea I wouldn't know about mobile apps but definitely look up online what people are recommending

jolly palm
#

Now its legaly safe too haha

steep dagger
#

spooky stuff

sharp crystal
quiet arrow
#

haha

#

yeah, I said it with their last picture as well

#

time to code in light mode ๐Ÿ™„

daring junco
#

yo
can anyone help me in ffa to kill someone
i can kill them, its just i need backup so they leave me alone

verbal rock
hardy jolt
#

Hey @magic rapids @sweet barn

I need your help or any other developers help on your sky blocks servers.

There is nothing on the ground yet it says
"You're at the item on ground limit, removing oldest items from the ground"

rustic zephyr
#

@quiet arrow :')

quiet arrow
#

L

#

send a ss

rustic zephyr
#
invalid command name "1897932344448check_dpi_scaling"
    while executing
"1897932344448check_dpi_scaling"
    ("after" script)
invalid command name "1897933085056update"
    while executing
"1897933085056update"
    ("after" script)
invalid command name "1897936054848_click_animation"
    while executing
"1897936054848_click_animation"
    ("after" script)

it happens after calling this:
Calls 2nd window (it opens and the 1st window gets destroyed but then prints the error)

    def reg_button_klik():
        loginscherm.destroy() 
        registreer_scherm()

using a button:

registreer_button = CTkButton(master=frame, corner_radius=20, width=400, text='Registreren', command=reg_button_klik)
    registreer_button.place(relx=0.5, rely=0.675, anchor=tkinter.CENTER)
#

it works

quiet arrow
#

ah

rustic zephyr
#

forgot they blocked the hashtag

#

@dawn parcel

#

tried to google but didnt find much that helped

quiet arrow
#

Do you call after anywhere? I haven't used tkinter, so can't help much apart from what I find. But it seems like this error would happen if you've called after, or tkinter calls after internally somewhere. And it hasn't executed before you call destroy()

#

Calling after should return the id, which you can cancel with window.after_cancel

verbal rock
#

Smart ppl

rustic zephyr
sharp crystal
#

thatd be a crime aswell

quiet arrow
#

try it some time

sharp crystal
#

Still feels
like a crime

vocal night
quiet arrow
#

Overreacting

sharp crystal
#

@quiet arrow I will try it for a full day on monday

quiet arrow
verbal rock
#

We will remember this sacrifice

opal oyster
mortal grail
#

light mode is not that bad

split geyser
#

Erm

quiet arrow
hollow spoke
#

For coding it very much is

#

Unless itโ€™s before like 6pm

indigo nacelle
#

Which one of you guys did this

hollow spoke
#

Ai couldnโ€™t replace this guy

steep dagger
#

only 45 minutes per button

#

which is only marginally slower than senior react engineers

wispy cloak
#

Someday they will put a leaderboard of the users with the most kills

mortal grail
tall rapids
#

Fur poo

#

Instance.new = fur poo

#

C++ pisses me off

#

Go to my of

#

Optifine for the dirty minded ppl

#

I meant optifine

mortal grail
#

๐Ÿซฅ

minor roost
#

hi

indigo nacelle
undone loom
#

yo fesa, have u encountered the problem of long loading of voting item?

#

for some reason, after the cube update, instant opening of voting menu doesnt work

#

and i have small question, why did they need to change slot at all?

#

xd

quiet arrow
#

After I changed the hotbar slots, it works like always

quiet arrow
undone loom
#

hm

#

weird

#

i can't reproduce opening of voting menu (interaction with item)

quiet arrow
#

nvm, yeah I see

#

It takes a little bit for the items to get into the inv. So it doesn't work

undone loom
#

ye, im trying this one for test

#

but interaction doesnt work

quiet arrow
#

okey I fixed mine

#

Laby has an event for when items are added in the inventory. I used this

#

Your would also not work when being send to a new game on the same server I think, so free bug fix I suppose

undone loom
#

๐Ÿ˜ญ

quiet arrow
#

Well make it with a mixin

vague shore
#

or else we can't update ;(

quiet arrow
#

I forgot oops

#

or /cdebug reload or something

vague shore
#

still can't seem to be able to update it, did something change since last year?

quiet arrow
#

I'll look

quiet arrow
#

oh ffs

#

one sec

vague shore
#

doesn't say anything and when I try to update again it just says I have the sumbit cooldown for 5 minutes.

#

ah alright

quiet arrow
#

@vague shore try again

#

sorry about that

#

It does track failed request, but I have to check it manually ofc. I should make it send me a dc msg or something lol

#

AAH

#

nope

#

Okey, 2m

#

I did or instead of and

#

It's building

vague shore
#

ah

quiet arrow
#

I should maybe test stuff but oh well

vague shore
#

xD who cares about testing am I right if something goes wrong well then sad :(

#

still have to wait like 3 minutes

quiet arrow
#

Github actions slow

#

@vague shore partyblob

vague shore
#

yay! thanks for awesome addon :)

#

yeah it works now

random quail
#

@lusty edge can y come online for 1 min?

inland flicker
#

';';

simple charm
#

hi

split geyser
#

hi

polar zealot
#

progammed

fallow matrix
#

nice

carmine dagger
#

thats alot