
To the Stars
By debkr
By debkr
Web-based survey with ranking, calculation and responses.
{type some description or instructions here}
How would you rate yourself for the following items… | ||||||||||
Q. 1 {enter description of item being ranked}
|
||||||||||
Q. 2 {enter description of item being ranked}
|
||||||||||
Q. 3 {enter description of item being ranked}
|
||||||||||
Q. 4 {enter description of item being ranked}
|
||||||||||
Q. 5 {enter description of item being ranked}
|
{optional – type something else here}
By debkr
And now for something completely different:
All these things were familiar to me from programming in school and as a maths undergrad (albeit a little rusty!). But now we come on to something completely different, something I hadn’t heard of before: tuples. I’ll call tuples the big brother of lists as they’re very similar to lists: they’re basically another type of collection of things. [Read more…] about Coding 101 (part 8)
By debkr
1. Information Theory Stream
2. Learning/Development Stream: how humans learn vs. how machines learn + developing machines to augment human learning
3. Collaborative Learning Stream
4. Innovation Stream
5. Agile Methodologies Stream
6. Educational Technology Stream: to review the technological and presentational innovations shaping education and L&D
Refer my earlier post “Learning About Learning” for some background on this new/additional PTP.
By debkr
Courses:
Learning to Learn module on Coursera, Univ. of California, San Diego
By debkr
I’ve been thinking more and more about the ideas Accelerated Learning and Augmented Learning (specifically in relation to an ongoing developmental Programming Project). In brief, this is about how machine learning and artificial intelligence can be used to help and empower humans, rather than just be there to make rich people more money and put more people out of jobs and into long-term unemployment or underemployment. [Read more…] about Learning About Learning
By debkr
1. Using a dictionary instead of lists for faster counting and simpler recall. This is straight forward, using the get method as taught by Dr. Chuck (see Coding 101 part 7 for more details).
words = dict()
for word in wordlist :
____if word in excluded : continue
____words[word] = words.get(word,0) + 1
[Read more…] about Building a Tagging Engine in Python using Dictionaries