Friday, July 28, 2017

SaturdayKids | We teach kids to code & do awesome stuff

http://saturdaykids.com/?gclid=CjwKEAjwwevLBRCGy-Sp-fDKjF8SJACpwCb3mFlaHqNBjHrkhcHHKyr6m5g31B5jkBzmfTFQGo8b0RoCxhbw_wcB


Sent from my iPhone

PCS InfoComm Club Virtual Noticeboard

PCS InfoComm Club Virtual Noticeboard
http://tinyurl.com/pcsicc

Welcome to our PCS InfoComm Club Virtual Noticeboard!
____
Photo Gallery:
- From PCS Snap Google Drive
-
____
Check this out:
https://pcsinfocommclub.blogspot.com/
____
If you enjoy coding, join our InfoComm Club Special Membership.




____
Some plausible coding projects:
Project 1: Improvement to existing HDB lift
Project 2: Improvement to existing traffic lights system
:
:

Monday, July 17, 2017

ICT Tools

ICT Tools

*Assessment*
Class Responder
Flubaroo
Formative
GradeCam
Kahoot
Plickers
Poll Everywhere
Socrative

*Blogging & Website* - *Building*
Blogger
edublogs
Weebly
Wix
WordPress

*Book Publishing*
Lulu
Mixbook
Storybird

*Classroom Management*
Class Charts
ClassDojo
GoNoodle
Stick Pick
Too Noisy

*Cloud Storage*
Dropbox
Google Drive

*Coding Instruction*
Codecademy
Code Studio

*Collaboration*
Padlet
Post-It Plus
Realtime Board
Trello

*Content Curation*
Diigo
Feedly
Paper.li
Pinterest
Symbaloo

*Discussion Tools*
Skype
Snapchat
TodaysMeet
Voxer

*Feedback Tools*
Google Drive
Kaizena
Microsoft Word

*Flashcard Creators*
Quizlet
StudyBlue

*Flipped Learning*
Blendspace
DocentEDU
EDpuzzle
eduCanon
TED-Ed
Versal

*Fundraising*
Cheddar Up
DonorsChoose
GoFundMe
Indiegogo
Ziggedy

*Image Making*
Canva
Inkscape
Piktochart

*Interactive Posters*
Glogster
ThingLink

*Interactive* Whiteboards
Promethean ActivBoard
SMART Board

*Language Learning*
Duolingo
Livemocha

*Learning Management* Systems
Blackboard
Edmodo
FreshGrade
Google Classroom
Schoology

*Live Streaming*
Blab
Katch
Meerkat
Periscope

*Mind Mapping*
bubbl.us
Coggle
Popplet

*Note Taking*
Evernote
Google Keep
OneNote

*Parent Engagement*
Remind
Smore
VolunteerSpot

*Photo Editing*
PicMonkey
Pixlr

*Podcasting*
Audacity
audioBoom
Jewelbeat

*Presentation Tools*
emaze
Google Slides
Haiku Deck
PowerPoint
Prezi
Slideshare

*Productivity*
Google Calendar
IFTTT
Noisli
Toggl
Wunderlist

*QR Codes*
QR Code Generator
QR Code Reader

*Research Tools*
EasyBib
Google Scholar
Wonderopolis
Zotero

*Screencasting*
Camtasia Studio
Explain Everything
Screencast-o-Matic

*Social Media*
Facebook
Google Plus
Instagram
Reddit
Tumblr
Twitter

*Spreadsheet Tools*
Excel
Google Sheets

*Student Response Systems*
Class Responder
Kahoot
Plickers
Poll Everywhere
Socrative

*Survey Tools*
Google Forms
Polldaddy
Typeform

*Video Production*
iMovie
Magisto
Powtoon

*Video Sharing*
Vimeo
Vine
YouTube

*Virtual Reality*
Google Cardboard
Samsung Gear VR

*Writing*
Google Docs
Grammarly
Microsoft Word
WriteAbout
WriteWell


Sent from my iPhone

Thursday, June 29, 2017

Friday, May 26, 2017

t-score-calculator-by-CCL.html

<!doctype html>



<h2>Pseudo-PSLE t-score Calculator</h2>

<form>
EL : <input type="text" id="EL" value="0" /><br />
CL : <input type="text" id="CL" value="0" /><br />
Ma : <input type="text" id="Ma" value="0" /><br />
Sci : <input type="text" id="Sc" value="0" /><br />
</form>

<br />
<input type="button" onclick="calcTscore()" value="Click to calculate t-Score" />
<br />
<h1 id="tscore"></h1>

<form>
________________________<br />
<br />
EL Ave: <input type="text" id="EL_ave" value="66.5" /><br />
CL Ave: <input type="text" id="CL_ave" value="76.4" /><br />
Ma Ave: <input type="text" id="Ma_ave" value="63.8" /><br />
Sci Ave: <input type="text" id="Sc_ave" value="78.0" /><br />
<br />
EL SD: <input type="text" id="EL_sd" value="10.8" /><br />
CL SD: <input type="text" id="CL_sd" value="13.1" /><br />
Ma SD: <input type="text" id="Ma_sd" value="22.5" /><br />
Sci SD: <input type="text" id="Sc_sd" value="21.0" /><br />
________________________<br />
</form>

<script type"text/javascript">
function calcTscore()
{
var a1=parseFloat(document.getElementById("EL").value);
var a2=parseFloat(document.getElementById("CL").value);
var a3=parseFloat(document.getElementById("Ma").value);
var a4=parseFloat(document.getElementById("Sc").value);

var b1=parseFloat(document.getElementById("EL_ave").value);
var b2=parseFloat(document.getElementById("CL_ave").value);
var b3=parseFloat(document.getElementById("Ma_ave").value);
var b4=parseFloat(document.getElementById("Sc_ave").value);

var c1=parseFloat(document.getElementById("EL_sd").value);
var c2=parseFloat(document.getElementById("CL_sd").value);
var c3=parseFloat(document.getElementById("Ma_sd").value);
var c4=parseFloat(document.getElementById("Sc_sd").value);

var ts= Math.round(10* (200 + 10*( (a1-b1)/c1 + (a2-b2)/c2 + (a3-b3)/c3 + (a4-b4)/c4) ) )/10;
document.getElementById("tscore").innerHTML = ts;
}
</script>



</!doctype>Open the attachment from a browser