Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » << DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
- csf30816
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
DatabasesI don't know what that stands forStill looking for a QA tester?Of course! Do you have a Github and Trello?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
Time on Scratch: 2 yearsSounds great
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. What is your knowledge with DB's?
- csf30816
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Going to do a big post on this topic later, and catch up more on GitHub trello the accounts videos etc.Hey! Can I be a DB person, sense I set up the origonal and since I made PHPSocial witch uses DB's Sooooo much?
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)
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Going to do a big post on this topic later, and catch up more on GitHub trello the accounts videos etc.I know SQL, can I help?
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 wouldn't be in the advanced topics section then.Sounds greatI don't know what that stands for. What is your knowledge with DB's?
DB = DataBase
- Austinato
-
Scratcher
1000+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Yes it has!Hey, Austinato! It's been a whileHey! Nice meeting you here!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
- MooShoeGaming
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
im not full into using databases and stuff because my projects never need them.DatabasesI don't know what that stands forStill looking for a QA tester?Of course! Do you have a Github and Trello?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
Time on Scratch: 2 yearsSounds great
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. What is your knowledge with DB's?
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! >>
I made an example of JSON that we could use:That is not secure at all look up salting passwords and we need a good database[ {"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"} ]
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Yeah, that is true, but someone mentioned JSON.I made an example of JSON that we could use:That is not secure at all look up salting passwords and we need a good database[ {"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"} ]
- 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
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! >>
Hello,hi
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
- DimensionPvP
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Here is a link to an website with all my html games and such in it. I don't use it any more:Just saying, you have html games in a website.. that's made by blogspot.
http://superfungames4you.blogspot.com/
ok gd
- Icey29
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
What does this even meanHere is a link to an website with all my html games and such in it. I don't use it any more:Just saying, you have html games in a website.. that's made by blogspot.
http://superfungames4you.blogspot.com/
ok gd
- 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! >>
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! >>
Hacks (convert to html)What does this even meanHere is a link to an website with all my html games and such in it. I don't use it any more:Just saying, you have html games in a website.. that's made by blogspot.
http://superfungames4you.blogspot.com/
ok gd
- TheUltimatum
-
Scratcher
1000+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Ah, okay then!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.
- golden-scratch
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
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.Ah, okay then!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.
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! >>
HeyHello,hi
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

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
plus this is not my computer
image dragondropduhj











