mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-01 11:27:14 -05:00
Merge branch 'master' into production
This commit is contained in:
commit
2496423e43
3 changed files with 15 additions and 1 deletions
|
@ -114,3 +114,14 @@ block content
|
||||||
h3(data-i18n="teachers.sys_requirements_title")
|
h3(data-i18n="teachers.sys_requirements_title")
|
||||||
p(data-i18n="teachers.sys_requirements_1")
|
p(data-i18n="teachers.sys_requirements_1")
|
||||||
p(data-i18n="teachers.sys_requirements_2")
|
p(data-i18n="teachers.sys_requirements_2")
|
||||||
|
|
||||||
|
if (me.get('preferredLanguage', true) || 'en-US') == 'pl'
|
||||||
|
h3 Fundacją IT Leader Club Polska
|
||||||
|
p
|
||||||
|
| CodeCombat w marcu 2015 roku nawiązał współpracę z Fundacją IT Leader Club Polska celem promowania nauki programowania wśród najmłodszych w Polsce. Język programowania stał się drugim językiem, bez którego bardzo trudno będzie młodym ludziom w przyszłości zaistnieć na konkurencyjnym rynku pracy.
|
||||||
|
p
|
||||||
|
| Poznając podstawy języka programowania z Fundacją IT Leader Club Polska z wykorzystaniem CodeCombat, polskie dzieci będą bardzo szybko potrafiły poznać kluczowe zagadnienia programowania. Poprzez zabawę i interaktywną grę, dzieci szybko przyswoją niezbędną teorię i zaczną czerpać z programowania nie tylko wiedzę ale i pasję na całe życie - czego życzymy wszystkim naszym młodym studentom. W przypadku pytań prosimy o kontakt z Panem Arkadiuszem Lefanowiczem, Przewodniczącym Fundacji IT Leader Club Polska,
|
||||||
|
a(href="http://www.itleader.org.pl") itleader.org.pl
|
||||||
|
| ,
|
||||||
|
a(href="mailto:arkadiusz.lefanowicz@itleader.org.pl") arkadiusz.lefanowicz@itleader.org.pl
|
||||||
|
| .
|
||||||
|
|
|
@ -39,6 +39,9 @@ exports.config =
|
||||||
# So we remove the ones that have public in them.
|
# So we remove the ones that have public in them.
|
||||||
exec = require('child_process').exec
|
exec = require('child_process').exec
|
||||||
exec "perl -pi -e 's/\\/\\/# sourceMappingURL=public.*//g' public/javascripts/*.js"
|
exec "perl -pi -e 's/\\/\\/# sourceMappingURL=public.*//g' public/javascripts/*.js"
|
||||||
|
vagrant:
|
||||||
|
watcher:
|
||||||
|
usePolling: true
|
||||||
|
|
||||||
files:
|
files:
|
||||||
javascripts:
|
javascripts:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
vagrant ssh -c "sudo mount -o bind /node_modules /vagrant/node_modules"
|
vagrant ssh -c "sudo mount -o bind /node_modules /vagrant/node_modules"
|
||||||
vagrant ssh -c "cd /vagrant && bin/coco-brunch"
|
vagrant ssh -c "cd /vagrant && BRUNCH_ENV=vagrant bin/coco-brunch"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue