Discuss Scratch

csf30816
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

GetNoticed wrote:

coke11 wrote:

Icey29 wrote:

Still looking for a QA tester?
Of course! Do you have a Github and Trello?

Low-EarthOrbit wrote:

Hey, are you going to need anyone with knowledge of SQL Databases? I feel like that may be an important step you might be overlooking…
Yep . We already have a mySQL DB up and running

MooShoeGaming wrote:

Time on Scratch: 2 years
Do you know HTML5? yes
Do you know CSS? yes
Do you know Javascript? yes + jquery
Do you know Node.JS? yes
Example (give me a snippet of HTML, CSS or PHP made by you!):
simple node.js thing i made a few days ago using socket.io (i followed a tutorial on it but socket.io is really simple)
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);

app.get('/', function(req, res) {
res.sendFile(__dirname + ‘/index.html’);
});

io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});

http.listen(3000, ‘0.0.0.0’, function(){
console.log('It is on *:3000');
});
Why do you want to apply? i feel u guys need help and i love collabs
What is DragonDrop? something like weebly, but i was hoping it could turn out more like wordpress
Have you ever worked on a big project on this before? @FiberNova
Do you know what your job means & involves? yea me coding the backend
Why should we pick you rather than others? im back end man
Dedication: 5/10
Skill: 9/10
Activity: 6/10
Grammar & Punctuation: -143141342/10

btw node WAY is better than php

only let me in if you need a good backend dev
Sounds great . What is your knowledge with DB's?
I don't know what that stands for
Databases
csf30816
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

coke11 wrote:

Going to do a big post on this topic later, and catch up more on GitHub trello the accounts videos etc.

For now I am just going to say we are working on finding more DB people. Also mySQL is already hooked up and we are/will be using it.

(Sent from my iPhone 5S)
Hey! Can I be a DB person, sense I set up the origonal and since I made PHPSocial witch uses DB's Sooooo much?
NaturalmotionStudios
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

coke11 wrote:

Going to do a big post on this topic later, and catch up more on GitHub trello the accounts videos etc.

For now I am just going to say we are working on finding more DB people. Also mySQL is already hooked up and we are/will be using it.

(Sent from my iPhone 5S)
I know SQL, can I help?

GetNoticed wrote:

coke11 wrote:

Sounds great . What is your knowledge with DB's?
I don't know what that stands for
I wouldn't be in the advanced topics section then.
DB = DataBase
Austinato
Scratcher
1000+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

Icey29 wrote:

Austinato wrote:

Icey29 wrote:

coke11 wrote:

Of course! Do you have a Github and Trello?
Wonderful!
I used to have a Trello, but I don't remember what it was. I'm always willing to create a new one.
My GH can be found here. I used to have a ton more stuff here but a couple repos had to be deleted. /shrug
Hey! Nice meeting you here!
Hey, Austinato! It's been a while
Yes it has!
MooShoeGaming
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

csf30816 wrote:

GetNoticed wrote:

coke11 wrote:

Icey29 wrote:

Still looking for a QA tester?
Of course! Do you have a Github and Trello?

Low-EarthOrbit wrote:

Hey, are you going to need anyone with knowledge of SQL Databases? I feel like that may be an important step you might be overlooking…
Yep . We already have a mySQL DB up and running

MooShoeGaming wrote:

Time on Scratch: 2 years
Do you know HTML5? yes
Do you know CSS? yes
Do you know Javascript? yes + jquery
Do you know Node.JS? yes
Example (give me a snippet of HTML, CSS or PHP made by you!):
simple node.js thing i made a few days ago using socket.io (i followed a tutorial on it but socket.io is really simple)
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);

app.get('/', function(req, res) {
res.sendFile(__dirname + ‘/index.html’);
});

io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});

http.listen(3000, ‘0.0.0.0’, function(){
console.log('It is on *:3000');
});
Why do you want to apply? i feel u guys need help and i love collabs
What is DragonDrop? something like weebly, but i was hoping it could turn out more like wordpress
Have you ever worked on a big project on this before? @FiberNova
Do you know what your job means & involves? yea me coding the backend
Why should we pick you rather than others? im back end man
Dedication: 5/10
Skill: 9/10
Activity: 6/10
Grammar & Punctuation: -143141342/10

btw node WAY is better than php

only let me in if you need a good backend dev
Sounds great . What is your knowledge with DB's?
I don't know what that stands for
Databases
im not full into using databases and stuff because my projects never need them.

i use a lot of json because it's really easy to use and is fast enough to handle my whole audience. (which really isnt anyone)

the main thing i stress is u cant trust the client. i try to code everything i can on the server.

Last edited by MooShoeGaming (Sept. 10, 2016 00:16:41)

NaturalmotionStudios
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

I made an example of JSON that we could use:
[
	{"username":"JohnDoe", "email":"johndoe@example.com", "scratcher":"false", "scratchId":"null", "password":"abc123", "userId":"13842", "access":"normal"},
	{"username":"DragonDrop", "email":"moderation@dragondrops.net", "scratcher":"true", "scratchId":"DragonDrop", "password":"dragondropadmin", "userId":"103", "access":"administrator"},
	{"username":"NaturalmotionStudios", "email":"nms@example.com", "scratcher":"true", "scratchId":"NaturalmotionStudios", "password":"examplePassword", "userId":"107", "access":"administrator"}
]

Last edited by NaturalmotionStudios (Sept. 10, 2016 12:29:33)

IcyCoder
Scratcher
1000+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

NaturalmotionStudios wrote:

I made an example of JSON that we could use:
[
	{"username":"JohnDoe", "email":"johndoe@example.com", "scratcher":"false", "scratchId":"null", "password":"abc123", "userId":"13842", "access":"normal"},
	{"username":"DragonDrop", "email":"moderation@dragondrops.net", "scratcher":"true", "scratchId":"DragonDrop", "password":"dragondropadmin", "userId":"103", "access":"administrator"},
	{"username":"NaturalmotionStudios", "email":"nms@example.com", "scratcher":"true", "scratchId":"NaturalmotionStudios", "password":"examplePassword", "userId":"107", "access":"administrator"}
]
That is not secure at all look up salting passwords and we need a good database
NaturalmotionStudios
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

IcyCoder wrote:

NaturalmotionStudios wrote:

I made an example of JSON that we could use:
[
	{"username":"JohnDoe", "email":"johndoe@example.com", "scratcher":"false", "scratchId":"null", "password":"abc123", "userId":"13842", "access":"normal"},
	{"username":"DragonDrop", "email":"moderation@dragondrops.net", "scratcher":"true", "scratchId":"DragonDrop", "password":"dragondropadmin", "userId":"103", "access":"administrator"},
	{"username":"NaturalmotionStudios", "email":"nms@example.com", "scratcher":"true", "scratchId":"NaturalmotionStudios", "password":"examplePassword", "userId":"107", "access":"administrator"}
]
That is not secure at all look up salting passwords and we need a good database
Yeah, that is true, but someone mentioned JSON.
NaturalmotionStudios
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

Can I consolidate the credits, about, contact and FAQ page into one? (The top bar is a little crowded)

Last edited by NaturalmotionStudios (Sept. 10, 2016 13:48:52)

golden-scratch
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

Hello,

I am back. Sorry I was inactive for a week, with such little notice. So little some didn't even know.

Hopefully we can progress with updates for DragonDrop and have some fun

Also this is the 950th post :O and I'll be the 1k'th post on this thread mwahahahahaha
csf30816
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

golden-scratch wrote:

Hello,

I am back. Sorry I was inactive for a week, with such little notice. So little some didn't even know.

Hopefully we can progress with updates for DragonDrop and have some fun

Also this is the 950th post :O and I'll be the 1k'th post on this thread mwahahahahaha
hi
DimensionPvP
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

PackersRuleGoPack wrote:

Here is a link to an website with all my html games and such in it. I don't use it any more:
http://superfungames4you.blogspot.com/
Just saying, you have html games in a website.. that's made by blogspot.
ok gd
Icey29
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

DimensionPvP wrote:

PackersRuleGoPack wrote:

Here is a link to an website with all my html games and such in it. I don't use it any more:
http://superfungames4you.blogspot.com/
Just saying, you have html games in a website.. that's made by blogspot.
ok gd
What does this even mean
TheUltimatum
Scratcher
1000+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

Hi there I have a question about your backend. Do you have any use for someone experienced in python?
NaturalmotionStudios
Scratcher
100+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

TheUltimatum wrote:

Hi there I have a question about your backend. Do you have any use for someone experienced in python?
We only use NodeJS, HTML, and JS, sorry. We can't really use Python with what we're doing.
PackersRuleGoPack
Scratcher
1000+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

Icey29 wrote:

DimensionPvP wrote:

PackersRuleGoPack wrote:

Here is a link to an website with all my html games and such in it. I don't use it any more:
http://superfungames4you.blogspot.com/
Just saying, you have html games in a website.. that's made by blogspot.
ok gd
What does this even mean
Hacks (convert to html)
TheUltimatum
Scratcher
1000+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

NaturalmotionStudios wrote:

TheUltimatum wrote:

Hi there I have a question about your backend. Do you have any use for someone experienced in python?
We only use NodeJS, HTML, and JS, sorry. We can't really use Python with what we're doing.
Ah, okay then!
golden-scratch
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

TheUltimatum wrote:

NaturalmotionStudios wrote:

TheUltimatum wrote:

Hi there I have a question about your backend. Do you have any use for someone experienced in python?
We only use NodeJS, HTML, and JS, sorry. We can't really use Python with what we're doing.
Ah, okay then!
Sorry fpr the inconvenience. If at any point, we want to intergrate Python into the website somewhere, you'll be the first person we'll ask.

Thank you for your interest.
golden-scratch
Scratcher
500+ posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

csf30816 wrote:

golden-scratch wrote:

Hello,

I am back. Sorry I was inactive for a week, with such little notice. So little some didn't even know.

Hopefully we can progress with updates for DragonDrop and have some fun

Also this is the 950th post :O and I'll be the 1k'th post on this thread mwahahahahaha
hi
Hey

How's it going.
Sokpich
Scratcher
20 posts

<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>

i canot enable javascript im a kid anyways
plus this is not my computer
image dragondropduhj

Powered by DjangoBB