Discuss Scratch
- Discussion Forums
- » Advanced Topics
- » << DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Ok (I'm a little late, sorry, I got a BSoD D: \)Coke, go on Discord. ;-;Get on Discord
EDIT: What a 100th post!
Also, that was the 900th post on this thread! XD
Last edited by NaturalmotionStudios (Sept. 5, 2016 00:54:40)
- Icey29
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Still looking for a QA tester?
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Still looking for a QA tester?We have one, but I'll have to ask @coke11 if we can have another one.
Last edited by NaturalmotionStudios (Sept. 5, 2016 13:11:00)
- Icey29
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
I was just curious, lol. Your topic title still calls for oneStill looking for a QA tester?We have one, but I'll have to ask @coke11 if we can have another one.
- m99900
-
Scratcher
48 posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
my code if you guys have not already put it in is for positioning stuff 









- m99900
-
Scratcher
48 posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
By the way can I test the most recently made editor again?
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
I found this on the Wiki: (for our devs and @coke11) https://wiki.scratch.mit.edu/wiki/Scratch_API_(2.0)
It's on the Scratch API, which you can use with JSON.
EDIT: Using the Scratch API w/Node.js: https://github.com/trumank/scratch-api
It's on the Scratch API, which you can use with JSON.
EDIT: Using the Scratch API w/Node.js: https://github.com/trumank/scratch-api
Last edited by NaturalmotionStudios (Sept. 5, 2016 19:11:17)
- csf30816
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
I found this on the Wiki: (for our devs and @coke11) https://wiki.scratch.mit.edu/wiki/Scratch_API_(2.0)Cool! (I mentioned that earlier)
It's on the Scratch API, which you can use with JSON.
EDIT: Using the Scratch API w/Node.js: https://github.com/trumank/scratch-api
- Low-EarthOrbit
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
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…
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
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…Yes, I think we need another SQL developer. Ask @coke11, they're the founder.
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
I didn't see it, weird.I found this on the Wiki: (for our devs and @coke11) https://wiki.scratch.mit.edu/wiki/Scratch_API_(2.0)Cool! (I mentioned that earlier)
It's on the Scratch API, which you can use with JSON.
EDIT: Using the Scratch API w/Node.js: https://github.com/trumank/scratch-api
- card100
-
Scratcher
1000+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
I think all of our database stuff is done though… I don't know…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…Yes, I think we need another SQL developer. Ask @coke11, they're the founder.
- Low-EarthOrbit
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
Ok, cool, just let me know, as I have *some* experience in that field. I am also somewhat proficient in Javascript, and more so in HTML, and CSS.I think all of our database stuff is done though… I don't know…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…Yes, I think we need another SQL developer. Ask @coke11, they're the founder.
- MooShoeGaming
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
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
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
Last edited by MooShoeGaming (Sept. 7, 2016 01:38:23)
- MooShoeGaming
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
u guys dont need sql - json would be much better for starters
- MooShoeGaming
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
also im not sure if you where planning this but make the webpages static. it would removed the need of a lot of data saving and stuff
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
u guys dont need sql - json would be much better for startersWe're not starters, but thanks for the tip.
I've been programming for 2 years. (Some of our devs have been doing it even longer)And JSON can be viewed by anyone, but not a private SQL database.
- -stache-
-
Scratcher
500+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
And JSON can be viewed by anyone, but not a private SQL database.*not exactly*
- NaturalmotionStudios
-
Scratcher
100+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
*Well, hackers can. And there could be a way to keep the JSON private*And JSON can be viewed by anyone, but not a private SQL database.*not exactly*
- Firedrake969
-
Scratcher
1000+ posts
<< DragonDrop | RECRUITING DEVELOPERS | Help us code a website where you can make your own free websites! >>
You're basically talking about MongoDB*Well, hackers can. And there could be a way to keep the JSON private*And JSON can be viewed by anyone, but not a private SQL database.*not exactly*









