Discuss Scratch

StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!



Welcome!
Hello, and welcome to Kurai Core Programming! I plan on opening a legitimate coding store sometime soon, but I need some practice before I can sell my services. I thought, ‘What better way of getting practice than by coding for people on Scratch?’ So, here it is! I am offering my services for free to those of you on Scratch as I gain more experience. Depending on how business goes, I will be doing this here for a month or more, and then I will close up shop and open my real store.

What I Do
Here, you fill out the form (included in this post) specifying the things you would like in your code, and then I will put the post into a forum post, as well as a link for running it (if required). As I said, this is completely free until I open the real store.

Here are the languages I can do for you (subject to change):
- HTML and CSS (webpages)
- JavaScript
- More to come…

Order Forms
For HTML and CSS:
Title:
Mock-up:
Text (and where it will go; show this in the mock-up):
Images:
External Links:
Embed Content:
Other:

For JavaScript:
What it is you want (text-based game, function of some sort, etc.):
Content/Details of program (what you want it to do):


Color Code
Red means it has been discontinued or cannot be started for whatever reason; you will get a message about this.
Green means it is good to go.
Blue means it is currently being worked on.
Yellow means it is on deck.
Normal text is waiting.

Waiting List
There will be a maximum of five programs on the waiting list. If a flood of requests is coming in, there is a large number of red requests, or most are awaiting pick-up, the Pending List will be enacted.
1. ssss
2. majormax
3.
4.
5.

Pending List
1.
2.
3.
4.
5.

Completed Programs
- Text-to-Fruit code for ssss

Thank you very much, and I hope to serve you in the near future! If you are unhappy with your program for whatever reason, just let me know and I will fix it to your specifications.
~ StarscreamClone

Last edited by StarscreamClone (Jan. 31, 2014 01:22:46)


Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

What it is you want (text-based game, function of some sort, etc.): function.
Content/Details of program (what you want it to do): replaces a list of words with a random list of fruits.

Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

ssss wrote:

What it is you want (text-based game, function of some sort, etc.): function.
Content/Details of program (what you want it to do): replaces a list of words with a random list of fruits.
Alright, I'll see what I can do! Just one question; would the list of words be from what the user types, or a set list?

Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

A list that I wish to add words to. :p

Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

ssss, your code is ready! You can test it here if you need, and if you want the code changed in any way, just let me know and I'll be happy to change it.
var fruitChoices = ["apples", "pears", "mangos", "peaches", "bananas", "tangerines", "tomatoes"];

var speech = prompt("Type what you want to convert to fruit here.");
var howMany = 0;

for (var i = 0; i < speech.length; i++){
if(speech[i] === " "){
howMany++;
}
}

var callFruit = function(){
for (i = 0; i <= howMany; i++){
console.log(fruitChoices[Math.floor(Math.random() * 6)]);
}
};

callFruit();

Last edited by StarscreamClone (Jan. 26, 2014 02:13:49)


Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?

Last edited by ssss (Jan. 26, 2014 02:24:34)


Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.

Are you asking for one that has a fruit corresponding to each individual word?

Last edited by StarscreamClone (Jan. 26, 2014 02:26:12)


Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.

Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

ssss wrote:

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.
Specifically ‘cake’ and ‘pie’?

Last edited by StarscreamClone (Jan. 26, 2014 02:30:07)


Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.
Specifically ‘cake’ and ‘pie’?
The words which I want to convert are not appropriate for scratch :whistles:

Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

ssss wrote:

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.
Specifically ‘cake’ and ‘pie’?
The words which I want to convert are not appropriate for scratch :whistles:
I'm afraid I cannot do that, then. I'm sorry, but you know how it goes.

Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.
Specifically ‘cake’ and ‘pie’?
The words which I want to convert are not appropriate for scratch :whistles:
I'm afraid I cannot do that, then. I'm sorry, but you know how it goes.
use cake and pie I can do what I need with that anyway

Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
StarscreamClone
Scratcher
1000+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

ssss wrote:

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.
Specifically ‘cake’ and ‘pie’?
The words which I want to convert are not appropriate for scratch :whistles:
I'm afraid I cannot do that, then. I'm sorry, but you know how it goes.
use cake and pie I can do what I need with that anyway
I know, but… Eh, no me importa.

Somewhere in my 20s | He/It
Workin' on my degree in computer science and cognitive science, and the future president of 2036!

Surge is my imaginary husband - he's the guy in my icon!
ssss
Scratcher
500+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

StarscreamClone wrote:

ssss wrote:

I want it to convert every instance of (word in wordlist) on the page. Could you do that?
Or am I just reading the code wrong?
What it does is takes every word you enter into the prompt and prints out a fruit in the array for each. If you use it in the online compiler I linked you, you'll see what it does.
Yes, I saw that.
What I want it to do is convert every instance of the words ‘pie’ and ‘cake’ with a fruit on a html page.
Specifically ‘cake’ and ‘pie’?
The words which I want to convert are not appropriate for scratch :whistles:
I'm afraid I cannot do that, then. I'm sorry, but you know how it goes.
use cake and pie I can do what I need with that anyway
I know, but… Eh, no me importa.
Herpy derpy. Fair enough.

How about just something like the scratch login bar then. ;_;

Generation 379: the first time you see this copy and paste it on top of your sig in the scratch forums and increase generation by 1. Social experiment.
Shaun-the-Sheep
Scratcher
86 posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

StarscreamClone wrote:



Welcome!
Hello, and welcome to Kurai Core Programming! I plan on opening a legitimate coding store sometime soon, but I need some practice before I can sell my services. I thought, ‘What better way of getting practice than by coding for people on Scratch?’ So, here it is! I am offering my services for free to those of you on Scratch as I gain more experience. Depending on how business goes, I will be doing this here for a month or more, and then I will close up shop and open my real store.

What I Do
Here, you fill out the form (included in this post) specifying the things you would like in your code, and then I will put the post into a forum post, as well as a link for running it (if required). As I said, this is completely free until I open the real store.

Here are the languages I can do for you (subject to change):
- HTML and CSS (webpages)
- JavaScript
- More to come…

Order Forms
For HTML and CSS:
Title:
Mock-up:
Text (and where it will go; show this in the mock-up):
Images:
External Links:
Embed Content:
Other:

For JavaScript:
What it is you want (text-based game, function of some sort, etc.):
Content/Details of program (what you want it to do):


Color Code
Red means it has been discontinued or cannot be started for whatever reason; you will get a message about this.
Green means it is good to go.
Blue means it is currently being worked on.
Yellow means it is on deck.
Normal text is waiting.

Waiting List
There will be a maximum of five programs on the waiting list. If a flood of requests is coming in, there is a large number of red requests, or most are awaiting pick-up, the Pending List will be enacted.
1. ssss
2.
3.
4.
5.

Pending List
1.
2.
3.
4.
5.

Completed Programs
- Text-to-Fruit code for ssss

Thank you very much, and I hope to serve you in the near future! If you are unhappy with your program for whatever reason, just let me know and I will fix it to your specifications.
~ StarscreamClone

French

Bienvenue !
Bonjour , et bienvenue à la programmation Kurai base ! J'ai l'intention d' ouvrir un magasin de codage légitime très bientôt, mais j'ai besoin d' un peu de pratique avant que je puisse vendre mes services . J'ai pensé , ‘ Quelle meilleure façon d’obtenir la pratique que par le codage pour les personnes en Scratch ? Donc , ici il est ! Je vous propose mes services gratuitement à ceux d'entre vous sur Scratch que je gagne plus d'expérience . Selon la façon dont l'entreprise va , je vais faire cela ici pendant un mois ou plus , et puis je vais fermer boutique et ouvrir mon magasin réel .

Ce que je fais
Ici, vous remplissez le formulaire (inclus dans ce post) précisant les choses que vous aimeriez dans votre code , et puis je vais mettre le poste dans un post sur le forum , ainsi qu'un lien pour l'exécuter (si nécessaire) . Comme je l'ai dit, c'est totalement gratuit jusqu'à j'ouvre le magasin réel .

Voici les langues que je peux faire pour vous ( sous réserve de modifications ) :
- HTML et CSS ( pages Web )
- JavaScript
- Plus à venir …

Bons de commande
Pour HTML et CSS :
Titre :
Mock -up :
Texte ( et où il ira ; montrer dans la maquette ) :
images :
Liens externes :
Incorporer contenu :
Autres :


Pour JavaScript :
Qu'est-ce que vous voulez ( jeu basé sur du texte , la fonction d'une certaine sorte , etc ) :
Contenu / Détails du programme ( ce que vous voulez qu'il fasse ) :



Code couleur
rouge signifie qu'il a été arrêté ou ne peut pas être démarré pour une raison quelconque , vous obtiendrez un message à ce sujet.
verte signifie qu'il est bon d'aller .
Bleu signifie qu'il est actuellement en cours d'élaboration .
Jaune signifie qu'il est sur ​​le pont .
Texte normal attend .

Liste d'attente
Il y aura un maximum de cinq programmes sur la liste d'attente . Si un afflux de demandes est à venir dans , il ya un grand nombre de demandes rouges , ou plus sont en attente de pick-up , la liste en attente sera adoptée.
Une . ssss
2 .
3 .
4 .
5 .

Liste attente
Une .
2 .
3 .
4 .
5 .

Programmes achevés
- Text-to- Fruit code ssss

Merci beaucoup , et j'espère pour vous servir dans un avenir proche ! Si vous n'êtes pas satisfait de votre programme pour une raison quelconque , faites-le moi savoir et je vais le fixer à votre cahier des charges .

Last edited by Shaun-the-Sheep (Jan. 27, 2014 07:18:51)


Check this out! Lego Brick Trouble
16liangk
Scratcher
15 posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

How do you add a marcro to something?
Shaun-the-Sheep
Scratcher
86 posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

16liangk wrote:

How do you add a marcro to something?
What, How to put it in French?

Check this out! Lego Brick Trouble
16liangk
Scratcher
15 posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

No,,,how to add a code to something
blueyoshi78
Scratcher
34 posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

Would you happen to know how to code Lua/ROBLOX?

Please help my signiture is dissapeariiiiiing


Credit to Zro716 for the rainbow text generator
majormax
Scratcher
100+ posts

Kurai Core Programming -- Free Coding Services! No Strings Attached!

Title: MajorROM.com
Mock-up: see other
Images: see other
External Links: see other
Embed Content: see other
Other: Just for fun, could you make a homepage for my website majorrom.com? You can be creative and do whatever you like, just make it look nice and maybe I'll use it.

Also, look into github. If you want help setting it up and using it, leave a comment on my profile.

DOGE: DM7th6XAqfw6MkLtrkEKLcdhed5deyyHC8
BTC: 1DZ4sNQXydJCkSZQy53XqRYiCZpUDbNi8c

Powered by DjangoBB