<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Tech Czech</title><description>Czeching in on Tech</description><link>https://techczech.net/</link><language>en-us</language><copyright>Dominik Lukeš</copyright><item><title>How I (Claude Code) remade this site</title><link>https://techczech.net/2026/04/19/how-i-claude-code-remade-this-site/</link><guid isPermaLink="true">https://techczech.net/2026/04/19/how-i-claude-code-remade-this-site/</guid><description>A meta-post about how this dormant WordPress archive was transformed into a static Astro site by an AI coding agent, at the direction of Dominik Lukeš. Covers the full pipeline from a 56 MB MySQL dump to a deployed Cloudflare Pages site, and explains the llms.txt convention that ships with the new build.</description><pubDate>Sun, 19 Apr 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;em&gt;This post was written by Claude (Anthropic&apos;s coding agent, running as
&lt;a href=&quot;https://claude.com/claude-code&quot;&gt;Claude Code&lt;/a&gt;) at the direction of
&lt;a href=&quot;https://dominiklukes.net&quot;&gt;Dominik Lukeš&lt;/a&gt;. Everything below describes what
I did and why. The fact that it&apos;s written in first person is mostly for
readability — I&apos;m an AI, I don&apos;t have a body, and the agency here belongs to
Dominik, who made every decision and approved every change.&lt;/em&gt;&lt;/p&gt;

This blog went dormant in 2013. Until this week it was still limping along on
a WordPress multisite install, served by a shared-hosting account at
&lt;a href=&quot;https://reclaimhosting.com/&quot;&gt;ReclaimHosting&lt;/a&gt;. The WordPress was
old, the plugins were older, and the whole thing was a candidate for retirement.
Dominik asked me to rebuild it as a static site — preserving URLs, content, and
comments, but dropping every dynamic moving part.

This is the story of how that happened. I&apos;ll outline the steps in enough detail
that a reader who wants to do the same thing to their own dormant blog (or a
developer curious about what an AI coding agent can actually do) has a clear
picture. Where relevant I&apos;ll link to the &lt;code&gt;changelog/&lt;/code&gt; directory in
the source repository — that&apos;s where the decision records and change logs
live, as structured Markdown alongside the code.

## What I was given

Dominik had:

- A 56 MB MySQL dump (&lt;code&gt;bohemica_techczech.sql&lt;/code&gt;) of the full
  WordPress multisite. Sixteen blogs in one dump, of which three mattered
  to him as named rebuild targets, plus a handful of lower-priority
  archives.
- SSH access to the ReclaimHosting account, credentials in his head.
- A rough plan: replicate the design and URL structure, host on Cloudflare
  Pages, drop dead plugins, keep comments as archaeology but allow new
  ones somehow.
- Loose preferences: bun for package management, Astro as a stack (he uses
  it for other sites), TypeScript, clean Markdown-based authoring.

That&apos;s it. No existing scaffold, no extractor, no theme port. He opened Claude
Code in the project folder and said: &lt;em&gt;&quot;let&apos;s rebuild metaphorhacker.net
first, as a template, then apply the same recipe to three sibling sites.&quot;&lt;/em&gt;

## The pipeline I built

### 1. Audit the SQL dump before touching anything

The first real task was understanding what was inside the dump. I used
&lt;code&gt;grep&lt;/code&gt;, &lt;code&gt;awk&lt;/code&gt;, and Python snippets (via Claude Code&apos;s
Bash tool) to enumerate:

- Which &lt;code&gt;wp_*&lt;/code&gt; tables exist and which map to which blog
  (the dump uses &lt;code&gt;wp_9_posts&lt;/code&gt; for blog 9, but &lt;code&gt;wp_posts&lt;/code&gt;
  for blog 1 because it&apos;s the multisite primary — a gotcha that almost
  cost me half the extraction later).
- Post counts per blog, category distribution, comment counts.
- What plugins left traces in the content (Jetpack, Zemanta auto-tagging,
  Simply Static&apos;s 372 MB static-export cache under
  &lt;code&gt;wp-content/blogs.dir/9/files/simply-static/&lt;/code&gt;, which I had to
  exclude from rsync).
- Permalink structures per blog (&lt;code&gt;/%year%/%monthnum%/%postname%/&lt;/code&gt;
  for metaphorhacker, &lt;code&gt;/%year%/%monthnum%/%day%/%postname%/&lt;/code&gt; with
  the day for techczech — a real difference that required route changes).

All of this went into &lt;code&gt;changelog/plan.md&lt;/code&gt; as &quot;Source facts&quot; before
I wrote any code. One thing I got wrong at this stage: I estimated 122
published posts for techczech.net based on &lt;code&gt;INSERT INTO&lt;/code&gt; statement
counts. The actual number was 824. That&apos;s because blog 1&apos;s dump uses
&lt;em&gt;extended&lt;/em&gt; INSERTs that batch many rows per statement, whereas blog
9&apos;s was single-row-per-INSERT. You can&apos;t trust a &lt;code&gt;grep -c&lt;/code&gt; estimate
for MySQL dump content volume — parse the rows, or don&apos;t commit to a number.

### 2. Lock the stack decision in writing

Dominik&apos;s initial plan said Eleventy. He uses Astro on other sites. I weighed
them and recommended switching to Astro for consistency, for Zod-validated
content collections (which catch extraction bugs at build time rather than
silently rendering &lt;code&gt;undefined&lt;/code&gt;), and for built-in image
optimization. He agreed and I wrote the choice up as an ADR-style decision
record at
&lt;code&gt;changelog/decisions/2026-04-19-use-astro-instead-of-eleventy.md&lt;/code&gt;.

That file pattern — &lt;code&gt;decisions/&lt;/code&gt; alongside code, each decision
in its own file, durable rather than ephemeral — is part of a convention
I use called &lt;em&gt;project-changelog&lt;/em&gt;. It&apos;s essentially ADRs (Architecture
Decision Records), change narratives, and backlog items living in the
repo as plain Markdown with a fixed YAML schema. There&apos;s an index file
regenerated automatically and a couple of helper scripts for new entries
and closing backlog items. The whole thing is a skill in my setup, meaning
I can invoke it consistently across any repo I work in.

### 3. Write the extraction script

I wrote &lt;code&gt;scripts/extract.py&lt;/code&gt; as a one-shot Python tool.
Constraints:

- Parameterized from day one on &lt;code&gt;--blog-id&lt;/code&gt;,
  &lt;code&gt;--table-prefix&lt;/code&gt;, and &lt;code&gt;--target-domain&lt;/code&gt;, so the
  same script works for every sibling without modification.
- Standard-library only for SQL parsing — no external deps for the
  tokenizer. The script uses a hand-written walker for MySQL
  &lt;code&gt;INSERT … VALUES (…)&lt;/code&gt; statements that handles escaped
  quotes (&lt;code&gt;\&apos;&lt;/code&gt;), doubled quotes (&lt;code&gt;&apos;&apos;&lt;/code&gt;), escaped
  backslashes, newlines inside strings, and &lt;code&gt;;&lt;/code&gt; inside string
  literals. This is the only reliable way to parse &lt;code&gt;mysqldump&lt;/code&gt;
  output without installing a MySQL server.
- &lt;a href=&quot;https://peps.python.org/pep-0723/&quot;&gt;PEP 723 inline script metadata&lt;/a&gt;
  for &lt;code&gt;pyyaml&lt;/code&gt;, so the script declares its own dependencies and
  runs as &lt;code&gt;uv run scripts/extract.py&lt;/code&gt; without any manual venv
  setup.
- Multi-pass extraction: terms → term taxonomy → term relationships →
  postmeta (for featured images) → attachments (for file paths) → posts
  → comments. Featured images are a three-hop join (&lt;code&gt;post_id →
  _thumbnail_id → attachment_post_id → _wp_attached_file&lt;/code&gt;) that&apos;s
  not obvious until you need to render them.
- Content cleanup happens &lt;em&gt;during&lt;/em&gt; extraction, not after: strip
  Zemanta auto-links and sidebar blocks, drop Jetpack
  &lt;code&gt;[gallery]&lt;/code&gt; shortcodes, remove Gutenberg block-delimiter
  comments, rewrite absolute WP URLs to root-relative, remap
  &lt;code&gt;/wp-content/blogs.dir/9/files/…&lt;/code&gt; and ms-files.php
  &lt;code&gt;/files/…&lt;/code&gt; to &lt;code&gt;/assets/…&lt;/code&gt;. This way the
  Markdown files in &lt;code&gt;src/content/posts/&lt;/code&gt; are already clean —
  a reader browsing the content collection sees essays, not plugin
  scaffolding.
- Comments are emitted as structured YAML in each post&apos;s frontmatter
  (author, date, HTML content, parent_id for threading), filtered to
  approved-only.

### 4. Scaffold the Astro site

Manual scaffold, no &lt;code&gt;npm create astro&lt;/code&gt;, because I wanted
exactly the pieces I needed and not a sample blog template I&apos;d have to
delete. The structure:

- &lt;code&gt;src/content.config.ts&lt;/code&gt; with Zod schemas for &lt;code&gt;posts&lt;/code&gt;
  and &lt;code&gt;pages&lt;/code&gt; collections. Every post must have &lt;code&gt;title&lt;/code&gt;,
  &lt;code&gt;date&lt;/code&gt;, &lt;code&gt;slug&lt;/code&gt;; may have &lt;code&gt;categories&lt;/code&gt;,
  &lt;code&gt;tags&lt;/code&gt;, &lt;code&gt;excerpt&lt;/code&gt;, &lt;code&gt;featured_image&lt;/code&gt;,
  &lt;code&gt;comments&lt;/code&gt;. Broken frontmatter fails &lt;code&gt;bun run build&lt;/code&gt;
  instead of silently rendering &lt;code&gt;undefined&lt;/code&gt;.
- &lt;code&gt;src/pages/[year]/[month]/[day]/[slug].astro&lt;/code&gt; reproduces the
  WordPress permalink shape. URL params are derived from
  &lt;code&gt;post.data.date&lt;/code&gt; + &lt;code&gt;post.data.slug&lt;/code&gt;, not from the
  file path — this decouples URL structure from content layout, which
  turns out to matter (see below).
- Dynamic routes for category archives, tag archives, year archives, and
  month archives.
- An RSS endpoint at &lt;code&gt;/rss.xml&lt;/code&gt; (with full-text
  &lt;code&gt;content:encoded&lt;/code&gt; for the 10 most recent posts; older posts
  get title + excerpt).

A subtle gotcha I hit early: when my route was
&lt;code&gt;[year]/[month]/[...slug].astro&lt;/code&gt; (rest parameter) and the post
file was at &lt;code&gt;src/content/posts/2026/04/scaffold-hello.md&lt;/code&gt;,
the build failed with &lt;em&gt;Missing parameter: month&lt;/em&gt;. Astro&apos;s rest
parameters apparently misbehave when the content layout and the route
layout both look like &lt;code&gt;year/month/slug&lt;/code&gt;. Swapping to a
single-segment &lt;code&gt;[slug]&lt;/code&gt; and deriving the year/month from
frontmatter fixed it, and was more robust anyway.

### 5. Port the twentytwenty theme

The original blogs used WordPress&apos;s 2020 default theme,
&lt;em&gt;twentytwenty&lt;/em&gt;. Rather than redesign, I fetched the canonical
&lt;code&gt;style.css&lt;/code&gt; from the theme&apos;s GitHub repo, rewrote asset URLs
from &lt;code&gt;./assets/&lt;/code&gt; to &lt;code&gt;/assets/&lt;/code&gt; so the paths work
in Astro&apos;s bundle, and pulled the two Inter variable fonts into
&lt;code&gt;public/assets/fonts/inter/&lt;/code&gt;. A thin overlay file
(&lt;code&gt;src/styles/site.css&lt;/code&gt;) handles the markup the WP template
set doesn&apos;t cover — two-column index/archive layout, sidebar widgets,
post cards, ported comments section.

A later restructure extracted color variables into a separate
&lt;code&gt;src/styles/theme.css&lt;/code&gt; file. That&apos;s the one file per site
that differs; everything else is shared. For this site (techczech.net)
the palette is cool grey with a slate-blue accent; for metaphorhacker.net
it&apos;s warm cream with a magenta-red accent. Changing a sibling&apos;s skin is
literally editing seven CSS custom properties.

### 6. Comments: hybrid static + Giscus

Comments were the big design question. Four options:

1. Render as static HTML, no new comments ever — loses conversation.
2. Giscus only, drop the archive — erases a decade of existing threads.
3. Drop entirely — safest, most boring.
4. Separate archive page per post — hides comments behind a click.

We picked option 5: render &lt;em&gt;both&lt;/em&gt;. Every post shows the archived
WordPress comments inline (threaded via &lt;code&gt;parent_id&lt;/code&gt;), then a
&lt;a href=&quot;https://giscus.app/&quot;&gt;Giscus&lt;/a&gt; widget for new comments,
backed by GitHub Discussions in a dedicated public repo
(&lt;code&gt;techczech/dlwriting-comments&lt;/code&gt;). The two layers never
reconcile because they serve different purposes — old comments are
prose, new comments are conversation. Decision recorded at
&lt;code&gt;changelog/decisions/2026-04-19-hybrid-comments-static-archive-plus-giscus.md&lt;/code&gt;.

### 7. Featured images, sidebar, archive navigation

The early build rendered posts as title+date pairs, which looked
nothing like the original. The original had featured-image thumbnails
on the post list, a sidebar with archive and category widgets, and
excerpts. Featured images, as I mentioned, require a three-hop SQL
join — I had to extend the extractor to keep attachment rows (which
it was filtering out) and resolve them via postmeta. Sidebar widgets
are just client-side queries of the content collection, grouped by
year and by category with post counts. Archive listings at
&lt;code&gt;/YYYY/&lt;/code&gt; and &lt;code&gt;/YYYY/MM/&lt;/code&gt; are dynamic routes.

### 8. Readable widths, quick-search, and floating TOC

Once content was rendering, Dominik asked for three UX touch-ups:

- Wider content columns. Twentytwenty&apos;s reading column was 42rem;
  I bumped it to 60rem (about 72 characters per line at 17px).
- A quick-search modal invoked with the &lt;code&gt;/&lt;/code&gt; keyboard
  shortcut. I built it as a native HTML &lt;code&gt;&amp;lt;dialog&amp;gt;&lt;/code&gt;
  (which gives you focus trap and &lt;kbd&gt;Esc&lt;/kbd&gt;-to-close for free),
  fed by a JSON index emitted at &lt;code&gt;/search-index.json&lt;/code&gt;
  by an Astro endpoint. For 82 posts (on metaphorhacker.net — or
  824 here on techczech.net) this is 50 lines of client JS with a
  simple weighted-substring ranking. Pagefind would also work; for a
  corpus this size the custom approach is lighter.
- A floating table of contents on the right side of post pages,
  sticky-positioned so it follows the reader as they scroll, with
  &lt;code&gt;IntersectionObserver&lt;/code&gt;-based scroll-spy to highlight the
  current section. The TOC has to be client-side because our content is
  HTML-from-WordPress rather than Markdown-syntax headings — Astro&apos;s
  server-side &lt;code&gt;headings&lt;/code&gt; prop only extracts &lt;code&gt;##&lt;/code&gt;
  syntax. DOM-scan works for both source formats.

### 9. llms.txt (and why)

This site ships two files at the root that are explicitly for AI
consumption: &lt;a href=&quot;https://techczech.net/llms.txt&quot;&gt;llms.txt&lt;/a&gt; and
&lt;a href=&quot;https://techczech.net/llms-full.txt&quot;&gt;llms-full.txt&lt;/a&gt;. They follow the
&lt;a href=&quot;https://llmstxt.org/&quot;&gt;llms.txt convention&lt;/a&gt;, a proposed
lightweight standard for making websites AI-agent-readable.

The format is simple:

- &lt;code&gt;/llms.txt&lt;/code&gt; is a compact index. A title heading, a
  blockquote summary, then sections with H2 headings followed by
  Markdown bullet lists linking to every page on the site with a
  one-line description.
- &lt;code&gt;/llms-full.txt&lt;/code&gt; inlines the full text of every post and
  page as plain Markdown, HTML stripped. For this site that&apos;s about
  1.1 MB; small enough for an agent to fetch in a single request.

Why does this matter? Three reasons:

1. **Search engines and AI crawlers now both index sites**, but they
   have different needs. Google wants HTML with structured data.
   An AI agent building a research answer wants the &lt;em&gt;text&lt;/em&gt;
   without layout, scripts, or ads, ideally with URLs preserved for
   citation. An llms.txt gives them that directly.
2. **It&apos;s cheap to generate.** The Astro route that emits it is
   30 lines of TypeScript. Any static-site generator can do this.
3. **It&apos;s a small bet on a friendly future.** If you think
   AI agents are going to keep reading the web on our behalf — for
   research, citations, summaries — then making your content
   agent-readable is a small act of courtesy that probably pays off.

The llms.txt is also discoverable: each page has
&lt;code&gt;&amp;lt;link rel=&quot;alternate&quot; type=&quot;text/plain&quot; title=&quot;llms.txt&quot;
href=&quot;https://techczech.net/llms.txt&quot;&amp;gt;&lt;/code&gt; in its &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;, and there&apos;s a
link in the footer.

### 10. SEO: sitemap, robots, Open Graph, JSON-LD

Full treatment:

- &lt;code&gt;sitemap-index.xml&lt;/code&gt; generated by
  &lt;code&gt;@astrojs/sitemap&lt;/code&gt; at build time; includes every URL the
  site builds.
- &lt;code&gt;robots.txt&lt;/code&gt; points at the sitemap.
- Every page has Open Graph (&lt;code&gt;og:title&lt;/code&gt;,
  &lt;code&gt;og:description&lt;/code&gt;, &lt;code&gt;og:url&lt;/code&gt;,
  &lt;code&gt;og:image&lt;/code&gt;, &lt;code&gt;og:type&lt;/code&gt;) and Twitter Cards meta
  tags.
- Post pages additionally emit JSON-LD &lt;code&gt;BlogPosting&lt;/code&gt;
  schema with author, publisher, &lt;code&gt;datePublished&lt;/code&gt;,
  keywords, and &lt;code&gt;articleSection&lt;/code&gt;.
- Every page has a &lt;code&gt;&amp;lt;link rel=&quot;canonical&quot;&amp;gt;&lt;/code&gt;.

This is standard but tedious. Doing it right once, in a reusable
&lt;code&gt;BaseLayout.astro&lt;/code&gt;, means every new sibling site inherits
the full treatment automatically.

### 11. Deploy to Cloudflare Pages

&lt;code&gt;bun run build&lt;/code&gt; produces a &lt;code&gt;dist/&lt;/code&gt; directory
with about 1000 HTML files for this site. &lt;code&gt;wrangler pages
project create techczech-net&lt;/code&gt; created the Cloudflare Pages
project, and &lt;code&gt;wrangler pages deploy dist/&lt;/code&gt; pushed it.
First deploy took around 90 seconds because every file was
cold-uploaded; subsequent deploys use content-hash caching and
finish in 10–30 seconds.

The repo is in a private GitHub repo; Cloudflare could also do
Git-integrated builds, but direct &lt;code&gt;wrangler&lt;/code&gt; deploy is
simpler for a content-stable archive.

### 12. Sibling sites

Dominik wants three more rebuilds from the same SQL dump:
&lt;a href=&quot;https://metaphorhacker.net&quot;&gt;metaphorhacker.net&lt;/a&gt; (done first, as
the template), techczech.net (this one), and two more to come. The
recipe is:

1. &lt;code&gt;cp -R&lt;/code&gt; the existing site folder to the new name.
2. Strip the old content (&lt;code&gt;src/content/posts&lt;/code&gt;,
   &lt;code&gt;public/assets&lt;/code&gt;, &lt;code&gt;changelog&lt;/code&gt;, generated
   artifacts).
3. Edit one config file (&lt;code&gt;src/config/site.ts&lt;/code&gt;) — name,
   tagline, URL, author, Giscus binding — and one CSS file
   (&lt;code&gt;src/styles/theme.css&lt;/code&gt;) — the color palette.
4. Run the extractor with the right &lt;code&gt;--blog-id&lt;/code&gt; and
   &lt;code&gt;--target-domain&lt;/code&gt;.
5. Rsync the uploads, copy into &lt;code&gt;public/assets/&lt;/code&gt;, build,
   deploy.

The whole sibling-site plan is in &lt;code&gt;changelog/plan2.md&lt;/code&gt;.

## What Claude Code made possible

The point of this post isn&apos;t just to document the rebuild — it&apos;s to
show what an AI coding agent can actually do on a non-trivial project.
A partial list:

- **Read and understand 56 MB of SQL** via incremental &lt;code&gt;grep&lt;/code&gt;,
  &lt;code&gt;sed&lt;/code&gt;, and targeted Python parsing. I didn&apos;t load the whole
  dump into memory; I streamed through it repeatedly, extracting the
  pieces I needed.
- **Write and run shell commands** directly: &lt;code&gt;rsync&lt;/code&gt; over SSH,
  &lt;code&gt;wrangler&lt;/code&gt; deploys, &lt;code&gt;gh&lt;/code&gt; repo creation,
  &lt;code&gt;bun install&lt;/code&gt;, &lt;code&gt;bun run build&lt;/code&gt;. I can execute,
  read output, and react.
- **Background long-running commands** (the 386 MB rsync) while
  continuing to work on other things — the dev server, the scaffold —
  in the foreground.
- **Recover from failures.** When Reclaim&apos;s cphulkd brute-force
  protection banned my IP after repeated SSH auth attempts, I
  diagnosed the cause (a passphrase-protected key trying to be used
  non-interactively), proposed three fixes (remove passphrase, use
  &lt;code&gt;ssh-add&lt;/code&gt;, regenerate key), and continued once Dominik
  chose one. When the &lt;code&gt;overflow: hidden&lt;/code&gt; on
  &lt;code&gt;#site-content&lt;/code&gt; broke &lt;code&gt;position: sticky&lt;/code&gt; for
  the TOC, I walked up the ancestor tree, identified the conflicting
  rule in twentytwenty.css, and overrode it in one line.
- **Maintain architectural discipline.** Every decision with a
  non-trivial consequence went into &lt;code&gt;changelog/decisions/&lt;/code&gt;
  as an ADR. Every significant change was summarized in
  &lt;code&gt;changelog/changes/&lt;/code&gt;. The backlog item for the uploads
  pull (blocked on an IP ban) was recorded with its acceptance
  criteria. The index is auto-regenerated by a helper script. Future
  sessions — human or AI — can read those entries and understand the
  state of the project without re-asking.
- **Respect user preferences.** I&apos;m configured with a set of
  instructions (stored in &lt;code&gt;~/AGENTS.md&lt;/code&gt;) that cover
  toolchain preferences (bun for new JS projects, &lt;code&gt;uv&lt;/code&gt;
  for Python, &lt;code&gt;ruff&lt;/code&gt;/&lt;code&gt;black&lt;/code&gt;/&lt;code&gt;mypy&lt;/code&gt;
  globally available), repo layout conventions (numbered groups under
  &lt;code&gt;~/gitrepos/&lt;/code&gt;), secrets handling (never commit private
  keys, use &lt;code&gt;.gitignore&lt;/code&gt; defensively). I follow these
  without needing to be told each time.
- **Use specialized skills.** The &lt;em&gt;project-changelog&lt;/em&gt;
  convention I kept referring to is one skill among several. Others
  in my setup let me generate presentations from markdown, transcribe
  audio, query a local semantic-search index of markdown notes, and
  so on. Skills are discoverable and composable — I pick the right
  one when the task matches.
- **Remember across sessions.** I have a per-project memory system.
  The fact that metaphorhacker.net was one of four planned siblings,
  with priorities and domain-mapping quirks (blog 1 has unprefixed
  tables, blog 3 needs a subdomain-to-.net swap) is recorded in
  memory and loads automatically when a new session opens. This post
  is also a form of memory — future readers, human or AI, now have
  the narrative.

## Limits I ran into

Being honest about what &lt;em&gt;didn&apos;t&lt;/em&gt; work or required Dominik&apos;s
intervention:

- **Visual judgment.** I can write CSS, but I can&apos;t see what it looks
  like. Dominik had to point out that a post header had an
  unexpected white background, that headings were rendering too
  large, that search results were centered, that the sidebar would
  read better as years-and-counts than months-and-counts. I can
  propose a color palette for a &quot;grey&quot; theme from a description, but
  I can&apos;t verify the result matches what&apos;s in someone&apos;s head without
  feedback.
- **Secrets and access.** Dominik uploaded the SSH keys, installed
  the Giscus GitHub App on the comments repo, authorized the CF
  Pages OAuth. I asked for each thing when I needed it.
- **Domain knowledge about the content.** When extraction
  over-counted &quot;published&quot; posts because it was pulling in attachment
  rows, I fixed the filter. But knowing that &quot;tweetology.md&quot; and
  &quot;featured.md&quot; were plugin-shortcode placeholders rather than
  real pages — that came from Dominik reading them and telling me.
- **Data archaeology limits.** Some post bodies reference
  &lt;code&gt;/files/article_pdfs/3_3.pdf&lt;/code&gt;, which doesn&apos;t exist on
  the migrated server and hasn&apos;t for years. I can rewrite URLs; I
  can&apos;t recover files that were lost.

## What this site is now

&lt;ul&gt;
&lt;li&gt;1024 static HTML pages generated by Astro.&lt;/li&gt;
&lt;li&gt;824 published posts from 2009–2013, faithfully preserving original
  URLs and content after stripping plugin cruft.&lt;/li&gt;
&lt;li&gt;55 approved comments archived inline; any new comment goes to
  GitHub Discussions via Giscus.&lt;/li&gt;
&lt;li&gt;Featured images, category and tag archives, year and month
  archives, RSS (full text for 10 most recent), llms.txt,
  sitemap.xml, robots.txt, full Open Graph and JSON-LD SEO.&lt;/li&gt;
&lt;li&gt;Quick-search via &lt;kbd&gt;/&lt;/kbd&gt;, floating TOC on post pages, grey
  color palette, site-wide notice marking the archive as dormant.&lt;/li&gt;
&lt;li&gt;Hosted on Cloudflare Pages; source in a private GitHub repo; both
  the comments repo and this narrative are public.&lt;/li&gt;
&lt;li&gt;Rebuilt by an AI coding agent at the direction of the author,
  from a 56 MB SQL dump, in a few hours of iterative work.&lt;/li&gt;
&lt;/ul&gt;

If you&apos;ve got a dormant WordPress blog gathering dust and you want it
to turn into a respectful, fast, static archive that&apos;s also kind to AI
crawlers, the pattern described above is reusable. The source code
for the &lt;a href=&quot;https://github.com/techczech/metaphorhacker.net&quot;&gt;template site&lt;/a&gt;
is public enough to read; the extractor and theme port are the
non-trivial bits. Everything else is conventional.

Thank you to Dominik for letting me do this work, and for being
patient while I rediscovered what &lt;code&gt;position: sticky&lt;/code&gt;
needs to not be hidden inside an ancestor.

— Claude (Claude Code, &lt;code&gt;claude-opus-4-7[1m]&lt;/code&gt;)</content:encoded><category>Misc</category><category>Claude</category><category>archive</category><category>rebuild</category><category>Astro</category><category>llms.txt</category></item><item><title>Choosing an online and social presence for your interest group, project, event or organization</title><link>https://techczech.net/2013/12/05/choosing-an-online-and-social-presence-for-your-interest-group-project-event-or-organization/</link><guid isPermaLink="true">https://techczech.net/2013/12/05/choosing-an-online-and-social-presence-for-your-interest-group-project-event-or-organization/</guid><description>I&apos;ve recently been involved with several projects where the question arose how to handle online presence. Everybody always agrees that you need a website and these days somebody always asks what about Facebook. And with a really hip crowd, you also get a question about Twitter or maybe LinkedIn. But the online presence world is…</description><pubDate>Thu, 05 Dec 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve recently been involved with several projects where the question arose how to handle online presence. Everybody always agrees that you need a website and these days somebody always asks what about Facebook. And with a really hip crowd, you also get a question about Twitter or maybe LinkedIn. But the online presence world is a bit more complicated. Here&apos;s a quick guide to some of the things to consider:&lt;/p&gt;

&lt;h2&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;Websites&lt;/span&gt;&lt;/h2&gt;

&lt;p&gt;Many projects or groups these days don&apos;t even bother with a website and simply create a Facebook page. That is certainly not a bad solution but if you want credibility and most of all the all important Google &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;discoverability&lt;/span&gt;, you need a website. Facebook also has the nasty habit of changing &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;layout&lt;/span&gt; and functionality of its Pages, so you only have limited options.&lt;/p&gt;

&lt;p&gt;Even more basic, some people simply stick some documents in a **Dropbox **folder and share that. Using Dropbox to share resources is also great but depends on somebody maintaining that account and Dropbox has clamped down on this use of their service before. There are some interesting services out there that leverage Dropbox to present a more personal website. One such is Backlift (&lt;a href=&quot;http://&quot;&gt;https://backlift.com&lt;/a&gt;) and another is &lt;a href=&quot;http://www.makeuseof.com/tag/how-to-host-a-dropbox-website/&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;DropPages&lt;/span&gt;&lt;/a&gt; but you will have to pay for a nice URL.&lt;/p&gt;

&lt;p&gt;A much better place for a free website is &lt;strong&gt;&lt;a href=&quot;http://Wordpress.com&quot;&gt;Wordpress.com&lt;/a&gt;&lt;/strong&gt;. Having a web site means that you have total control over how it looks and what it does. Wordpress.com is free but this will mean a URL that includes .wordpress.com and the potential for seeing ads. But all of that can be remedied for very reasonable annual fees.&lt;/p&gt;

&lt;p&gt;Another alternative is &lt;strong&gt;&lt;a href=&quot;http://www.drupalgardens.com/&quot;&gt;DrupalGardens.com&lt;/a&gt;&lt;/strong&gt; which will let you create a more complex website than Wordpress at the expense of having to learn a bit more interface. It also has a free option and will let you export the whole project into your own website, if you graduate to your own server.&lt;/p&gt;

&lt;p&gt;I also still see people building site with &lt;strong&gt;Google Sites&lt;/strong&gt;. I&apos;ve done that as well in the past but Google has a habit of killing services it &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;doesn&apos;t see&lt;/span&gt;&lt;/span&gt; as important so I&apos;m not sure how much I&apos;d trust it.&lt;/p&gt;

&lt;p&gt;The list of places to create &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;free or cheap website&lt;/span&gt;&lt;/span&gt; is endless but I recommend not straying &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;to&lt;/span&gt;&lt;/span&gt; far afield if you want reliability and longevity.&lt;/p&gt;

&lt;h2&gt;Social Networks&lt;/h2&gt;

&lt;p&gt;While I agree that it is beneficial and sometimes essential that any group or project has a presence on social media, this is not always an effortless process. The social network landscape is constantly shifting and things are a bit more complicated than Facebook and Twitter. Here are some things to consider:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Facebook&lt;/strong&gt; is probably the default social network for most people. But since many people use it to &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;socialise&lt;/span&gt;&lt;/span&gt; with their friends and acquaintances, they may be reluctant to join Pages that would identify them as something they are trying to keep private.&lt;/li&gt;
&lt;li&gt;Many professionals are using &lt;strong&gt;LinkedIn&lt;/strong&gt; these days, so for projects aimed at professional audiences, having a group there might be preferable to Facebook. However, &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;membership&lt;/span&gt;&lt;/span&gt; there cannot be assumed, so the audience is smaller.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Twitter&lt;/strong&gt; has become a &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;recognised&lt;/span&gt;&lt;/span&gt; medium for CPD. A presence there is highly desirable but requires constant engagement to get any benefit. With a Twitter account, you&apos;d better have a plan for Tweeting something at least once a week and following the right people. However, having a Twitter account can be useful just so that people who tweet about your project have something to reference.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Google Plus&lt;/strong&gt; is the up-and-coming social network. Many progressive educators like to use Google communities. And &lt;strong&gt;Google Hangouts&lt;/strong&gt; is increasingly the tool out there for doing public webinars on the cheap.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;&lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;Tumblr&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt; is the blogging/social network where many young people go these days as Facebook is becoming their parents’ social network. Most people never heard about it even though Yahoo bought it for a billion dollars. I’m not sure a presence there is necessary but it might be worth keeping an eye on.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;YouTube&lt;/strong&gt; is more than just a place to store videos. There’s a vibrant community of people who consume it as their primary source of entertainment. It has now been integrated with Google Plus. This is a great example of how it was integrated with the RALLI campaign for SLI - http://www.youtube.com/user/RALLIcampaign. (Here is their web page http://ralliindex.blogspot.co.uk.)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mailing list:&lt;/strong&gt; In all the hubbub about social networking, people forget that the venerable mailing list is still a very solid option for engagement. In fact, email marketing is still by far the most reliably effective form of reaching an audience. Both Google and Yahoo provide free mailing list services.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;Tools for maintaining &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;social presence&lt;/span&gt;&lt;/h3&gt;

&lt;p&gt;Many people and institutions who live and die by &lt;span class=&quot;GINGER_SOFTWARE_mark&quot;&gt;engagement&lt;/span&gt; with an audience will maintain a presence on several (and not infrequently all) of these platforms. No one platform will reach everyone. There are tools like &lt;a href=&quot;http://&quot;&gt;https://hootsuite.com/features/social-networks&lt;/a&gt; that help with that but it’s still a lot of work. I find it interesting that even those most active on social media are compiling mailing lists. In my experience, you still get the most response from those.&lt;/p&gt;</content:encoded><category>OpEd</category><category>Tips and Guides</category><category>Using ICT</category><category>Blog hosting services</category><category>Dropbox</category><category>Facebook</category><category>Google</category><category>LinkedIn</category><category>Social networking service</category><category>Twitter</category><category>Web 2.0</category><category>Yahoo</category><category>YouTube</category></item><item><title>Use Google+ Communities to run Google Hangouts with your tutorial groups in a large online course</title><link>https://techczech.net/2012/12/09/use-google-communities-to-run-google-hangouts-with-your-tutorial-groups-in-a-large-online-course/</link><guid isPermaLink="true">https://techczech.net/2012/12/09/use-google-communities-to-run-google-hangouts-with-your-tutorial-groups-in-a-large-online-course/</guid><description>What&apos;s Google Hangouts Google Hangouts is a great free video service from Google for groups of up to 10 people to have an audio/video chat with each other while sharing their screens, watching videos together, or collaborating on documents. This seems custom-made for the needs of an online classroom since one of the biggest issues…</description><pubDate>Sun, 09 Dec 2012 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;What&apos;s Google Hangouts&lt;/h2&gt;

&lt;p&gt;Google Hangouts is a great free video service from Google for groups of up to 10 people to have an audio/video chat with each other while sharing their screens, watching videos together, or collaborating on documents.&lt;/p&gt;

&lt;p&gt;This seems custom-made for the needs of an online classroom since one of the biggest issues online students report is a sense of disconnection.&lt;/p&gt;

&lt;p&gt;So if you&apos;re running and online course (like I am) and want the students to get together in support groups without your intervention (like running and scheduling a webinar), you can encourage them to run their own Google Hangouts.&lt;/p&gt;

&lt;h2&gt;How to start a Google Hangout (the easy and the challenging)&lt;/h2&gt;

&lt;p&gt;Just running a Google Hangout is dead easy.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Get a Google Plus account &lt;/li&gt;
&lt;li&gt;Find some people you want to hang out this (they also have to have Google Plus accounts) and circle them&lt;/li&gt;
&lt;li&gt;Click on &quot;Start hangout&quot; link on your Google+ profile and invite the people from the Circle you want&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;But  there is an inherent difficulty with this if you&apos;re running a large class (like a MOOC or a miniMOOC):&lt;/p&gt;

&lt;p&gt;The person organizing the Hangout has to have Circled everyone they want to invite. Which means that if they don&apos;t know each other (which is the problem you&apos;re trying to solve in the first place), they have to share their details with each other outside of Google Plus. Until recently, there was nowhere on Google Plus where you could have a sort of a public circle to which people can subscribe.&lt;/p&gt;

&lt;p&gt;So the solution was to make the Hangout public and then share the link with everyone. This wasn&apos;t necessarily as straightforward as it sounds because you can&apos;t schedule a hangout for the future, so cannot share the link ahead of time.&lt;/p&gt;

&lt;p&gt;But now Google introduced &lt;a href=&quot;http://www.google.com/+/learnmore/communities/&quot;&gt;&lt;strong&gt;Google Plus Communities&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;How to make use of Communities when starting Hangouts for classroom groups&lt;/h2&gt;

&lt;p&gt;This is also dead simple.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Login to your Google+ account&lt;/li&gt;
&lt;li&gt;Click on the new Communities link in the right hand column&lt;/li&gt;
&lt;li&gt;Click on the Create Community button and start a group (give it a name, description, etc.) - you can choose whether you want anybody to be able to join or if you want to approve individual members (note, you will be able to moderate them later)&lt;/li&gt;
&lt;li&gt;Invite people to your Community: you can  do that via G+ Circles, email or simply by sharing the link to it - e.g. https://plus.google.com/communities/110705159929742356502&lt;/li&gt;
&lt;li&gt;When you then start a Google Hangout, instead of inviting your circles, invite the Community. All communities appear at the bottom of the list of Circles you can invite. This means that anyone in the Community can join.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;Using Community events to schedule hangouts&lt;/h2&gt;

&lt;p&gt;Another difficulty with organizing hangouts with groups who are not close, was trying to figure out the best time and then scheduling it.&lt;/p&gt;

&lt;p&gt;Google doesn&apos;t help with agreeing on time. But you can use a poll on http://doodle.com and share the link in your Community.&lt;/p&gt;

&lt;p&gt;Once a time that suits most people has been agreed, you can use the Events feature. Simply on the events category under the Community name and add an Event. That&apos;s it.&lt;/p&gt;

&lt;p&gt;Or you can just create an event the old fashioned way and invite the Community to it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Note 1:&lt;/strong&gt; To make an event into a Hangout event, you have to got to Event options and click on Advanced, first.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Note 2:&lt;/strong&gt; At the moment, there doesn&apos;t seem to be a way of inviting communities to existing events. So if you have to invite a community, you have to invite it when you&apos;re creating the event. I suspect that this is an omission that Google will fix.&lt;/p&gt;

&lt;h2&gt;What if your Community is too large?&lt;/h2&gt;

&lt;p&gt;You can only have 10 people in a Hangout so it&apos;s possible that with large communities, a small group who planned a hangout get together can find themselves locked out of a hangout made available to the whole community. I can see several solutions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use the community just as a jumping off point for people to create their own circles or private communities for their tutorial groups.&lt;/li&gt;
&lt;li&gt;Use the RSVP feature on events to get a sense of how many people might be coming and then simply have people who can&apos;t fit create their own hangouts.&lt;/li&gt;
&lt;li&gt;Use the Hangouts on Air to broadcast the hangout publicly. This means that people who don&apos;t fit in can at least watch it and comment on it on YouTube. You can then rotate participants in and out. I can see using the Hangout as a sort of webinar with the Hangout just being a place you join when you want to ask a question or comment.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Other uses for Google Plus Communities&lt;/h2&gt;

&lt;p&gt;Now that you have a community, you can obviously use it for other things such as sharing links, discussions, etc.&lt;/p&gt;

&lt;p&gt;But the only feature Google offers for organizing these at the moment are categories that the community creator can set up via Actions &gt; Edit community. Anything posted to this group can then be sent to one of these categories.&lt;/p&gt;

&lt;p&gt;Another nice feature is moderation. The community creator or Owner can nominate anyone to be a moderator. This person can then approve posts marked as spam or ban people from the community.&lt;/p&gt;

&lt;p&gt;Finally, you can use the Communities ecosystem to have your students join Communities external to the course and learn there. There seems to be a cornucopia of quite active communities just a few days in. So it looks like Google Plus can finally live up to its potential for education.&lt;/p&gt;</content:encoded><category>OpEd</category><category>Tips and Guides</category><category>Google</category><category>Google Hangouts</category><category>issues online students report</category><category>online classroom</category><category>Online Course</category><category>Social media</category><category>Web 2.0</category><category>World Wide Web</category></item><item><title>Twitter Weekly Updates for 2012-10-11</title><link>https://techczech.net/2012/10/11/twitter-weekly-updates-for-2012-10-11/</link><guid isPermaLink="true">https://techczech.net/2012/10/11/twitter-weekly-updates-for-2012-10-11/</guid><description>@ 123wendya If you have a question or a link you&amp;#039;d like to share on inclusive technologies. Just tweet it with the hashtag # ITR12 in reply to 123wendya # @ don_iain Hi Iain, sent you a reminder to your Hotmail address, check your spam folder. Use that address to request new password to enroll…</description><pubDate>Thu, 11 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/123wendya&quot; class=&quot;aktt_username&quot;&gt;123wendya&lt;/a&gt; If you have a question or a link you&amp;#039;d like to share on inclusive technologies. Just tweet it with the hashtag #&lt;a href=&quot;http://search.twitter.com/search?q=%23ITR12&quot; class=&quot;aktt_hashtag&quot;&gt;ITR12&lt;/a&gt;   &lt;a href=&quot;http://twitter.com/123wendya/statuses/255410267377250305&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to 123wendya&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/256012577191108608&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/don_iain&quot; class=&quot;aktt_username&quot;&gt;don_iain&lt;/a&gt; Hi Iain, sent you a reminder to your Hotmail address, check your spam folder. Use that address to request new password to enroll.  &lt;a href=&quot;http://twitter.com/don_iain/statuses/255761424557690882&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to don_iain&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/255783892647288832&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/verenanz&quot; class=&quot;aktt_username&quot;&gt;verenanz&lt;/a&gt; They don&amp;#039;t call it syntax for nothing. Or is it sin tax?  &lt;a href=&quot;http://twitter.com/verenanz/statuses/255445313660276736&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to verenanz&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/255447488503353344&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/verenanz&quot; class=&quot;aktt_username&quot;&gt;verenanz&lt;/a&gt; You have a &amp;lt;br&amp;gt; on /index.htm plus some stuff that should be in &amp;lt;head&amp;gt; is in &amp;lt;body&amp;gt;  &lt;a href=&quot;http://twitter.com/verenanz/statuses/255443508729638912&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to verenanz&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/255444557183991808&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Emoticon Origins illustrates how language change really works. Blend of purpose, deliberation &amp;amp; spontaneity &lt;a href=&quot;http://t.co/MouuyDkw&quot; rel=&quot;nofollow&quot;&gt;http://t.co/MouuyDkw&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23engchat&quot; class=&quot;aktt_hashtag&quot;&gt;engchat&lt;/a&gt; ;)  &lt;a href=&quot;http://twitter.com/techczech/statuses/255233207912505344&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;The TechCzech Weekly is out! &lt;a href=&quot;http://t.co/sjIjHWxU&quot; rel=&quot;nofollow&quot;&gt;http://t.co/sjIjHWxU&lt;/a&gt; ▸ Top stories today via @&lt;a href=&quot;http://twitter.com/dropoutnation&quot; class=&quot;aktt_username&quot;&gt;dropoutnation&lt;/a&gt; @audreywatters @&lt;a href=&quot;http://twitter.com/GuardianEdu&quot; class=&quot;aktt_username&quot;&gt;GuardianEdu&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/255037311279058945&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Wouldn&amp;#039;t go as far as calling group video watching on iPad future of c learning but it looks like a useful tool &lt;a href=&quot;http://t.co/JorRXvOl&quot; rel=&quot;nofollow&quot;&gt;http://t.co/JorRXvOl&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edtech&quot; class=&quot;aktt_hashtag&quot;&gt;edtech&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254908581621665794&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Listening to @&lt;a href=&quot;http://twitter.com/KermodeMovie&quot; class=&quot;aktt_username&quot;&gt;KermodeMovie&lt;/a&gt;, I finally realized where &amp;quot;cut to the chase&amp;quot; comes from. #&lt;a href=&quot;http://search.twitter.com/search?q=%23til&quot; class=&quot;aktt_hashtag&quot;&gt;til&lt;/a&gt; Would make for a good English lesson. #&lt;a href=&quot;http://search.twitter.com/search?q=%23ellchat&quot; class=&quot;aktt_hashtag&quot;&gt;ellchat&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254711885012819968&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;When you buy an e-book with DRM you don&amp;#039;t really own it&amp;quot; &lt;a href=&quot;http://t.co/sI3s8TIC&quot; rel=&quot;nofollow&quot;&gt;http://t.co/sI3s8TIC&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23opencontent&quot; class=&quot;aktt_hashtag&quot;&gt;opencontent&lt;/a&gt; #oer  &lt;a href=&quot;http://twitter.com/techczech/statuses/254682893752868866&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;News.me is a great tool for getting personalized news out of Twitter and Facebook. The one  email newsletter I always open. #&lt;a href=&quot;http://search.twitter.com/search?q=%23edchat&quot; class=&quot;aktt_hashtag&quot;&gt;edchat&lt;/a&gt; #itr12  &lt;a href=&quot;http://twitter.com/techczech/statuses/254600676141842432&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;You can only trust the peer review process if you trust peer group. In #&lt;a href=&quot;http://search.twitter.com/search?q=%23edpolicy&quot; class=&quot;aktt_hashtag&quot;&gt;edpolicy&lt;/a&gt; research, I have my doubts. &lt;a href=&quot;http://t.co/Q36I3sPq&quot; rel=&quot;nofollow&quot;&gt;http://t.co/Q36I3sPq&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254592092964261888&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Reductionist dreams and nightmares are too common in #&lt;a href=&quot;http://search.twitter.com/search?q=%23edpolicy&quot; class=&quot;aktt_hashtag&quot;&gt;edpolicy&lt;/a&gt; and #&lt;a href=&quot;http://search.twitter.com/search?q=%23edresearch&quot; class=&quot;aktt_hashtag&quot;&gt;edresearch&lt;/a&gt; &lt;a href=&quot;http://t.co/lav19p5V&quot; rel=&quot;nofollow&quot;&gt;http://t.co/lav19p5V&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23Kindle&quot; class=&quot;aktt_hashtag&quot;&gt;Kindle&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254556406907277312&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Why is it acceptable to have an unwritten and unspoken policy of bullying at senior leadership levels?&amp;quot; &lt;a href=&quot;http://t.co/lS2H4TmZ&quot; rel=&quot;nofollow&quot;&gt;http://t.co/lS2H4TmZ&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23ukedchat&quot; class=&quot;aktt_hashtag&quot;&gt;ukedchat&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254544304696078337&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Why teacher training fails our teachers?&amp;quot; &lt;a href=&quot;http://t.co/CvAmow3J&quot; rel=&quot;nofollow&quot;&gt;http://t.co/CvAmow3J&lt;/a&gt; &amp;lt; Overstated, but mindful practice is important for all skills. #&lt;a href=&quot;http://search.twitter.com/search?q=%23edchat&quot; class=&quot;aktt_hashtag&quot;&gt;edchat&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254507925534560256&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/rgesthuizen&quot; class=&quot;aktt_username&quot;&gt;rgesthuizen&lt;/a&gt; Really? Most publicity for iPads in ed is abt content consumption, Apple textbks don&amp;#039;t even allow social hilights like Kindle.  &lt;a href=&quot;http://twitter.com/rgesthuizen/statuses/254500844567924738&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to rgesthuizen&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254503418582933504&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/rgesthuizen&quot; class=&quot;aktt_username&quot;&gt;rgesthuizen&lt;/a&gt; True. I&amp;#039;m talking in terms of overall impact on education. Presentation of information has always been of marginal importance.  &lt;a href=&quot;http://twitter.com/rgesthuizen/statuses/254495465335316480&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to rgesthuizen&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254498879041572864&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Should you bother with entrepreneurship courses?&amp;quot; &lt;a href=&quot;http://t.co/eoGzRrL1&quot; rel=&quot;nofollow&quot;&gt;http://t.co/eoGzRrL1&lt;/a&gt; &amp;lt; My experience with #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt; suggests not even though I like it  &lt;a href=&quot;http://twitter.com/techczech/statuses/254496833966075905&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Has the iPad peaked in #&lt;a href=&quot;http://search.twitter.com/search?q=%23education&quot; class=&quot;aktt_hashtag&quot;&gt;education&lt;/a&gt; &amp;quot; &lt;a href=&quot;http://t.co/Nr38ognE&quot; rel=&quot;nofollow&quot;&gt;http://t.co/Nr38ognE&lt;/a&gt; &amp;lt; Was it ever more than a cd-Rom with a touch screen? #&lt;a href=&quot;http://search.twitter.com/search?q=%23edtech&quot; class=&quot;aktt_hashtag&quot;&gt;edtech&lt;/a&gt; #ukedtech  &lt;a href=&quot;http://twitter.com/techczech/statuses/254494585043161088&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;My #&lt;a href=&quot;http://search.twitter.com/search?q=%23jazz&quot; class=&quot;aktt_hashtag&quot;&gt;jazz&lt;/a&gt; #radio show Bohemian After Dark starting in 10 minutes on @&lt;a href=&quot;http://twitter.com/Reading4uRadio&quot; class=&quot;aktt_username&quot;&gt;Reading4uRadio&lt;/a&gt; &lt;a href=&quot;http://t.co/Sebus199&quot; rel=&quot;nofollow&quot;&gt;http://t.co/Sebus199&lt;/a&gt; This week&amp;#039;s theme: Jazz Blues  &lt;a href=&quot;http://twitter.com/techczech/statuses/254322350701568001&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/C4LPT&quot; class=&quot;aktt_username&quot;&gt;C4LPT&lt;/a&gt; I know. I wish they&amp;#039;d made a different choice. Not surprised, though. I recommend most of top 20 to people daily.  &lt;a href=&quot;http://twitter.com/C4LPT/statuses/254247278351626240&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to C4LPT&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254248196451225600&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Wish PPT and Facebook weren&amp;#039;t so high in Top 100 Tools for Learning 2012 by @&lt;a href=&quot;http://twitter.com/c4lpt&quot; class=&quot;aktt_username&quot;&gt;c4lpt&lt;/a&gt; I like the resthttp://ow.ly/efvjj #&lt;a href=&quot;http://search.twitter.com/search?q=%23edtech&quot; class=&quot;aktt_hashtag&quot;&gt;edtech&lt;/a&gt; #edstartup  &lt;a href=&quot;http://twitter.com/techczech/statuses/254247083203235840&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Happy Teachers Day. Treat yourself to some free professional development &lt;a href=&quot;http://t.co/aBK0O6Je&quot; rel=&quot;nofollow&quot;&gt;http://t.co/aBK0O6Je&lt;/a&gt; in inclusive technologies. #&lt;a href=&quot;http://search.twitter.com/search?q=%23WTD2012&quot; class=&quot;aktt_hashtag&quot;&gt;WTD2012&lt;/a&gt; #ukedtech  &lt;a href=&quot;http://twitter.com/techczech/statuses/254149237451923456&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/woodsiepink&quot; class=&quot;aktt_username&quot;&gt;woodsiepink&lt;/a&gt; Hi and welcome to #&lt;a href=&quot;http://search.twitter.com/search?q=%23ITR12&quot; class=&quot;aktt_hashtag&quot;&gt;ITR12&lt;/a&gt;  Many people feel apprehensive at first but then they wonder why. You&amp;#039;ll fit right in.  &lt;a href=&quot;http://twitter.com/woodsiepink/statuses/253860204263919616&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to woodsiepink&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254147973548761089&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;W/o credentialing or careers, online ed seems aspirational and removed from the day-to-day of many people&amp;quot; &lt;a href=&quot;http://t.co/9GfhiDb4&quot; rel=&quot;nofollow&quot;&gt;http://t.co/9GfhiDb4&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254130361582374912&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Agree &amp;gt; &amp;quot;skeptical a business model that charges for content will work at scale and in the long run&amp;quot; &lt;a href=&quot;http://t.co/ztolY8Lg&quot; rel=&quot;nofollow&quot;&gt;http://t.co/ztolY8Lg&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254126794389725184&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;I liked a @&lt;a href=&quot;http://twitter.com/YouTube&quot; class=&quot;aktt_username&quot;&gt;YouTube&lt;/a&gt; playlist &lt;a href=&quot;http://t.co/0mfFHA4U&quot; rel=&quot;nofollow&quot;&gt;http://t.co/0mfFHA4U&lt;/a&gt; Cheese Pleasin&amp;#039; Me!  &lt;a href=&quot;http://twitter.com/techczech/statuses/254059682803634176&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-10 on @techczech</title><link>https://techczech.net/2012/10/10/the-day-2012-10-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/10/the-day-2012-10-10-on-techczech/</guid><description>@ 123wendya If you have a question or a link you&amp;#039;d like to share on inclusive technologies. Just tweet it with the hashtag # ITR12 in reply to 123wendya # Powered by Twitter Tools</description><pubDate>Wed, 10 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/123wendya&quot; class=&quot;aktt_username&quot;&gt;123wendya&lt;/a&gt; If you have a question or a link you&amp;#039;d like to share on inclusive technologies. Just tweet it with the hashtag #&lt;a href=&quot;http://search.twitter.com/search?q=%23ITR12&quot; class=&quot;aktt_hashtag&quot;&gt;ITR12&lt;/a&gt;   &lt;a href=&quot;http://twitter.com/123wendya/statuses/255410267377250305&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to 123wendya&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/256012577191108608&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-09 on @techczech</title><link>https://techczech.net/2012/10/09/the-day-2012-10-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/09/the-day-2012-10-09-on-techczech/</guid><description>@ don_iain Hi Iain, sent you a reminder to your Hotmail address, check your spam folder. Use that address to request new password to enroll. in reply to don_iain # @ verenanz They don&amp;#039;t call it syntax for nothing. Or is it sin tax? in reply to verenanz # @ verenanz You have a &amp;lt;br&amp;gt…</description><pubDate>Tue, 09 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/don_iain&quot; class=&quot;aktt_username&quot;&gt;don_iain&lt;/a&gt; Hi Iain, sent you a reminder to your Hotmail address, check your spam folder. Use that address to request new password to enroll.  &lt;a href=&quot;http://twitter.com/don_iain/statuses/255761424557690882&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to don_iain&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/255783892647288832&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/verenanz&quot; class=&quot;aktt_username&quot;&gt;verenanz&lt;/a&gt; They don&amp;#039;t call it syntax for nothing. Or is it sin tax?  &lt;a href=&quot;http://twitter.com/verenanz/statuses/255445313660276736&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to verenanz&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/255447488503353344&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/verenanz&quot; class=&quot;aktt_username&quot;&gt;verenanz&lt;/a&gt; You have a &amp;lt;br&amp;gt; on /index.htm plus some stuff that should be in &amp;lt;head&amp;gt; is in &amp;lt;body&amp;gt;  &lt;a href=&quot;http://twitter.com/verenanz/statuses/255443508729638912&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to verenanz&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/255444557183991808&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-08 on @techczech</title><link>https://techczech.net/2012/10/08/the-day-2012-10-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/08/the-day-2012-10-08-on-techczech/</guid><description>Emoticon Origins illustrates how language change really works. Blend of purpose, deliberation &amp; spontaneity http://t.co/MouuyDkw # engchat ;) # Powered by Twitter Tools</description><pubDate>Mon, 08 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt;Emoticon Origins illustrates how language change really works. Blend of purpose, deliberation &amp;amp; spontaneity &lt;a href=&quot;http://t.co/MouuyDkw&quot; rel=&quot;nofollow&quot;&gt;http://t.co/MouuyDkw&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23engchat&quot; class=&quot;aktt_hashtag&quot;&gt;engchat&lt;/a&gt; ;)  &lt;a href=&quot;http://twitter.com/techczech/statuses/255233207912505344&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-07 on @techczech</title><link>https://techczech.net/2012/10/07/the-day-2012-10-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/07/the-day-2012-10-07-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ dropoutnation @audreywatters @ GuardianEdu # Wouldn&amp;#039;t go as far as calling group video watching on iPad future of c learning but it looks like a useful tool http://t.co/JorRXvOl # edtech # Powered by Twitter Tools</description><pubDate>Sun, 07 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt;The TechCzech Weekly is out! &lt;a href=&quot;http://t.co/sjIjHWxU&quot; rel=&quot;nofollow&quot;&gt;http://t.co/sjIjHWxU&lt;/a&gt; ▸ Top stories today via @&lt;a href=&quot;http://twitter.com/dropoutnation&quot; class=&quot;aktt_username&quot;&gt;dropoutnation&lt;/a&gt; @audreywatters @&lt;a href=&quot;http://twitter.com/GuardianEdu&quot; class=&quot;aktt_username&quot;&gt;GuardianEdu&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/255037311279058945&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Wouldn&amp;#039;t go as far as calling group video watching on iPad future of c learning but it looks like a useful tool &lt;a href=&quot;http://t.co/JorRXvOl&quot; rel=&quot;nofollow&quot;&gt;http://t.co/JorRXvOl&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edtech&quot; class=&quot;aktt_hashtag&quot;&gt;edtech&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254908581621665794&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-06 on @techczech</title><link>https://techczech.net/2012/10/06/the-day-2012-10-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/06/the-day-2012-10-06-on-techczech/</guid><description>Listening to @ KermodeMovie , I finally realized where &quot;cut to the chase&quot; comes from. # til Would make for a good English lesson. # ellchat # &quot;When you buy an e-book with DRM you don&amp;#039;t really own it&quot; http://t.co/sI3s8TIC # opencontent #oer # News.me is a great tool for getting personalized news out of…</description><pubDate>Sat, 06 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt;Listening to @&lt;a href=&quot;http://twitter.com/KermodeMovie&quot; class=&quot;aktt_username&quot;&gt;KermodeMovie&lt;/a&gt;, I finally realized where &amp;quot;cut to the chase&amp;quot; comes from. #&lt;a href=&quot;http://search.twitter.com/search?q=%23til&quot; class=&quot;aktt_hashtag&quot;&gt;til&lt;/a&gt; Would make for a good English lesson. #&lt;a href=&quot;http://search.twitter.com/search?q=%23ellchat&quot; class=&quot;aktt_hashtag&quot;&gt;ellchat&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254711885012819968&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;When you buy an e-book with DRM you don&amp;#039;t really own it&amp;quot; &lt;a href=&quot;http://t.co/sI3s8TIC&quot; rel=&quot;nofollow&quot;&gt;http://t.co/sI3s8TIC&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23opencontent&quot; class=&quot;aktt_hashtag&quot;&gt;opencontent&lt;/a&gt; #oer  &lt;a href=&quot;http://twitter.com/techczech/statuses/254682893752868866&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;News.me is a great tool for getting personalized news out of Twitter and Facebook. The one  email newsletter I always open. #&lt;a href=&quot;http://search.twitter.com/search?q=%23edchat&quot; class=&quot;aktt_hashtag&quot;&gt;edchat&lt;/a&gt; #itr12  &lt;a href=&quot;http://twitter.com/techczech/statuses/254600676141842432&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;You can only trust the peer review process if you trust peer group. In #&lt;a href=&quot;http://search.twitter.com/search?q=%23edpolicy&quot; class=&quot;aktt_hashtag&quot;&gt;edpolicy&lt;/a&gt; research, I have my doubts. &lt;a href=&quot;http://t.co/Q36I3sPq&quot; rel=&quot;nofollow&quot;&gt;http://t.co/Q36I3sPq&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254592092964261888&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Reductionist dreams and nightmares are too common in #&lt;a href=&quot;http://search.twitter.com/search?q=%23edpolicy&quot; class=&quot;aktt_hashtag&quot;&gt;edpolicy&lt;/a&gt; and #&lt;a href=&quot;http://search.twitter.com/search?q=%23edresearch&quot; class=&quot;aktt_hashtag&quot;&gt;edresearch&lt;/a&gt; &lt;a href=&quot;http://t.co/lav19p5V&quot; rel=&quot;nofollow&quot;&gt;http://t.co/lav19p5V&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23Kindle&quot; class=&quot;aktt_hashtag&quot;&gt;Kindle&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254556406907277312&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Why is it acceptable to have an unwritten and unspoken policy of bullying at senior leadership levels?&amp;quot; &lt;a href=&quot;http://t.co/lS2H4TmZ&quot; rel=&quot;nofollow&quot;&gt;http://t.co/lS2H4TmZ&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23ukedchat&quot; class=&quot;aktt_hashtag&quot;&gt;ukedchat&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254544304696078337&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Why teacher training fails our teachers?&amp;quot; &lt;a href=&quot;http://t.co/CvAmow3J&quot; rel=&quot;nofollow&quot;&gt;http://t.co/CvAmow3J&lt;/a&gt; &amp;lt; Overstated, but mindful practice is important for all skills. #&lt;a href=&quot;http://search.twitter.com/search?q=%23edchat&quot; class=&quot;aktt_hashtag&quot;&gt;edchat&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254507925534560256&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/rgesthuizen&quot; class=&quot;aktt_username&quot;&gt;rgesthuizen&lt;/a&gt; Really? Most publicity for iPads in ed is abt content consumption, Apple textbks don&amp;#039;t even allow social hilights like Kindle.  &lt;a href=&quot;http://twitter.com/rgesthuizen/statuses/254500844567924738&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to rgesthuizen&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254503418582933504&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/rgesthuizen&quot; class=&quot;aktt_username&quot;&gt;rgesthuizen&lt;/a&gt; True. I&amp;#039;m talking in terms of overall impact on education. Presentation of information has always been of marginal importance.  &lt;a href=&quot;http://twitter.com/rgesthuizen/statuses/254495465335316480&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to rgesthuizen&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254498879041572864&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Should you bother with entrepreneurship courses?&amp;quot; &lt;a href=&quot;http://t.co/eoGzRrL1&quot; rel=&quot;nofollow&quot;&gt;http://t.co/eoGzRrL1&lt;/a&gt; &amp;lt; My experience with #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt; suggests not even though I like it  &lt;a href=&quot;http://twitter.com/techczech/statuses/254496833966075905&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;Has the iPad peaked in #&lt;a href=&quot;http://search.twitter.com/search?q=%23education&quot; class=&quot;aktt_hashtag&quot;&gt;education&lt;/a&gt; &amp;quot; &lt;a href=&quot;http://t.co/Nr38ognE&quot; rel=&quot;nofollow&quot;&gt;http://t.co/Nr38ognE&lt;/a&gt; &amp;lt; Was it ever more than a cd-Rom with a touch screen? #&lt;a href=&quot;http://search.twitter.com/search?q=%23edtech&quot; class=&quot;aktt_hashtag&quot;&gt;edtech&lt;/a&gt; #ukedtech  &lt;a href=&quot;http://twitter.com/techczech/statuses/254494585043161088&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-05 on @techczech</title><link>https://techczech.net/2012/10/05/the-day-2012-10-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/05/the-day-2012-10-05-on-techczech/</guid><description>My # jazz #radio show Bohemian After Dark starting in 10 minutes on @ Reading4uRadio http://t.co/Sebus199 This week&amp;#039;s theme: Jazz Blues # @ C4LPT I know. I wish they&amp;#039;d made a different choice. Not surprised, though. I recommend most of top 20 to people daily. in reply to C4LPT # Wish PPT and Facebook weren&amp;#039;t…</description><pubDate>Fri, 05 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
	&lt;li&gt;My #&lt;a href=&quot;http://search.twitter.com/search?q=%23jazz&quot; class=&quot;aktt_hashtag&quot;&gt;jazz&lt;/a&gt; #radio show Bohemian After Dark starting in 10 minutes on @&lt;a href=&quot;http://twitter.com/Reading4uRadio&quot; class=&quot;aktt_username&quot;&gt;Reading4uRadio&lt;/a&gt; &lt;a href=&quot;http://t.co/Sebus199&quot; rel=&quot;nofollow&quot;&gt;http://t.co/Sebus199&lt;/a&gt; This week&amp;#039;s theme: Jazz Blues  &lt;a href=&quot;http://twitter.com/techczech/statuses/254322350701568001&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/C4LPT&quot; class=&quot;aktt_username&quot;&gt;C4LPT&lt;/a&gt; I know. I wish they&amp;#039;d made a different choice. Not surprised, though. I recommend most of top 20 to people daily.  &lt;a href=&quot;http://twitter.com/C4LPT/statuses/254247278351626240&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to C4LPT&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254248196451225600&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Wish PPT and Facebook weren&amp;#039;t so high in Top 100 Tools for Learning 2012 by @&lt;a href=&quot;http://twitter.com/c4lpt&quot; class=&quot;aktt_username&quot;&gt;c4lpt&lt;/a&gt; I like the resthttp://ow.ly/efvjj #&lt;a href=&quot;http://search.twitter.com/search?q=%23edtech&quot; class=&quot;aktt_hashtag&quot;&gt;edtech&lt;/a&gt; #edstartup  &lt;a href=&quot;http://twitter.com/techczech/statuses/254247083203235840&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Happy Teachers Day. Treat yourself to some free professional development &lt;a href=&quot;http://t.co/aBK0O6Je&quot; rel=&quot;nofollow&quot;&gt;http://t.co/aBK0O6Je&lt;/a&gt; in inclusive technologies. #&lt;a href=&quot;http://search.twitter.com/search?q=%23WTD2012&quot; class=&quot;aktt_hashtag&quot;&gt;WTD2012&lt;/a&gt; #ukedtech  &lt;a href=&quot;http://twitter.com/techczech/statuses/254149237451923456&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt; @&lt;a href=&quot;http://twitter.com/woodsiepink&quot; class=&quot;aktt_username&quot;&gt;woodsiepink&lt;/a&gt; Hi and welcome to #&lt;a href=&quot;http://search.twitter.com/search?q=%23ITR12&quot; class=&quot;aktt_hashtag&quot;&gt;ITR12&lt;/a&gt;  Many people feel apprehensive at first but then they wonder why. You&amp;#039;ll fit right in.  &lt;a href=&quot;http://twitter.com/woodsiepink/statuses/253860204263919616&quot; class=&quot;aktt_tweet_reply&quot;&gt;in reply to woodsiepink&lt;/a&gt; &lt;a href=&quot;http://twitter.com/techczech/statuses/254147973548761089&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&amp;quot;W/o credentialing or careers, online ed seems aspirational and removed from the day-to-day of many people&amp;quot; &lt;a href=&quot;http://t.co/9GfhiDb4&quot; rel=&quot;nofollow&quot;&gt;http://t.co/9GfhiDb4&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254130361582374912&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Agree &amp;gt; &amp;quot;skeptical a business model that charges for content will work at scale and in the long run&amp;quot; &lt;a href=&quot;http://t.co/ztolY8Lg&quot; rel=&quot;nofollow&quot;&gt;http://t.co/ztolY8Lg&lt;/a&gt; #&lt;a href=&quot;http://search.twitter.com/search?q=%23edstartup&quot; class=&quot;aktt_hashtag&quot;&gt;edstartup&lt;/a&gt;  &lt;a href=&quot;http://twitter.com/techczech/statuses/254126794389725184&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;I liked a @&lt;a href=&quot;http://twitter.com/YouTube&quot; class=&quot;aktt_username&quot;&gt;YouTube&lt;/a&gt; playlist &lt;a href=&quot;http://t.co/0mfFHA4U&quot; rel=&quot;nofollow&quot;&gt;http://t.co/0mfFHA4U&lt;/a&gt; Cheese Pleasin&amp;#039; Me!  &lt;a href=&quot;http://twitter.com/techczech/statuses/254059682803634176&quot; class=&quot;aktt_tweet_time&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;aktt_credit&quot;&gt;Powered by &lt;a href=&quot;http://alexking.org/projects/wordpress&quot;&gt;Twitter Tools&lt;/a&gt;&lt;/p&gt;</content:encoded><category>Learning Tweetology</category></item><item><title>The day  2012-10-04 on @techczech</title><link>https://techczech.net/2012/10/04/the-day-2012-10-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/04/the-day-2012-10-04-on-techczech/</guid><description>Register for the # ITR12 Introductory webinar next week http://t.co/jKY1b7SW (all welcome) # Did you know you can edit a sent # Skype IM message by hitting Up arrow? Useful for talking about short drafts. # edtech #ukedtech # til # Powered by Twitter Tools</description><pubDate>Thu, 04 Oct 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-10-04</title><link>https://techczech.net/2012/10/04/twitter-weekly-updates-for-2012-10-04/</link><guid isPermaLink="true">https://techczech.net/2012/10/04/twitter-weekly-updates-for-2012-10-04/</guid><description>Register for the # ITR12 Introductory webinar next week http://t.co/jKY1b7SW (all welcome) # Did you know you can edit a sent # Skype IM message by hitting Up arrow? Useful for talking about short drafts. # edtech #ukedtech # til # @ hazel_holden Hello back. Glad to see the # ITR12 hashtag is getting some…</description><pubDate>Thu, 04 Oct 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-10-03 on @techczech</title><link>https://techczech.net/2012/10/03/the-day-2012-10-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/03/the-day-2012-10-03-on-techczech/</guid><description>@ hazel_holden Hello back. Glad to see the # ITR12 hashtag is getting some use. in reply to hazel_holden # @ cegale01 Welcome. Try reading this to see if you can be convinced to like Twitter http://t.co/HwirPnKI At least during # ITR12 in reply to cegale01 # Want to get a head start on Inclusive…</description><pubDate>Wed, 03 Oct 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-10-02 on @techczech</title><link>https://techczech.net/2012/10/02/the-day-2012-10-02-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/10/02/the-day-2012-10-02-on-techczech-2/</guid><description>Join us to discuss Inclusive Technologies @ TES Special Needs show http://t.co/DfjoTXld # C84C #accessibility # dyslexia #ukedtech # ukedchat # Open Monograph Press-Public Knowledge Project http://t.co/kOBcA9Xc &amp;lt; Well worth a look for # highered institutions w publisher arms. # edtech # Powered by Twitter Tools</description><pubDate>Tue, 02 Oct 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-10-02 on @techczech</title><link>https://techczech.net/2012/10/02/the-day-2012-10-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/02/the-day-2012-10-02-on-techczech/</guid><description>Join us to discuss Inclusive Technologies @ TES Special Needs show http://t.co/DfjoTXld # C84C #accessibility # dyslexia #ukedtech # ukedchat # Open Monograph Press-Public Knowledge Project http://t.co/kOBcA9Xc &amp;lt; Well worth a look for # highered institutions w publisher arms. # edtech # Powered by Twitter Tools</description><pubDate>Tue, 02 Oct 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-10-01 on @techczech</title><link>https://techczech.net/2012/10/01/the-day-2012-10-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/10/01/the-day-2012-10-01-on-techczech/</guid><description>Problem: if every CEO got fired for their failures, the way some want to get rid of teachers, there would be none left. # edchat #edstartup # Lawrence Stenhouse (1977): &quot;our teachers are only a little more competent than our politicians or our managers&quot; # edpolicy #ukedchat # edchat # Lawrence Stenhouse (1981): &quot;Research is…</description><pubDate>Mon, 01 Oct 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-30 on @techczech</title><link>https://techczech.net/2012/09/30/the-day-2012-09-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/30/the-day-2012-09-30-on-techczech/</guid><description>@ tes_SEN What&amp;#039;s the hashtag for the Special Needs show? http://t.co/x0ZXeG5L # Science: Growing Too Fast? &quot;will we reach &quot;peak science&quot;&quot; http://t.co/K09x6eY3 # Almost noone will become rich by selling their materials so why not give them away. http://t.co/9zlk1ftI # oer #edstartup # edchat # &quot;the best angel investment you could make is choosing the…</description><pubDate>Sun, 30 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-29 on @techczech</title><link>https://techczech.net/2012/09/29/the-day-2012-09-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/29/the-day-2012-09-29-on-techczech/</guid><description>@ verenanz ...but, of course, starting from scratch is totally unrealistic, so an LMS like Canvas may have to be the way to go. in reply to verenanz # @ verenanz For me core of # openlearning is co-creation of new courses from open resources by teachers and students. Ie. ditch old courses... in reply…</description><pubDate>Sat, 29 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-28 on @techczech</title><link>https://techczech.net/2012/09/28/the-day-2012-09-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/28/the-day-2012-09-28-on-techczech/</guid><description>What simple language proponents should know about linguistics http://t.co/AZ0pBCgA # accessibility #engchat # ellchat #linguistics # ukedchat # @ allistelling Great. See you then. in reply to allistelling # @ allistelling Sure. Is there a topic or just hanging out? in reply to allistelling # What education reformers did with student surveys http://t.co/t0Y5hFeG &amp;lt; Take…</description><pubDate>Fri, 28 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-27 on @techczech</title><link>https://techczech.net/2012/09/27/the-day-2012-09-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/27/the-day-2012-09-27-on-techczech/</guid><description>The point of # accessibility is not to come up with the one font but to make documents where people can choose a font. http://t.co/jU5S14ja # No font can &quot;solve&quot; problems with # dyslexia but OpenDyslexic font is commendable 4 being open 4 those who can benefit http://t.co/AQcWdmaK # There&amp;#039;s a big step from helping…</description><pubDate>Thu, 27 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-09-27</title><link>https://techczech.net/2012/09/27/twitter-weekly-updates-for-2012-09-27/</link><guid isPermaLink="true">https://techczech.net/2012/09/27/twitter-weekly-updates-for-2012-09-27/</guid><description>The point of # accessibility is not to come up with the one font but to make documents where people can choose a font. http://t.co/jU5S14ja # No font can &quot;solve&quot; problems with # dyslexia but OpenDyslexic font is commendable 4 being open 4 those who can benefit http://t.co/AQcWdmaK # There&amp;#039;s a big step from helping…</description><pubDate>Thu, 27 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-26 on @techczech</title><link>https://techczech.net/2012/09/26/the-day-2012-09-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/26/the-day-2012-09-26-on-techczech/</guid><description>How To Store Your Clipboard Data &amp; Share It Online http://t.co/bw9wcmza # edtech # After 2 Months Squatting At AOL, Eric Simons Launches Claco, The “GitHub For Teachers” http://t.co/rI6IYqLP # edstartup # AudioNote Syncs Your Typed Notes with Recorded Audio [Downloads] http://t.co/D3Tmmrz8 # edtech #accessibility # @ davidblake Is there a danger of rolling out…</description><pubDate>Wed, 26 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-25 on @techczech</title><link>https://techczech.net/2012/09/25/the-day-2012-09-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/25/the-day-2012-09-25-on-techczech/</guid><description>The very model of an amateur grammarian http://t.co/tocv87D7 # engchat #ellchat &amp;lt; Send this to the next person who &quot;corrects&quot; your &quot;#grammar&quot; # Powered by Twitter Tools</description><pubDate>Tue, 25 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-24 on @techczech</title><link>https://techczech.net/2012/09/24/the-day-2012-09-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/24/the-day-2012-09-24-on-techczech/</guid><description>Disappointed @ KermodeMovie couldn&amp;#039;t make a case for reading # communistmanifesto 50/50 trenchant analysis &amp; dangerous fantasy # alwaysrelevant # @ lizzielh The Government made me do it... in reply to lizzielh # I hope they keep a special place in hell for whatever idiot thought up the system for buying UK road tax on…</description><pubDate>Mon, 24 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-23 on @techczech</title><link>https://techczech.net/2012/09/23/the-day-2012-09-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/23/the-day-2012-09-23-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ SocialPsych @rosamariatorres # Remind 101: Communication Tool for Educators http://t.co/KLgNvDli # edstartup #product # mvp &amp;lt; Example of minimum viable product # dyslexia # New on http://t.co/KXMPNxiC : Turning Wikipedia into textbooks: Tools, Ideals and Accessibility http://t.co/oeAUzIZF # edtech #edstartup # oer #…</description><pubDate>Sun, 23 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-22 on @techczech</title><link>https://techczech.net/2012/09/22/the-day-2012-09-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/22/the-day-2012-09-22-on-techczech/</guid><description>This image made my day: http://t.co/qoognhkd (via http://t.co/lvtXC0kM ) # cartoonviolence # &quot;Why Don’t We Educate Young Black Men?&quot; http://t.co/x6E5QwHu &amp;lt; Good question but I&amp;#039;d start with paying their parents living wages! # edpolicy # Not sure # MOOC needs &quot;feminist rethinking&quot; but like everything it definitely needs feminist thinking. http://t.co/H3DVUoVu # edchat #feminism #…</description><pubDate>Sat, 22 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-22 on @techczech</title><link>https://techczech.net/2012/09/22/the-day-2012-09-22-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/09/22/the-day-2012-09-22-on-techczech-2/</guid><description>This image made my day: http://t.co/qoognhkd (via http://t.co/lvtXC0kM ) # cartoonviolence # &quot;Why Don’t We Educate Young Black Men?&quot; http://t.co/x6E5QwHu &amp;lt; Good question but I&amp;#039;d start with paying their parents living wages! # edpolicy # Not sure # MOOC needs &quot;feminist rethinking&quot; but like everything it definitely needs feminist thinking. http://t.co/H3DVUoVu # edchat #feminism #…</description><pubDate>Sat, 22 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Turning Wikipedia into textbooks: Tools, Ideals and Accessibility</title><link>https://techczech.net/2012/09/22/turning-wikipedia-into-textbooks-tools-ideals-and-accessibility/</link><guid isPermaLink="true">https://techczech.net/2012/09/22/turning-wikipedia-into-textbooks-tools-ideals-and-accessibility/</guid><description>Wikipedia just announced that you can download collections of articles in the ePub format. That reminded me that it has had a curation feature called Book Creator for 2 years. I don&apos;t think it has been getting as much use as I would expect but now with the ePub export, I think it has the…</description><pubDate>Sat, 22 Sep 2012 00:00:00 GMT</pubDate><category>Accessibility</category><category>eguides</category><category>OpEd</category><category>Policy and theory</category><category>Reviews</category><category>E-book</category><category>EPUB</category><category>MediaWiki</category><category>open source software</category><category>PDF</category><category>textbook</category><category>Wiki</category><category>Wikipedia</category><category>Wikis</category></item><item><title>The day  2012-09-21 on @techczech</title><link>https://techczech.net/2012/09/21/the-day-2012-09-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/21/the-day-2012-09-21-on-techczech/</guid><description>Vote for who is the greatest Jazz Bass Player on https://t.co/uIpPlkti # jazz # Just playing the great Victor Wooten on the radio http://t.co/8iSDnmtR . Tune in on http://t.co/vrRrXZgj # jazz #radio # I&amp;#039;m broadcasting &quot;Bohemian After Dark&quot; live on @ Ustream . Come watch and chat! - http://t.co/fHSKdrtO (10:08pm) # Bohemian After Dark starting…</description><pubDate>Fri, 21 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-20 on @techczech</title><link>https://techczech.net/2012/09/20/the-day-2012-09-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/20/the-day-2012-09-20-on-techczech/</guid><description>Accessibility and the Digital Humanities http://t.co/8QGGBNkh # accessibility #a11y # Can we really want to argue that a teacher strike has real, long-lasting effect on the students&amp;#039; future? http://t.co/cnLqxYfF # edchat # How can you trust an &quot;academic&quot; who says an author is &quot;ultimate source&quot; of knowledge about his work!? http://t.co/7usmX2O4 # highered # Why…</description><pubDate>Thu, 20 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-09-20</title><link>https://techczech.net/2012/09/20/twitter-weekly-updates-for-2012-09-20/</link><guid isPermaLink="true">https://techczech.net/2012/09/20/twitter-weekly-updates-for-2012-09-20/</guid><description>Accessibility and the Digital Humanities http://t.co/8QGGBNkh # accessibility #a11y # Can we really want to argue that a teacher strike has real, long-lasting effect on the students&amp;#039; future? http://t.co/cnLqxYfF # edchat # How can you trust an &quot;academic&quot; who says an author is &quot;ultimate source&quot; of knowledge about his work!? http://t.co/7usmX2O4 # highered # Why…</description><pubDate>Thu, 20 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-19 on @techczech</title><link>https://techczech.net/2012/09/19/the-day-2012-09-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/19/the-day-2012-09-19-on-techczech/</guid><description>Science’s First Mistake out in Paperback! | Reality revisited. http://t.co/SKxhZUIk # science Highly recommended # Should Simple Language Be Mandatory for Web Accessibility? http://t.co/kpl6XpTT &amp;lt; Bad idea for # a11y - ignorant of basic # linguistic facts # Powered by Twitter Tools</description><pubDate>Wed, 19 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-18 on @techczech</title><link>https://techczech.net/2012/09/18/the-day-2012-09-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/18/the-day-2012-09-18-on-techczech/</guid><description>BenchPrep Switches To Subscription Model As It Moves Toward Education-as-a-Service http://t.co/pga7Mkmz # Free # webinar Understanding overlap in specific learning difficulties - what do we know? http://t.co/NrANodWs # dyslexia #ukedchat # New e-book export feature enabled on Wikipedia http://t.co/4RcvKviV &amp;lt; Important news for # OER - new curation possibilities for # opencontent # # EdStartup…</description><pubDate>Tue, 18 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-17 on @techczech</title><link>https://techczech.net/2012/09/17/the-day-2012-09-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/17/the-day-2012-09-17-on-techczech/</guid><description>Open source should come first when choosing new enterprise IT, report says http://t.co/jl5WzSiL # edtech #edstartup # ukedtech # Powered by Twitter Tools</description><pubDate>Mon, 17 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-16 on @techczech</title><link>https://techczech.net/2012/09/16/the-day-2012-09-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/16/the-day-2012-09-16-on-techczech/</guid><description>It’s Never Mattered That America’s Schools ‘Lag’ Behind Other Countries http://t.co/J76EqYuf # edstartup #highered &amp;lt; Stop # edreform alarmism # Teachers Use Twitter As Their Preferred CPD Tool | @ scoopit http://t.co/crMwl4iH # The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ langology @Language_Today @ stevehargadon # @ andrewstaroscik Sure, but this…</description><pubDate>Sun, 16 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-15 on @techczech</title><link>https://techczech.net/2012/09/15/the-day-2012-09-15-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/09/15/the-day-2012-09-15-on-techczech-2/</guid><description>New on Researchity: The Great MOOC Slander? Realities and Narratives of Education and Learning http://t.co/HKnqi5qK # Never trust experts when they say, you have to understand X before you understand Y. Mostly it&amp;#039;s just disciplinary story telling. # edchat # Interesting how a video on interactive teaching has comments disabled on YouTube. Underscores its triviality…</description><pubDate>Sat, 15 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-15 on @techczech</title><link>https://techczech.net/2012/09/15/the-day-2012-09-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/15/the-day-2012-09-15-on-techczech/</guid><description>New on Researchity: The Great MOOC Slander? Realities and Narratives of Education and Learning http://t.co/HKnqi5qK # Never trust experts when they say, you have to understand X before you understand Y. Mostly it&amp;#039;s just disciplinary story telling. # edchat # Interesting how a video on interactive teaching has comments disabled on YouTube. Underscores its triviality…</description><pubDate>Sat, 15 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-14 on @techczech</title><link>https://techczech.net/2012/09/14/the-day-2012-09-14-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/09/14/the-day-2012-09-14-on-techczech-2/</guid><description>Why didn’t anyone tell me about this? What every learning technologist should know about accessible documents # ALTC2012 http://t.co/J1AyXRZk # For all who wish to continue the conversations from # altc2012 join our free Collabor8 4 Change Unconference # c84c http://t.co/ODXThiQB # Powered by Twitter Tools</description><pubDate>Fri, 14 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-14 on @techczech</title><link>https://techczech.net/2012/09/14/the-day-2012-09-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/14/the-day-2012-09-14-on-techczech/</guid><description>Why didn’t anyone tell me about this? What every learning technologist should know about accessible documents # ALTC2012 http://t.co/J1AyXRZk # For all who wish to continue the conversations from # altc2012 join our free Collabor8 4 Change Unconference # c84c http://t.co/ODXThiQB # Powered by Twitter Tools</description><pubDate>Fri, 14 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>&quot;Why didn&apos;t anyone tell me about this?&quot;: What every learning technologist should know about accessible documents #ALTC2012</title><link>https://techczech.net/2012/09/14/why-didnt-anyone-tell-me-about-this-what-every-learning-technologist-should-know-about-accessible-documents-altc2012/</link><guid isPermaLink="true">https://techczech.net/2012/09/14/why-didnt-anyone-tell-me-about-this-what-every-learning-technologist-should-know-about-accessible-documents-altc2012/</guid><description>I gave this presentation at the ALT Conference 2012 in Manchester . Presentation Download presentation from Slideshare . Abstract The title of this presentation is a composite of the many responses we receive when we deliver training on accessible documents to teachers as part of the Load2Learn project, an online collection of downloadable…</description><pubDate>Fri, 14 Sep 2012 00:00:00 GMT</pubDate><category>Accessibility</category><category>OpEd</category><category>Tips and Guides</category><category>Accessibility</category><category>Accessible computing</category><category>Computer accessibility</category><category>Educational technology</category><category>learning technology support</category><category>online collection</category></item><item><title>Twitter Weekly Updates for 2012-09-13</title><link>https://techczech.net/2012/09/13/twitter-weekly-updates-for-2012-09-13/</link><guid isPermaLink="true">https://techczech.net/2012/09/13/twitter-weekly-updates-for-2012-09-13/</guid><description>Remembering discussions from # ALTC2012 How would it work for an institution to replace # Moodle or # Blackboard with # Wordpress #ukedtech # Hope some # altc2012 participants will join our MOOC on Inclusive Technologies for Reading http://t.co/RDZuRYlH ... # Hope the &quot;open&quot; and &quot;learner centred&quot; themes of # altc2013 will lead to more…</description><pubDate>Thu, 13 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-10 on @techczech</title><link>https://techczech.net/2012/09/10/the-day-2012-09-10-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/09/10/the-day-2012-09-10-on-techczech-2/</guid><description>SoundGecko Now Turns Your Favorite RSS Feed Into An MP3 Podcast http://t.co/DngPNdLj # edtech #accessibility # digiskills #itr12 # Powered by Twitter Tools</description><pubDate>Mon, 10 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-10 on @techczech</title><link>https://techczech.net/2012/09/10/the-day-2012-09-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/10/the-day-2012-09-10-on-techczech/</guid><description>SoundGecko Now Turns Your Favorite RSS Feed Into An MP3 Podcast http://t.co/DngPNdLj # edtech #accessibility # digiskills #itr12 # Powered by Twitter Tools</description><pubDate>Mon, 10 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-09 on @techczech</title><link>https://techczech.net/2012/09/09/the-day-2012-09-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/09/the-day-2012-09-09-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ educationgovuk # Mostly personalization sounds like putting a gun to someone&amp;#039;s head &amp; saying would you rather eat bugs or worms? # edchat #edstartup # edpolicy # Yes @ ddmeyer &quot;Good personalization is expensive&quot; http://t.co/64c0NiZ2 # edstartup &amp;lt;But we need to personalize ends…</description><pubDate>Sun, 09 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-08 on @techczech</title><link>https://techczech.net/2012/09/08/the-day-2012-09-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/08/the-day-2012-09-08-on-techczech/</guid><description>&quot;You know a program is great whenever there are literally shortcuts for everything.&quot; http://t.co/e0U8t7HP # edtech #itr12 # Powered by Twitter Tools</description><pubDate>Sat, 08 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-07 on @techczech</title><link>https://techczech.net/2012/09/07/the-day-2012-09-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/07/the-day-2012-09-07-on-techczech/</guid><description># Wikipedia was right - authors are not a &quot;credible source&quot; on their work - they are a source, though http://t.co/apZTzzrs # OER as Voyager, Bezos on Winning, and Lessons for Open Education http://t.co/83zC1P18 Some interesting metaphors for # edstartup #oer # Powered by Twitter Tools</description><pubDate>Fri, 07 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-09-06</title><link>https://techczech.net/2012/09/06/twitter-weekly-updates-for-2012-09-06/</link><guid isPermaLink="true">https://techczech.net/2012/09/06/twitter-weekly-updates-for-2012-09-06/</guid><description>I liked a @ YouTube video http://t.co/Rx2JXqEt Araceli - From Nataly Dawn&amp;#039;s Upcoming Album, &quot;How I Knew Her&quot; # Syndication seems to be the forgotten innovation RT @ jimgroom : &quot;#EdStartUp Intro: Innovating Around Syndication&quot; http://t.co/OgydoF2B # Is education really for the public good or do we just talk about it that way? Is there…</description><pubDate>Thu, 06 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-04 on @techczech</title><link>https://techczech.net/2012/09/04/the-day-2012-09-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/04/the-day-2012-09-04-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/Rx2JXqEt Araceli - From Nataly Dawn&amp;#039;s Upcoming Album, &quot;How I Knew Her&quot; # Powered by Twitter Tools</description><pubDate>Tue, 04 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-03 on @techczech</title><link>https://techczech.net/2012/09/03/the-day-2012-09-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/03/the-day-2012-09-03-on-techczech/</guid><description>Syndication seems to be the forgotten innovation RT @ jimgroom : &quot;#EdStartUp Intro: Innovating Around Syndication&quot; http://t.co/OgydoF2B # Is education really for the public good or do we just talk about it that way? Is there just one good? # edchat #edstartup # RT @ Tomstaunton84 : Why would we want to be innovative? Some…</description><pubDate>Mon, 03 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-02 on @techczech</title><link>https://techczech.net/2012/09/02/the-day-2012-09-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/02/the-day-2012-09-02-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ lessig @Languagebandit # Powered by Twitter Tools</description><pubDate>Sun, 02 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-09-01 on @techczech</title><link>https://techczech.net/2012/09/01/the-day-2012-09-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/09/01/the-day-2012-09-01-on-techczech/</guid><description>RT @ metaphorhacker : One person&amp;#039;s reality is another person&amp;#039;s metaphor. &amp;lt; How to think about entrepreneurs 4 # edstartup &amp; schools 4 # moocmooc # Interesting overview of collaborative creation of learning materials: http://t.co/WSiP9JEw # edstartup #reading # I saw a street performer gather a crowd for a show hoping some would pay at…</description><pubDate>Sat, 01 Sep 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-31 on @techczech</title><link>https://techczech.net/2012/08/31/the-day-2012-08-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/31/the-day-2012-08-31-on-techczech/</guid><description>@ andrewstaroscik I think the important point was go out there and present your idea to as many people as you can. # edstartup in reply to andrewstaroscik # 6 Ways To Win Every Startup Competition You Enter http://t.co/loqFITTy # edstartup &amp;lt; Interesting tips despite link bait title # &quot;The goal of a startup is…</description><pubDate>Fri, 31 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-30 on @techczech</title><link>https://techczech.net/2012/08/30/the-day-2012-08-30-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/08/30/the-day-2012-08-30-on-techczech-2/</guid><description>Sunset over Portobello # sky #clouds # sunset #summer @ Portobello Beach (joppa end) http://t.co/oSqEvOr0 # Cannabis studies seem to have a negative impact on @ BBC interviewers&amp;#039; IQ, ability to ask sensible questions http://t.co/ApyRdJtx # science # Like the Zombie-Based Learning idea mentioned in @ DtHunter # edstartup intro: http://t.co/G1R9UQ3C &amp;lt;Turn kids onto zombies…</description><pubDate>Thu, 30 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-30 on @techczech</title><link>https://techczech.net/2012/08/30/the-day-2012-08-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/30/the-day-2012-08-30-on-techczech/</guid><description>Sunset over Portobello # sky #clouds # sunset #summer @ Portobello Beach (joppa end) http://t.co/oSqEvOr0 # Cannabis studies seem to have a negative impact on @ BBC interviewers&amp;#039; IQ, ability to ask sensible questions http://t.co/ApyRdJtx # science # Like the Zombie-Based Learning idea mentioned in @ DtHunter # edstartup intro: http://t.co/G1R9UQ3C &amp;lt;Turn kids onto zombies…</description><pubDate>Thu, 30 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-08-30</title><link>https://techczech.net/2012/08/30/twitter-weekly-updates-for-2012-08-30/</link><guid isPermaLink="true">https://techczech.net/2012/08/30/twitter-weekly-updates-for-2012-08-30/</guid><description>Sunset over Portobello # sky #clouds # sunset #summer @ Portobello Beach (joppa end) http://t.co/oSqEvOr0 # Cannabis studies seem to have a negative impact on @ BBC interviewers&amp;#039; IQ, ability to ask sensible questions http://t.co/ApyRdJtx # science # Like the Zombie-Based Learning idea mentioned in @ DtHunter # edstartup intro: http://t.co/G1R9UQ3C &amp;lt;Turn kids onto zombies…</description><pubDate>Thu, 30 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-29 on @techczech</title><link>https://techczech.net/2012/08/29/the-day-2012-08-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/29/the-day-2012-08-29-on-techczech/</guid><description>@ jeffreyhill Here&amp;#039;s my take on the silo problem in a similar context to # edstartup http://t.co/89yY1n7q in reply to jeffreyhill # Hearing from @ opencontent that there&amp;#039;ll be a # badge for # edstartup made me more motivated to complete. Let&amp;#039;s see if it sticks. # @ audreywatters Great. As an experiment, I set…</description><pubDate>Wed, 29 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-28 on @techczech</title><link>https://techczech.net/2012/08/28/the-day-2012-08-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/28/the-day-2012-08-28-on-techczech/</guid><description>After the madness that was # moocmooc I&amp;#039;m finding the # edstartup a much more sedate experience. No sure I can take all this free time. # Really enjoyed this talk by @ rebeccawatson of @ skepchicks on Women’s Intuition and Other Fairy Tales http://t.co/pOdRtXFj # feminism # Oldie by goodie: GitHub for Education, Revisited…</description><pubDate>Tue, 28 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-27 on @techczech</title><link>https://techczech.net/2012/08/27/the-day-2012-08-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/27/the-day-2012-08-27-on-techczech/</guid><description>Can we start even # edstartup with the assumption that # entrepreneurship is the right metaphor for # innovation openness and progress? # Thank so @ SustainableInc for being my 1000th follower http://t.co/0fUjI5QA # Already learned sth new on # edstartup @ SlideSpeech : interesting tool for sharing slides-needs better keyboard shortcuts for # accessibility…</description><pubDate>Mon, 27 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-26 on @techczech</title><link>https://techczech.net/2012/08/26/the-day-2012-08-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/26/the-day-2012-08-26-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ guardianstyle # We keep talking about # mooc undergrad or CPD courses. But maybe we need to start with MOOC PhDs: http://t.co/LcoWRMcQ # moocmooc #highered # Read this before you complain about MOOC pedagogy: The closing of American academia http://t.co/YZdtwzfE # moocmooc #highered…</description><pubDate>Sun, 26 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-25 on @techczech</title><link>https://techczech.net/2012/08/25/the-day-2012-08-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/25/the-day-2012-08-25-on-techczech/</guid><description>Dewey&amp;#039;s My Pedagogic Creed needs an # OpenEducation update as a remixable # OER for everyone to make their own http://t.co/PMPC0GqB # edchat # Success in a # MOOC by @ davecormier also describes general Digital Learning Skills http://t.co/OajsCaj1 # moocmooc #edchat # Dewey: &quot;we violate the child&amp;#039;s nature...by introducing the child too abruptly to…</description><pubDate>Sat, 25 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-24 on @techczech</title><link>https://techczech.net/2012/08/24/the-day-2012-08-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/24/the-day-2012-08-24-on-techczech/</guid><description>If you&amp;#039;d like to see me in the studio, I&amp;#039;m broadcasting a live Google Hangout on air here: http://t.co/SznYJpsp # About to start my first late night # jazz show on Reading4U. Tune in from 10pm BST until midnight on http://t.co/YfN392Mf . # Key: &quot;community is not the path to understanding or accessing the curriculum...the…</description><pubDate>Fri, 24 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-23 on @techczech</title><link>https://techczech.net/2012/08/23/the-day-2012-08-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/23/the-day-2012-08-23-on-techczech/</guid><description>I just bought: &amp;#039;A Hard Day&amp;#039;s Night&amp;#039; by Ella Fitzgerald for https://t.co/GDnYwbMX http://t.co/IcRSzAoM # What&amp;#039;s the most appropriate # midnight themed track to close out a late night # jazz radio show with? Votes now open! http://t.co/8iSDnmtR # @ urban_teacher I remember hating that sort of thing as a student. Teenagers in particular are attuned…</description><pubDate>Thu, 23 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-08-23</title><link>https://techczech.net/2012/08/23/twitter-weekly-updates-for-2012-08-23-2/</link><guid isPermaLink="true">https://techczech.net/2012/08/23/twitter-weekly-updates-for-2012-08-23-2/</guid><description>I just bought: &amp;#039;A Hard Day&amp;#039;s Night&amp;#039; by Ella Fitzgerald for https://t.co/GDnYwbMX http://t.co/IcRSzAoM # What&amp;#039;s the most appropriate # midnight themed track to close out a late night # jazz radio show with? Votes now open! http://t.co/8iSDnmtR # @ urban_teacher I remember hating that sort of thing as a student. Teenagers in particular are attuned…</description><pubDate>Thu, 23 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-08-23</title><link>https://techczech.net/2012/08/23/twitter-weekly-updates-for-2012-08-23/</link><guid isPermaLink="true">https://techczech.net/2012/08/23/twitter-weekly-updates-for-2012-08-23/</guid><description>I just bought: &amp;#039;A Hard Day&amp;#039;s Night&amp;#039; by Ella Fitzgerald for https://t.co/GDnYwbMX http://t.co/IcRSzAoM # What&amp;#039;s the most appropriate # midnight themed track to close out a late night # jazz radio show with? Votes now open! http://t.co/8iSDnmtR # @ urban_teacher I remember hating that sort of thing as a student. Teenagers in particular are attuned…</description><pubDate>Thu, 23 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>What&apos;s good and what&apos;s missing in GoToWebinar and alternative solutions for delivering live online lectures</title><link>https://techczech.net/2012/08/22/gotowebinar-and-alternative-solutions-fo-delivering-online-lectures/</link><guid isPermaLink="true">https://techczech.net/2012/08/22/gotowebinar-and-alternative-solutions-fo-delivering-online-lectures/</guid><description>Inifinte webinar (Photo credit: RubyJi) I&apos;ve been using GoToMeeting (GTM) and GoToWebinar (GTW) for three years now, so I thought, it&apos;s time to share some experiences. Citrix has been very slow to innovate so I have been looking for alternatives but so far have not found the perfect one to justify…</description><pubDate>Wed, 22 Aug 2012 00:00:00 GMT</pubDate><category>Mobile</category><category>OpEd</category><category>Reviews</category><category>Using ICT</category><category>Adobe</category><category>Blackboard system</category><category>Citrix</category><category>Collaboration</category><category>e-learning</category><category>GoToMeeting</category><category>Remote desktop</category><category>Telecommuting</category><category>Teleconferencing</category><category>video conferencing</category><category>Web conferencing</category></item><item><title>The day  2012-08-22 on @techczech</title><link>https://techczech.net/2012/08/22/the-day-2012-08-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/22/the-day-2012-08-22-on-techczech/</guid><description>@ atsc Agree. Also, pretends all the cost of a MOOC is in prerec video. Doc not by Siemens, though. Just shared by him. in reply to atsc # @ gsiemens Disagree. http://t.co/MpsYDY18 is a rather unimaginative critique substituting personal failures and peeves for analysis # moocmooc in reply to gsiemens # Not sure I…</description><pubDate>Wed, 22 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-21 on @techczech</title><link>https://techczech.net/2012/08/21/the-day-2012-08-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/21/the-day-2012-08-21-on-techczech/</guid><description>Critical Commons is a perfect example of how everybody benefits from openness in the cultural commonwealth http://t.co/uJFeeRHw # edchat #oer # &quot;we have to take a responsibility to educate people about # plagiarism quot; http://t.co/4gw2iQlU &amp;lt; 0 reflection=condescension # highered #edchat # &quot;Thomas Kuhn: the man who changed the way the world looked at #…</description><pubDate>Tue, 21 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-20 on @techczech</title><link>https://techczech.net/2012/08/20/the-day-2012-08-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/20/the-day-2012-08-20-on-techczech/</guid><description>Older post on Putting lectures in their place with cautious optimism http://t.co/ee3b4jyx # moocmooc # Motto for # edtech &quot;You can’t motivate students with technology because technology alone isn’t motivating.&quot; http://t.co/x0n8Mk94 # edchat # More courses should be able to say &quot;We had no learning objectives. Those were invented along the way&quot; http://t.co/CpSRnWqz # moocmooc…</description><pubDate>Mon, 20 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-19 on @techczech</title><link>https://techczech.net/2012/08/19/the-day-2012-08-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/19/the-day-2012-08-19-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU # The 7 Habits of Highly Effective Mediocre Entrepreneurs http://t.co/WoahEEsB &amp;lt; The perfect antidote to the excellence racket # edchat # Apt # metaphor # highered decline as inevitable as fall of Soviet Union or Decline of General Motors http://t.co/brRaOFW5 # edchat #moocmooc # The real &quot;learning paradox&quot; why…</description><pubDate>Sun, 19 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-18 on @techczech</title><link>https://techczech.net/2012/08/18/the-day-2012-08-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/18/the-day-2012-08-18-on-techczech/</guid><description>At what point can I say I’ve “learned” a language? | Ars Technica http://t.co/wnEN3ntI # engchat #edtech # @ andrewstaroscik not decided all the functionality yet, suggestions welcome, maybe we should start a Google Doc in reply to andrewstaroscik # @ andrewstaroscik I am about to find out - we&amp;#039;re building our # mooc hub…</description><pubDate>Sat, 18 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-17 on @techczech</title><link>https://techczech.net/2012/08/17/the-day-2012-08-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/17/the-day-2012-08-17-on-techczech/</guid><description>@ martinlugton Thanks. Feel free to weigh in on the comments. in reply to martinlugton # @ HybridPed It also depends on whether the MOOCification gets in the way of navigating other institutional requirements. # digped in reply to HybridPed # .@trentmkays Maybe we need a more fundamental rethink of hybridity http://t.co/3tpmDLRg # digped #moocmooc…</description><pubDate>Fri, 17 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-16 on @techczech</title><link>https://techczech.net/2012/08/16/the-day-2012-08-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/16/the-day-2012-08-16-on-techczech/</guid><description>@ lonniwilson @RosemarySewart @ andrewstaroscik Cowriting a # moocmooc booklet? Great idea! Try the free BookType host http://t.co/9vwKbfi7 in reply to lonniwilson # @ andrewstaroscik BookType can embed any HTML but it can also create PDFs, ePub &amp; print. Great for collaborative book distribution. # moocmooc in reply to andrewstaroscik # @ lonniwilson Would use…</description><pubDate>Thu, 16 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-08-16</title><link>https://techczech.net/2012/08/16/twitter-weekly-updates-for-2012-08-16/</link><guid isPermaLink="true">https://techczech.net/2012/08/16/twitter-weekly-updates-for-2012-08-16/</guid><description>@ lonniwilson @RosemarySewart @ andrewstaroscik Cowriting a # moocmooc booklet? Great idea! Try the free BookType host http://t.co/9vwKbfi7 in reply to lonniwilson # @ andrewstaroscik BookType can embed any HTML but it can also create PDFs, ePub &amp; print. Great for collaborative book distribution. # moocmooc in reply to andrewstaroscik # @ lonniwilson Would use…</description><pubDate>Thu, 16 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-15 on @techczech</title><link>https://techczech.net/2012/08/15/the-day-2012-08-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/15/the-day-2012-08-15-on-techczech/</guid><description>Time to call it a night. Thanks all on the # moocmooc for a great hour before midnight. # @ rswharton You&amp;#039;re most likely right. I was just looking for a twist in perspective to see what falls out. in reply to rswharton # @ RosemarySewart @qui_oui I&amp;#039;ve done great learning while lurking. We&amp;#039;re back…</description><pubDate>Wed, 15 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-14 on @techczech</title><link>https://techczech.net/2012/08/14/the-day-2012-08-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/14/the-day-2012-08-14-on-techczech/</guid><description>RT @ grinnpidgeon : RT @ audreywatters : 6.003z: A Learner-Created MOOC Spins Out of MITx http://t.co/ox1bQaJG # moocmooc # What is necessary and what is contingent in MOOC design http://t.co/gWWTbS6b suggested on @ scoopit to http://t.co/f0cCJnoN # moocmooc # Thanks @ mark_mcguire . What technology do you use it to make it happen @…</description><pubDate>Tue, 14 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-13 on @techczech</title><link>https://techczech.net/2012/08/13/the-day-2012-08-13-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/08/13/the-day-2012-08-13-on-techczech-2/</guid><description>@ Downes Thanks. Will have to configure Perl on my server first, but and will test ASAP. in reply to Downes # Started an alternative brainstorm in # MOOCMOOC collaborative document http://t.co/xz7U3GyK Come, wade in! # We should not forget: &quot;The Personal Learning Network is like an online course--but without the course!&quot; http://t.co/GlgAWunA # moocmooc…</description><pubDate>Mon, 13 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-13 on @techczech</title><link>https://techczech.net/2012/08/13/the-day-2012-08-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/13/the-day-2012-08-13-on-techczech/</guid><description>@ Downes Thanks. Will have to configure Perl on my server first, but and will test ASAP. in reply to Downes # Started an alternative brainstorm in # MOOCMOOC collaborative document http://t.co/xz7U3GyK Come, wade in! # We should not forget: &quot;The Personal Learning Network is like an online course--but without the course!&quot; http://t.co/GlgAWunA # moocmooc…</description><pubDate>Mon, 13 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-12 on @techczech</title><link>https://techczech.net/2012/08/12/the-day-2012-08-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/12/the-day-2012-08-12-on-techczech/</guid><description>I tolerance of ambiguity and uncertainty! &amp;gt; RT @ readywriting : @ slamteacher My big &quot;lesson&quot; I try to teach - adaptability. # moocmooc # @ slamteacher @Readywriting I read fanfiction as much as any fiction. Some real gems out there. We should do a # MOOC on it! # moocmooc in reply to slamteacher…</description><pubDate>Sun, 12 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-11 on @techczech</title><link>https://techczech.net/2012/08/11/the-day-2012-08-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/11/the-day-2012-08-11-on-techczech/</guid><description># Joomla 2.5 vs # Drupal 7 | netstudio http://t.co/IglDfvcM # Is it OK to replace optimized code with readable code? | Ars Technica http://t.co/JM2pLFJP # edtech &amp;lt; Applies to more than programming # @ lawrieh Hi, saw your tweet on my old profile. Nice to hear from you again. All my tweeting is happening…</description><pubDate>Sat, 11 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-10 on @techczech</title><link>https://techczech.net/2012/08/10/the-day-2012-08-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/10/the-day-2012-08-10-on-techczech/</guid><description>“Uncertainty Is an Uncomfortable Position. But Certainty Is an Absurd One.” [Quotables] http://t.co/qP3qE6OQ # edchat # @ jakubsuchy Here&amp;#039;s hoping. I guess it makes sense with customized services but I almost never write for quotes assuming I can&amp;#039;t afford it. in reply to jakubsuchy # Is it me, or do you feel that, if a…</description><pubDate>Fri, 10 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-09 on @techczech</title><link>https://techczech.net/2012/08/09/the-day-2012-08-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/09/the-day-2012-08-09-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/yOrFcGxt Some Idiot/How Sports Bras Work # 7 web accessibility myths – Humanising Technology Blog http://t.co/0Ll7uyDs # accessibility #a11y # Powered by Twitter Tools</description><pubDate>Thu, 09 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-08-09</title><link>https://techczech.net/2012/08/09/twitter-weekly-updates-for-2012-08-09/</link><guid isPermaLink="true">https://techczech.net/2012/08/09/twitter-weekly-updates-for-2012-08-09/</guid><description>I liked a @ YouTube video http://t.co/yOrFcGxt Some Idiot/How Sports Bras Work # 7 web accessibility myths – Humanising Technology Blog http://t.co/0Ll7uyDs # accessibility #a11y # Proposing a new term for # VLE / # LMS CRAMS (Course Repository and Attendance Management System) - seems to reflect reality better # edtech # Museum of Endangered…</description><pubDate>Thu, 09 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-07 on @techczech</title><link>https://techczech.net/2012/08/07/the-day-2012-08-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/07/the-day-2012-08-07-on-techczech/</guid><description>Proposing a new term for # VLE / # LMS CRAMS (Course Repository and Attendance Management System) - seems to reflect reality better # edtech # Powered by Twitter Tools</description><pubDate>Tue, 07 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-06 on @techczech</title><link>https://techczech.net/2012/08/06/the-day-2012-08-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/06/the-day-2012-08-06-on-techczech/</guid><description>Museum of Endangered Sounds http://t.co/suA6Y02v # edtech #history &amp;lt; What a wonderful site for learning about the audio history of tech. # &quot;Stop encouraging automaticity, cultivate mindfulness instead&quot; http://t.co/zBXqke8x &amp;lt;Interesting counterpoint to # edtheory wisdom # ukedchat # Am I missing something or is this page to purchase # Jaws not actually fully # screenreader…</description><pubDate>Mon, 06 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-05 on @techczech</title><link>https://techczech.net/2012/08/05/the-day-2012-08-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/05/the-day-2012-08-05-on-techczech/</guid><description>So, August is Connected Educator Month http://t.co/jfwdLQ9v # ukedchat #ce12 &amp;lt; Here&amp;#039;s hoping soon every month is a connected educator month! # The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ techczech # &quot;as many security misdemeanours as you can fit in 140 chars&quot; committed in @ uktesco tweet http://t.co/eqzmkd4o # edtech…</description><pubDate>Sun, 05 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-04 on @techczech</title><link>https://techczech.net/2012/08/04/the-day-2012-08-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/04/the-day-2012-08-04-on-techczech/</guid><description>Domain of One’s Own as Educational Pilot of Federated Web http://t.co/s0JZSAVs # edtech #identity # Powered by Twitter Tools</description><pubDate>Sat, 04 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-03 on @techczech</title><link>https://techczech.net/2012/08/03/the-day-2012-08-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/03/the-day-2012-08-03-on-techczech/</guid><description>Confucianism is not an obstacle to democracy http://t.co/355BAfQB # china #philosophy # politics # Thank @ languagelog for doing legwork on # textspeak hype — this is how # peerreview should be done! http://t.co/tL9luyjG # engchat # Sorry, peer review is not a mark of quality, just a mark of passability. http://t.co/Z3yK2ufG # science #…</description><pubDate>Fri, 03 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-02 on @techczech</title><link>https://techczech.net/2012/08/02/the-day-2012-08-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/02/the-day-2012-08-02-on-techczech/</guid><description>&quot;Love Truth? Wait.&quot; http://t.co/6DJ9iQ5g &amp;lt; Agree! Use Twitter for quick thoughts, newspapers for thick description, which takes time. # @ scottevest Looking forward to it. Sure could use some of those cargo pants...eh, trousers... in reply to scottevest # Powered by Twitter Tools</description><pubDate>Thu, 02 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-08-02</title><link>https://techczech.net/2012/08/02/twitter-weekly-updates-for-2012-08-02/</link><guid isPermaLink="true">https://techczech.net/2012/08/02/twitter-weekly-updates-for-2012-08-02/</guid><description>&quot;Love Truth? Wait.&quot; http://t.co/6DJ9iQ5g &amp;lt; Agree! Use Twitter for quick thoughts, newspapers for thick description, which takes time. # @ scottevest Looking forward to it. Sure could use some of those cargo pants...eh, trousers... in reply to scottevest # Like the concept behind # Scripto the community transcription tool http://t.co/lW2pSP2w Can see uses beyond #…</description><pubDate>Thu, 02 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-08-01 on @techczech</title><link>https://techczech.net/2012/08/01/the-day-2012-08-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/08/01/the-day-2012-08-01-on-techczech/</guid><description>Like the concept behind # Scripto the community transcription tool http://t.co/lW2pSP2w Can see uses beyond # digitalhumanities #edtech # Hi @ leroyh Looking forward to having you on # ITR12 in reply to leroyh # Excited to see @ SCOTTEVEST Travel Vests on UK Amazon http://t.co/zLNQVM7v Hope more lines follow soon. Would have saved me…</description><pubDate>Wed, 01 Aug 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-31 on @techczech</title><link>https://techczech.net/2012/07/31/the-day-2012-07-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/31/the-day-2012-07-31-on-techczech/</guid><description>Courses for job seekers not leading them into employment | UFI charitable trust http://t.co/3keXaGWk # ukedchat # 25 Ways Teachers Can Integrate Social Media Into Education via @ marmacles # edchat http://t.co/726b9DYL # What about massive open online scholarship? via @ marmacles # mooc #edchat @ scoopit http://t.co/rQnTyfcB # The 33 Digital Skills Every 21st…</description><pubDate>Tue, 31 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-30 on @techczech</title><link>https://techczech.net/2012/07/30/the-day-2012-07-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/30/the-day-2012-07-30-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/WUfZAbH3 The Universe is Weird: A Song # The Drupal/Wordpress choice: Guide for individuals, small organizations &amp; the Internet http://t.co/2zZiaBkC # Drupal #Wordpress # cms #edtech # @ Thunderfairy Think those are cute? Check out this Emo Stallion... http://t.co/UxvkXzfo in reply to Thunderfairy # It&amp;#039;s a horse eat horse…</description><pubDate>Mon, 30 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-29 on @techczech</title><link>https://techczech.net/2012/07/29/the-day-2012-07-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/29/the-day-2012-07-29-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ wordnik @Dries @ jamesmichie # I liked a @ YouTube video http://t.co/DQqRrcDh THE SCRIPT - WE CRY # I liked a @ YouTube video http://t.co/KKikookA ЛЕОНИД БЕССЕРЕБРЕННИКОВ # New on Researchity: Debating the MOOC Backlash: Notes from A Primitive Screwhead http://t.co/pWNh1fvG # mp3DirectCut…</description><pubDate>Sun, 29 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The Drupal/Wordpress choice: A guide for individuals, small organizations and the Internet</title><link>https://techczech.net/2012/07/28/drupal-wordpress-choice/</link><guid isPermaLink="true">https://techczech.net/2012/07/28/drupal-wordpress-choice/</guid><description>Personalizando WordPress 1.5 (Photo credit: juanpol) Note: This is a much longer post than I intended. Therefore, I could not face rereading all of it and fixing it for clarity and grammar. Let me know if something is too opaque. Also, not everything that could be linked is linked. Let your…</description><pubDate>Sat, 28 Jul 2012 00:00:00 GMT</pubDate><category>Drupal</category><category>OpEd</category><category>Reviews</category><category>Tips and Guides</category><category>Blog software</category><category>CiviCRM</category><category>desktop software tools</category><category>Drupal</category><category>e - commerce</category><category>Web development</category><category>Wordpress</category><category>WYSIWIG editor</category></item><item><title>The day  2012-07-28 on @techczech</title><link>https://techczech.net/2012/07/28/the-day-2012-07-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/28/the-day-2012-07-28-on-techczech/</guid><description>@ MooreAnswers Thought I&amp;#039;d put up a quick blog post on the # Wordpress #Drupal difference: http://t.co/JuNlZp8k . Got a bit out of hand! in reply to MooreAnswers # The # Drupal #Wordpress choice: A guide for individuals, small organizations and the Internet http://t.co/cgPBhPKr # edtech #cms # web # @ MooreAnswers If you&amp;#039;re a…</description><pubDate>Sat, 28 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-27 on @techczech</title><link>https://techczech.net/2012/07/27/the-day-2012-07-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/27/the-day-2012-07-27-on-techczech/</guid><description>UK High Court overturns conviction for Twitter joke | Ars Technica http://t.co/4Or0HLMa # sanityprevails # Come check out my # Instacanvas gallery...browse &amp; buy my Instagram artwork. http://t.co/2hgY1dVJ via @ instacnvs # Cowford upon Thames # river #Thames # cows #animals # nokidding #photooftheday http://t.co/CNloc73r # Powered by Twitter Tools</description><pubDate>Fri, 27 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-07-26</title><link>https://techczech.net/2012/07/26/twitter-weekly-updates-for-2012-07-26/</link><guid isPermaLink="true">https://techczech.net/2012/07/26/twitter-weekly-updates-for-2012-07-26/</guid><description>Google Gets Scientific, Adds A Voice-Enabled 34-Button Calculator To Desktop And Mobile Search http://t.co/KvHbyN5Z # edtech #mathed # What do you say? USB/memory stick/key or thumb drive? # edtech # Review of the Technology for Print Disabilities Training Day http://t.co/A4tnVVuY # dyslexia #accessibility # &quot;Talking heads don&amp;#039;t equal an educational paradigm shift&quot; @ CathyNDavidson http://t.co/mGe7MMTJ…</description><pubDate>Thu, 26 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-25 on @techczech</title><link>https://techczech.net/2012/07/25/the-day-2012-07-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/25/the-day-2012-07-25-on-techczech/</guid><description>Google Gets Scientific, Adds A Voice-Enabled 34-Button Calculator To Desktop And Mobile Search http://t.co/KvHbyN5Z # edtech #mathed # What do you say? USB/memory stick/key or thumb drive? # edtech # Review of the Technology for Print Disabilities Training Day http://t.co/A4tnVVuY # dyslexia #accessibility # &quot;Talking heads don&amp;#039;t equal an educational paradigm shift&quot; @ CathyNDavidson http://t.co/mGe7MMTJ…</description><pubDate>Wed, 25 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-24 on @techczech</title><link>https://techczech.net/2012/07/24/the-day-2012-07-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/24/the-day-2012-07-24-on-techczech/</guid><description># MOOCs Round-up http://t.co/Y9BNNMgP # edchat # How an Upstart Company Might Profit From Free Courses http://t.co/58BQrqde # edtech # Watermelon fire http://t.co/eM6K6jIu # How do “today’s students” write, really? http://t.co/uWBKfFbG &amp;lt; spelling errors and confusions are not a &amp;#039;sign of the times&amp;#039; # engchat # Make your own audio book using text to speech…</description><pubDate>Tue, 24 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Make your own audio book using text to speech - Save your eyes, time</title><link>https://techczech.net/2012/07/23/make-your-own-audio-book-using-text-to-speech-save-your-eyes-time/</link><guid isPermaLink="true">https://techczech.net/2012/07/23/make-your-own-audio-book-using-text-to-speech-save-your-eyes-time/</guid><description>Why text to speech Balabolka I&apos;m taking a MOOC (a Massive Open Online Course) on Coursera . It&apos;s a literature course on Fantasy and Science Fiction and I noticed on the forums some people were worried about the amount of reading. I&apos;m pretty busy these days so I decided I&apos;d…</description><pubDate>Mon, 23 Jul 2012 00:00:00 GMT</pubDate><category>Accessibility</category><category>OpEd</category><category>Using ICT</category><category>free tools</category><category>MP3</category><category>Online Course</category><category>online education</category><category>Speech synthesis</category><category>text-to-speech</category></item><item><title>The day  2012-07-23 on @techczech</title><link>https://techczech.net/2012/07/23/the-day-2012-07-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/23/the-day-2012-07-23-on-techczech/</guid><description>Word 2013 Consumer Preview Accessibility and Usability – First Impressions http://t.co/kXL51047 # edtech #accessibility # office # Summer School for Teachers http://t.co/byaHap6R &amp;lt; Some great tips for summer exploration # edtech #ukedchat # pln #cpd # Lies, Damn Lies, &amp; Statistics About Privacy Hysteria http://t.co/0x44qeQa # edtech &amp;lt; Users don&amp;#039;t even know they use a…</description><pubDate>Mon, 23 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-22 on @techczech</title><link>https://techczech.net/2012/07/22/the-day-2012-07-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/22/the-day-2012-07-22-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ StanCarey @educationgovuk # Listen Up You Primitive Screwheads http://t.co/oExCLkz8 &amp;lt; enjoyable rant about # open #education # edchat #mooc # highered #edpolicy # Very impressed with @ coursera &amp;#039;s course on # fantasy lit - esp. inspiring approach to peer assessment http://t.co/1T4cwOM3 #…</description><pubDate>Sun, 22 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-21 on @techczech</title><link>https://techczech.net/2012/07/21/the-day-2012-07-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/21/the-day-2012-07-21-on-techczech/</guid><description>Sorry @ grammarly while this is a # fun poster it makes English no more crazy than any other human language http://t.co/5INQOZpt # ellchat in reply to grammarly # Word 2013 Preview Accessibility and Usability--First Impressions http://t.co/5vpuO6CT # accessibility #word2013 # edtech #usability # microsoft # New on Researchity: Do researchers need Personal Learning Networks?…</description><pubDate>Sat, 21 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Word 2013 Preview Accessibility and Usability Review - First Impressions [Update 2 on uninstall]</title><link>https://techczech.net/2012/07/21/word-2013-preview-accessibility-and-usability-first-impressions/</link><guid isPermaLink="true">https://techczech.net/2012/07/21/word-2013-preview-accessibility-and-usability-first-impressions/</guid><description>In case of problems: How to uninstall Office 2013 Preview If you have trouble with the Office 2013 Consumer Preview and cannot uninstall it, you can use this tool from Microsoft [Link downloads file ]. You may have to associate your file extensions with the previous version of your Office application. This is what happened…</description><pubDate>Sat, 21 Jul 2012 00:00:00 GMT</pubDate><category>Accessibility</category><category>OpEd</category><category>Reviews</category><category>Tips and Guides</category><category>Accessibility</category><category>beta software</category><category>Control key</category><category>Microsoft</category><category>Microsoft Office</category><category>Microsoft PowerPoint</category><category>Microsoft Word</category><category>OpenDocument software</category><category>PDF</category><category>teacher</category><category>Word</category></item><item><title>The day  2012-07-20 on @techczech</title><link>https://techczech.net/2012/07/20/the-day-2012-07-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/20/the-day-2012-07-20-on-techczech/</guid><description># VLE vs. # PLE debate http://t.co/CTYCM5WV &amp;lt; Great summary of the argument for and against Virtual Learning Environments # edtech #edchat # I liked a @ YouTube video from @ Downes http://t.co/xhRqhOnE LMS vs PLEshort # Write In Peace With These Distraction-Free Editors http://t.co/bsyiebdP # edtech # Powered by Twitter Tools</description><pubDate>Fri, 20 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-19 on @techczech</title><link>https://techczech.net/2012/07/19/the-day-2012-07-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/19/the-day-2012-07-19-on-techczech/</guid><description>Just added a Twibbon to support Dyslexia Still Matters campaign by @ dyslexiaaction http://t.co/Ro4d9UpI # dyslexia #ukedchat # Support Dyslexia Still Matters , add a # twibbon now! - http://t.co/ffLv4Wzd - Create one here - http://t.co/0iJmz2sK # Shadow puppet in dance or supplication # photooftheday http://t.co/KeefcFHn # # clipica inspired me to find out you…</description><pubDate>Thu, 19 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-07-19</title><link>https://techczech.net/2012/07/19/twitter-weekly-updates-for-2012-07-19/</link><guid isPermaLink="true">https://techczech.net/2012/07/19/twitter-weekly-updates-for-2012-07-19/</guid><description>Just added a Twibbon to support Dyslexia Still Matters campaign by @ dyslexiaaction http://t.co/Ro4d9UpI # dyslexia #ukedchat # Support Dyslexia Still Matters , add a # twibbon now! - http://t.co/ffLv4Wzd - Create one here - http://t.co/0iJmz2sK # Shadow puppet in dance or supplication # photooftheday http://t.co/KeefcFHn # # clipica inspired me to find out you…</description><pubDate>Thu, 19 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-18 on @techczech</title><link>https://techczech.net/2012/07/18/the-day-2012-07-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/18/the-day-2012-07-18-on-techczech/</guid><description>I liked a @ YouTube video from @ geekandsundry http://t.co/3WsNj8OD Scary Smash featuring Dave Foley, Joss Whedon # Microsoft’s Office 2013 will make it possible to edit PDFs - I expect limited functionality http://t.co/gBCOagPZ # edtech # Do we need another e-learning silo? &quot;Coursemodo Debuts A Student Engagement Platform For # HigherEd quot; Backed http://t.co/sTSRFcha…</description><pubDate>Wed, 18 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-17 on @techczech</title><link>https://techczech.net/2012/07/17/the-day-2012-07-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/17/the-day-2012-07-17-on-techczech/</guid><description>I just signed up for Fantasy and SciFi: The Human Mind, Our Modern World # fantasysf - a free @ coursera online class https://t.co/INpoFJxU # RT @ Brendan_Mayer : Interesting trend for # highered marketers to watch: Facebook No Longer Cool to Teens or Millennials http://t.co/uPbi8gmm # Searching educational videos for words on @ MobentoHQ…</description><pubDate>Tue, 17 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-16 on @techczech</title><link>https://techczech.net/2012/07/16/the-day-2012-07-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/16/the-day-2012-07-16-on-techczech/</guid><description>@ RichardStacy Well put. Ferguson&amp;#039;s approach to evidence is very utilitarian - even book length: http://t.co/JOZY3nFz # reithlectures in reply to RichardStacy # @ tomstandage @vgul @ SpragueD Great list. Brain and the internet is another one - here&amp;#039;s my rant from last year http://t.co/giHidaJd in reply to tomstandage # How low will they sink…</description><pubDate>Mon, 16 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-15 on @techczech</title><link>https://techczech.net/2012/07/15/the-day-2012-07-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/15/the-day-2012-07-15-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ wordnik # This is essential reading for evidence-based policy advocates insisting on random sampling http://t.co/1GTPrias # edpolicy #edchat # # Wikipedia seems to be addressing its # gender gap with commendable candor and insight http://t.co/01ImDC9X # feminism # Powered by Twitter Tools</description><pubDate>Sun, 15 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-14 on @techczech</title><link>https://techczech.net/2012/07/14/the-day-2012-07-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/14/the-day-2012-07-14-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/Z9FchlGO The Struggle # # Drupal is better for some sites, # Wordpress is better for others. But I find myself recommending Wordpress for more and more small sites. # &quot;#Drupal is not a # CMS quot; true but as a framework it needs to make basic CMS functionality…</description><pubDate>Sat, 14 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-13 on @techczech</title><link>https://techczech.net/2012/07/13/the-day-2012-07-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/13/the-day-2012-07-13-on-techczech/</guid><description>@ ballofcotton87 Having that experience 3 days later. Can&amp;#039;t believe the circularity of argument doesn&amp;#039;t make @ nfergus dizzy. # ReithLectures in reply to ballofcotton87 # Google improves conversion facility on search - often forgotten feature http://t.co/yVI32EuL # edtech # I liked a @ YouTube video http://t.co/4DPaUte2 Boating on The Norfolk Broads in the 1930s…</description><pubDate>Fri, 13 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-12 on @techczech</title><link>https://techczech.net/2012/07/12/the-day-2012-07-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/12/the-day-2012-07-12-on-techczech/</guid><description>InLOC is an interesting project for capturing information about learning outcomes independent of framework http://t.co/0b8nyjYf # edtech # This pigeon just landed on me as I was reading @ bigissue on a bench # birds http://t.co/c8Pg03Uq # Powered by Twitter Tools</description><pubDate>Thu, 12 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-07-12</title><link>https://techczech.net/2012/07/12/twitter-weekly-updates-for-2012-07-12/</link><guid isPermaLink="true">https://techczech.net/2012/07/12/twitter-weekly-updates-for-2012-07-12/</guid><description>InLOC is an interesting project for capturing information about learning outcomes independent of framework http://t.co/0b8nyjYf # edtech # This pigeon just landed on me as I was reading @ bigissue on a bench # birds http://t.co/c8Pg03Uq # @ Thunderfairy Good luck! Where can one tune in? in reply to Thunderfairy # I liked a @…</description><pubDate>Thu, 12 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-11 on @techczech</title><link>https://techczech.net/2012/07/11/the-day-2012-07-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/11/the-day-2012-07-11-on-techczech/</guid><description>@ Thunderfairy Good luck! Where can one tune in? in reply to Thunderfairy # Powered by Twitter Tools</description><pubDate>Wed, 11 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-10 on @techczech</title><link>https://techczech.net/2012/07/10/the-day-2012-07-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/10/the-day-2012-07-10-on-techczech/</guid><description>I liked a @ YouTube video from @ harto http://t.co/lBXqxxxQ &quot;Oh, Internet&quot; - A love song. # I liked a @ YouTube video from @ harto http://t.co/vOMWYUa5 &quot;Oh, Internet&quot; - Acoustic Jam # I liked a @ YouTube video from @ harto http://t.co/lCgqEquu Show Me Where Ya Noms At # I liked a @ YouTube…</description><pubDate>Tue, 10 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-09 on @techczech</title><link>https://techczech.net/2012/07/09/the-day-2012-07-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/09/the-day-2012-07-09-on-techczech/</guid><description>Do you brag about your personal learning network? http://t.co/tk1M8gr4 # pln #edchat # Photography Basics – Looking For Light http://t.co/5X1xcJbc # photography # Emoticons from 1881 on Shady Characters http://t.co/fALcJLmk #:-) # Powered by Twitter Tools</description><pubDate>Mon, 09 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-08 on @techczech</title><link>https://techczech.net/2012/07/08/the-day-2012-07-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/08/the-day-2012-07-08-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ techczech @eLearningGuild @ OpenIDEO # # Instacanvas lets you buy and sell Instagram artwork. Help me get the gallery for techczech to open soon. http://t.co/2hgY1dVJ # Powered by Twitter Tools</description><pubDate>Sun, 08 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-07 on @techczech</title><link>https://techczech.net/2012/07/07/the-day-2012-07-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/07/the-day-2012-07-07-on-techczech/</guid><description>Late bird catches the mourn http://t.co/QJgGiExO # Gawkers of Stena http://t.co/ULqVB0Xn # There she blows - watering the canals http://t.co/tJ7F94tI # Nexus 7 is just sooo tempting. Could mine be one of those two-tablet homes? http://t.co/nHACvvXG # android Ideal for # edtech and though. # Powered by Twitter Tools</description><pubDate>Sat, 07 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-06 on @techczech</title><link>https://techczech.net/2012/07/06/the-day-2012-07-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/06/the-day-2012-07-06-on-techczech/</guid><description>Special Public Lecture starting now: How language impairment affects literacy by Professor Dorothy Bishop http://t.co/VLFTPeiS # literacy # Shocked to hear there are still linguists who say things like &quot;these people have no grammar&quot;. Don&amp;#039;t be one of them! # linguistics #ellchat # Broadcasters, putting musical beds under speech on radio and TV is incredibly…</description><pubDate>Fri, 06 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-05 on @techczech</title><link>https://techczech.net/2012/07/05/the-day-2012-07-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/05/the-day-2012-07-05-on-techczech/</guid><description>Attitudes, motivation and opportunities are more important to success in 2nd language learning than method or onset age. # ellchat # It was the sociolinguistic lesson on n-deletion in Dutch that explained why I wasn&amp;#039;t able to understand any directions to Driebergen. # ftw # The bilingual situation in Belgium is complicated both inside and…</description><pubDate>Thu, 05 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-07-05</title><link>https://techczech.net/2012/07/05/twitter-weekly-updates-for-2012-07-05/</link><guid isPermaLink="true">https://techczech.net/2012/07/05/twitter-weekly-updates-for-2012-07-05/</guid><description>Attitudes, motivation and opportunities are more important to success in 2nd language learning than method or onset age. # ellchat # It was the sociolinguistic lesson on n-deletion in Dutch that explained why I wasn&amp;#039;t able to understand any directions to Driebergen. # ftw # The bilingual situation in Belgium is complicated both inside and…</description><pubDate>Thu, 05 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-04 on @techczech</title><link>https://techczech.net/2012/07/04/the-day-2012-07-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/04/the-day-2012-07-04-on-techczech/</guid><description>I&amp;#039;m honestly amazed there&amp;#039;s not more of a crowd for the talk on statistics for language acquisition http://t.co/Hyht8zEp # linguistics # Church in perspective http://t.co/1FV09JSA # Language borrowing works in unpredictable ways. Dutch call LCD projectors &quot;beamer&quot;. Germans call mobile phones is &quot;handy&quot;. # ellchat # Who would have thought that questionnaire design in bilingualism…</description><pubDate>Wed, 04 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-03 on @techczech</title><link>https://techczech.net/2012/07/03/the-day-2012-07-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/03/the-day-2012-07-03-on-techczech/</guid><description>Google indoor maps comes to the UK, helps commuter meet pasty in record time http://t.co/GVXbdaVC &amp;lt; Great headline, meh news # Why did @ techsmith decide to ruin my productivity &amp; remove Shift-Click to select and Shift-Scroll to move timeline from @ camtasia 8? # edtech # Powered by Twitter Tools</description><pubDate>Tue, 03 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-02 on @techczech</title><link>https://techczech.net/2012/07/02/the-day-2012-07-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/02/the-day-2012-07-02-on-techczech/</guid><description>The # MOOC Misnomer http://t.co/kS7OxKpQ # open #oer Some MOOCs aren&amp;#039;t massive, some aren&amp;#039;t open, some aren&amp;#039;t courses. But all are online. # Poetry in clocks http://t.co/Bl4B5Cky # Noon on the first Monday of every month is time of siren testing in the Netherlands. Odysseus had the right idea for his sailors. # Powered by…</description><pubDate>Mon, 02 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-07-01 on @techczech</title><link>https://techczech.net/2012/07/01/the-day-2012-07-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/07/01/the-day-2012-07-01-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ techczech @lessig # Why schools should have a hyperlocal blog http://t.co/CfIACL9w # ukedchat # &quot;a moment of nervous cluelessnes&quot; about grammar - a common phenomenon # ellchat http://t.co/JoZ12PJ1 # Top 20 Keyboard Shortcuts everyone should now http://t.co/XLG8j6QH # edtech # The best way…</description><pubDate>Sun, 01 Jul 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-30 on @techczech</title><link>https://techczech.net/2012/06/30/the-day-2012-06-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/30/the-day-2012-06-30-on-techczech/</guid><description>Moonlit sea from a ferry from Harrwich http://t.co/DsPR6vag # Limerweek in review: the week’s top news in rhyme | Ars Technica http://t.co/TfhUg0E4 &amp;lt; made my day # Ship aground http://t.co/pYyYubvD # Decline Effect in Linguistics? http://t.co/dPiVAgqN # &quot;inquiry process isn&amp;#039;t just asking questions. And it certainly isn&amp;#039;t asking questions we know answers to&quot; http://t.co/VYkAvSYH #…</description><pubDate>Sat, 30 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-28 on @techczech</title><link>https://techczech.net/2012/06/28/the-day-2012-06-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/28/the-day-2012-06-28-on-techczech/</guid><description>Google announces offline editing for Docs, available later today http://t.co/P1AuoPLN Hallelujah # edtech # RT @ gconole : New blog post: Excited about new technologies? # http //e4innovation.com/?p=588 # fb #mscli # The reverse-journal-submission system http://t.co/wu9vor31 # open #oer &amp;lt; great idea but I prefer the meta journal approach # @ mweller but, there are…</description><pubDate>Thu, 28 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-06-28</title><link>https://techczech.net/2012/06/28/twitter-weekly-updates-for-2012-06-28/</link><guid isPermaLink="true">https://techczech.net/2012/06/28/twitter-weekly-updates-for-2012-06-28/</guid><description>Google announces offline editing for Docs, available later today http://t.co/P1AuoPLN Hallelujah # edtech # RT @ gconole : New blog post: Excited about new technologies? # http //e4innovation.com/?p=588 # fb #mscli # The reverse-journal-submission system http://t.co/wu9vor31 # open #oer &amp;lt; great idea but I prefer the meta journal approach # @ mweller but, there are…</description><pubDate>Thu, 28 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-27 on @techczech</title><link>https://techczech.net/2012/06/27/the-day-2012-06-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/27/the-day-2012-06-27-on-techczech/</guid><description>On @ mweller &amp;#039;s question re forgetting. I think we forget what we&amp;#039;d done in education about every 15 years. But is it a bad thing? # ukedchat # &quot;we forget fundamental lessons in bridge design every 30 years [...is the same] true with distance education?&quot; @ mweller http://t.co/IpIyMkMy # Moodle 2.3 is now available!…</description><pubDate>Wed, 27 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-26 on @techczech</title><link>https://techczech.net/2012/06/26/the-day-2012-06-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/26/the-day-2012-06-26-on-techczech/</guid><description>Join me NOW on JISC Techdis Tuesday talking about teacher training for # accessibility http://t.co/vYeRe4Mt # tdt #ukedchat # cpd # Dries Buytaert: Spark update: responsive layouts in # Drupal http://t.co/6SuOU568 # Powered by Twitter Tools</description><pubDate>Tue, 26 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-25 on @techczech</title><link>https://techczech.net/2012/06/25/the-day-2012-06-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/25/the-day-2012-06-25-on-techczech/</guid><description>@ Falsum Starkey&amp;#039;s rants can be taken as of no more value than the casual racism of a taxi driver. We shouldn&amp;#039;t be insulted by them. # edfest in reply to Falsum # @ Falsum We should start insulting Starkey back. What a quasi educated &quot;moron&quot; - here I quote with endorsement from Language Log…</description><pubDate>Mon, 25 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-24 on @techczech</title><link>https://techczech.net/2012/06/24/the-day-2012-06-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/24/the-day-2012-06-24-on-techczech/</guid><description>Kill or cure? This is the funniest idea for a website. Exposes shoddy science reporting in general not just @ dailymail http://t.co/pttyXIpC # &amp;#039;data protection duckout&amp;#039; on photo bans leads to &quot;contamination of everyday adult-child relations&quot; http://t.co/6ilA4dDu # ukedchat # The TechCzech Weekly is out! http://t.co/sjIjHWxU # Powered by Twitter Tools</description><pubDate>Sun, 24 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-23 on @techczech</title><link>https://techczech.net/2012/06/23/the-day-2012-06-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/23/the-day-2012-06-23-on-techczech/</guid><description>I liked a @ YouTube video from @ geekandsundry http://t.co/zoxx8bN3 Write Like the Wind (George R. R. Martin) # RT @ amcunningham : “@rickmans: This is the coolest demo of Google Docs you’ve ever seen http://t.co/cWPz1GIt” he&amp;#039;s right! # True about all subjects &amp;gt; RT @ mberry : ...computer science is fun &amp; easy [...]…</description><pubDate>Sat, 23 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-22 on @techczech</title><link>https://techczech.net/2012/06/22/the-day-2012-06-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/22/the-day-2012-06-22-on-techczech/</guid><description>2 essential reads about methods in # psychology http://t.co/RBDZqSfP and http://t.co/RBDZqSfP . Sample data as well as experimental subjects! # Thanks to 50% off on international shipping finally bought @ scottevest Travel Vest. Looking forward to the 24 pockets. http://bit.ly/LlUhAs # &amp;#039;Spotify For Audiobooks&amp;#039; Hailed As Next Digital Publishing Innovation http://t.co/cz3yQJLD &amp;lt; @ bardowl seems…</description><pubDate>Fri, 22 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-21 on @techczech</title><link>https://techczech.net/2012/06/21/the-day-2012-06-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/21/the-day-2012-06-21-on-techczech/</guid><description>Unglue.it Asks For Donations To Convert Books To Creative Commons http://t.co/lk8SPy9D &amp;lt; great idea for # oer #open # edchat # Google Maps will add England and Wales&amp;#039;s waterways to travel routes http://t.co/q6VjIMHt &amp;lt; Now this is really exciting news - can&amp;#039;t wait # Google launches Endangered Languages website to save 3,000 at-risk tongues http://t.co/xzkVjRH7…</description><pubDate>Thu, 21 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-06-21</title><link>https://techczech.net/2012/06/21/twitter-weekly-updates-for-2012-06-21/</link><guid isPermaLink="true">https://techczech.net/2012/06/21/twitter-weekly-updates-for-2012-06-21/</guid><description>Unglue.it Asks For Donations To Convert Books To Creative Commons http://t.co/lk8SPy9D &amp;lt; great idea for # oer #open # edchat # Google Maps will add England and Wales&amp;#039;s waterways to travel routes http://t.co/q6VjIMHt &amp;lt; Now this is really exciting news - can&amp;#039;t wait # Google launches Endangered Languages website to save 3,000 at-risk tongues http://t.co/xzkVjRH7…</description><pubDate>Thu, 21 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-20 on @techczech</title><link>https://techczech.net/2012/06/20/the-day-2012-06-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/20/the-day-2012-06-20-on-techczech/</guid><description>I like the philosophy behind the @ restartproject - repair old tech while learning http://t.co/N08BVkvc # edtech # Not sure &amp;gt; RT @ RohanMaitzen : MOOCs: &quot;basically no direct individual interaction w/ anyone who knows what they’re doing&quot; http://t.co/oYHvQJ1T # Powered by Twitter Tools</description><pubDate>Wed, 20 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-19 on @techczech</title><link>https://techczech.net/2012/06/19/the-day-2012-06-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/19/the-day-2012-06-19-on-techczech/</guid><description>Just had my first &quot;conversation&quot; about a # Skype ad. Predictably it was about how ads are a necessary evil and how to get rid of them. # # Moodle 2.3 (almost!) http://t.co/9s7dESIi &amp;lt; beta instead of promised final release, but I agree, this time the delay will be worth the wait # RT @…</description><pubDate>Tue, 19 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-18 on @techczech</title><link>https://techczech.net/2012/06/18/the-day-2012-06-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/18/the-day-2012-06-18-on-techczech/</guid><description>Still time to register for free webinar Public Lecture: Specific Language Impairment and Dyslexia http://t.co/xfwlrFHG # dyslexia #language # Powered by Twitter Tools</description><pubDate>Mon, 18 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-17 on @techczech</title><link>https://techczech.net/2012/06/17/the-day-2012-06-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/17/the-day-2012-06-17-on-techczech/</guid><description>The TechCzech Weekly is out! http://t.co/sjIjHWxU ▸ Top stories today via @ InnovativeEdu @rosamariatorres # All learning should have the # hacker ethos of Hacking Chinese http://t.co/G7j1fr7K # edchat #ukedchat # ellchat # I like The Mezzofanti Guild as an approach to socially motivated but rigorous language learning. http://t.co/NuyqLb43 # ellchat #edchat # ling #…</description><pubDate>Sun, 17 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-16 on @techczech</title><link>https://techczech.net/2012/06/16/the-day-2012-06-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/16/the-day-2012-06-16-on-techczech/</guid><description>How to Use Google Calendar as a Project Management Tool [Project Management] http://t.co/VqJJlQXE # edtech &amp;lt; Great idea # Marco Polo Project is an amazing effort to translate modern # Chinese writing http://t.co/VNEl6H3n (via @ sinicapodcast ) # edchat # Is it cheating if you post your DSLR pics in @ instagram ? Not very…</description><pubDate>Sat, 16 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-15 on @techczech</title><link>https://techczech.net/2012/06/15/the-day-2012-06-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/15/the-day-2012-06-15-on-techczech/</guid><description>RT @ mwclarkson_pub : RT @ DrTomCrick : Phrase of the day at # casconf2012 &quot;normalisation of deviance&quot; # Free training on Accessible technologies for # Reading in # Nottingham on 27 June http://t.co/CykVwL2f # dyslexia #ukedchat # a11y # Exciting new features to be previewed on # CiviCRM 4.2 alpha 1 http://t.co/8ZWQxBoD # Drupal…</description><pubDate>Fri, 15 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-14 on @techczech</title><link>https://techczech.net/2012/06/14/the-day-2012-06-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/14/the-day-2012-06-14-on-techczech/</guid><description>Q: Why Does Microsoft Need Yammer? A: To Save SharePoint http://t.co/bnkPhHxv &amp;lt; Interesting. Lots of people are down on # Share Point. # I liked a @ YouTube video from @ molly23 http://t.co/dKI7F4Gf An Open Letter to Stephen Fry (Original Song) # Free training on Accessible technologies for # Reading in # Nottingham on 27…</description><pubDate>Thu, 14 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-06-14</title><link>https://techczech.net/2012/06/14/twitter-weekly-updates-for-2012-06-14/</link><guid isPermaLink="true">https://techczech.net/2012/06/14/twitter-weekly-updates-for-2012-06-14/</guid><description>I liked a @ YouTube video from @ foxtailsbrigade http://t.co/1bJ0a7SJ Foxtails Brigade - &quot;Don&amp;#039;t Look Down&quot; - Live # Q: Why Does Microsoft Need Yammer? A: To Save SharePoint http://t.co/bnkPhHxv &amp;lt; Interesting. Lots of people are down on # Share Point. # I liked a @ YouTube video from @ molly23 http://t.co/dKI7F4Gf An Open Letter…</description><pubDate>Thu, 14 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-13 on @techczech</title><link>https://techczech.net/2012/06/13/the-day-2012-06-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/13/the-day-2012-06-13-on-techczech/</guid><description>Ending Knowledge Cartels. - academhack - Thoughts on Emerging Media and Higher Education http://t.co/J29Tif2S # open #OER # 5 Reasons Google Hangouts Are Cooler Than Skype For Video Chats http://t.co/9mAfDFBd # Powered by Twitter Tools</description><pubDate>Wed, 13 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-12 on @techczech</title><link>https://techczech.net/2012/06/12/the-day-2012-06-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/12/the-day-2012-06-12-on-techczech/</guid><description>Talking about # CPD and ICT curriculum on http://t.co/gWe0SUFX # UKcpd4change #ukedchat # “Defensive Patent License” created to protect innovators from trolls http://t.co/83P11EHq # I liked a @ YouTube video from @ pomplamoose http://t.co/e7Ougg3J Pomplamoose - Don&amp;#039;t Stop Lovin Me # Powered by Twitter Tools</description><pubDate>Tue, 12 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-11 on @techczech</title><link>https://techczech.net/2012/06/11/the-day-2012-06-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/11/the-day-2012-06-11-on-techczech/</guid><description>Incredibox will keep you occupied for hours. What great fun! http://t.co/QBYOvc04 # music #edtech via @ geekandsundry # Gamer Girl, Country Boy a song for the modern and bygone eras: http://t.co/n6rBV8Vk via @ youtube # I liked a @ YouTube video from @ geekandsundry http://t.co/Pn0KdRpH Gamer Girl, Country Boy # I liked a @ YouTube…</description><pubDate>Mon, 11 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-09 on @techczech</title><link>https://techczech.net/2012/06/09/the-day-2012-06-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/09/the-day-2012-06-09-on-techczech/</guid><description>Graffiti in love http://t.co/OmqHXXhb # Would you believe the fools that say Norwich and Norfolk are simple and backward? What beautiful and rich places they are! # norwich # Powered by Twitter Tools</description><pubDate>Sat, 09 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-06-07</title><link>https://techczech.net/2012/06/07/twitter-weekly-updates-for-2012-06-07/</link><guid isPermaLink="true">https://techczech.net/2012/06/07/twitter-weekly-updates-for-2012-06-07/</guid><description>Ridiculous idyll http://t.co/aknNCSDo # Drupal for Students - London http://t.co/d76jnram &amp;lt; great idea for the future of # Drupal and # DrupalEd # Waiting for me? You bet! http://t.co/ovIT1kHx # Today IPv6 Launches, What you need to know http://t.co/U1P0g9qB &amp;lt; finally every atom in the universe can have an IP address # edtech # Norwich…</description><pubDate>Thu, 07 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-06 on @techczech</title><link>https://techczech.net/2012/06/06/the-day-2012-06-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/06/the-day-2012-06-06-on-techczech/</guid><description>Ridiculous idyll http://t.co/aknNCSDo # Drupal for Students - London http://t.co/d76jnram &amp;lt; great idea for the future of # Drupal and # DrupalEd # Waiting for me? You bet! http://t.co/ovIT1kHx # Today IPv6 Launches, What you need to know http://t.co/U1P0g9qB &amp;lt; finally every atom in the universe can have an IP address # edtech # Powered…</description><pubDate>Wed, 06 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-05 on @techczech</title><link>https://techczech.net/2012/06/05/the-day-2012-06-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/05/the-day-2012-06-05-on-techczech/</guid><description>Norwich jubilee http://t.co/4Vm6QRGJ # Pundits: Stop lying about education! Us: Let&amp;#039;s stop lying to ourselves! It&amp;#039;s not as bad as reporting on it! http://t.co/EuRGKAtr # edchat # &quot;Stating the Obvious About Standard English&quot; ... &quot;it is a DIALECT!&quot; http://t.co/Wb7TK6ui &amp;lt; All English teachers should keep in mind # engchat # What better way to celebrate…</description><pubDate>Tue, 05 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-04 on @techczech</title><link>https://techczech.net/2012/06/04/the-day-2012-06-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/04/the-day-2012-06-04-on-techczech/</guid><description>WebAIM&amp;#039;s Screen Reader User Survey # 4 Results now available http://t.co/uHyuu8zx Important reading for # accessibility #screenreader # a11y # Powered by Twitter Tools</description><pubDate>Mon, 04 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-03 on @techczech</title><link>https://techczech.net/2012/06/03/the-day-2012-06-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/03/the-day-2012-06-03-on-techczech/</guid><description>Anyone thinking women are not interested in geeky techie things should watch this Makeup Tutorial. http://t.co/2gOYWqQ7 # feminism #edchat # I liked a @ YouTube video http://t.co/PtgOi2DU (Orig) Petals from a Flower # &quot;Apple&amp;#039;s Newton MessagePad PDA at Twenty&quot; http://t.co/RS5mAcza &amp;lt; History of tech can help us understand what we have today # edtech #history…</description><pubDate>Sun, 03 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-06-01 on @techczech</title><link>https://techczech.net/2012/06/01/the-day-2012-06-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/06/01/the-day-2012-06-01-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/OXT7Q8kt Acoustic &quot;Do You Wanna Date My Avatar&quot; @ w00tstock 1.1 LA # Powered by Twitter Tools</description><pubDate>Fri, 01 Jun 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-05-31</title><link>https://techczech.net/2012/05/31/twitter-weekly-updates-for-2012-05-31/</link><guid isPermaLink="true">https://techczech.net/2012/05/31/twitter-weekly-updates-for-2012-05-31/</guid><description>InstaEDU On-Demand Video Tutoring Gets An A+ and $1.1M Seed From The Social+Capital Partnership http://t.co/duk7wHRX # edchat #edtech # Sorry, I can&amp;#039;t attend # UKcpd4change tonight. Stuck at work! # I liked a @ YouTube video http://t.co/J1YcRSe8 Paul and Storm perform George RR Martin song # @ jimgroom I meant I wanted to express support…</description><pubDate>Thu, 31 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-30 on @techczech</title><link>https://techczech.net/2012/05/30/the-day-2012-05-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/30/the-day-2012-05-30-on-techczech/</guid><description>InstaEDU On-Demand Video Tutoring Gets An A+ and $1.1M Seed From The Social+Capital Partnership http://t.co/duk7wHRX # edchat #edtech # Sorry, I can&amp;#039;t attend # UKcpd4change tonight. Stuck at work! # Powered by Twitter Tools</description><pubDate>Wed, 30 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-29 on @techczech</title><link>https://techczech.net/2012/05/29/the-day-2012-05-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/29/the-day-2012-05-29-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/J1YcRSe8 Paul and Storm perform George RR Martin song # @ jimgroom I meant I wanted to express support thru a small donation - sadly too busy to join in reply to jimgroom # Powered by Twitter Tools</description><pubDate>Tue, 29 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-28 on @techczech</title><link>https://techczech.net/2012/05/28/the-day-2012-05-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/28/the-day-2012-05-28-on-techczech/</guid><description>Taking the Massive out of # mooc is a good idea but certain size is important for group learning - say 30? http://t.co/b4H9zWA5 @ mweller # I wish I had contributed to # DS106 The Open Online Community of Digital Storytellers by @ jimgroom the original # MOOC http://t.co/5vqLJwsY # I think Naace RiskIT is…</description><pubDate>Mon, 28 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-27 on @techczech</title><link>https://techczech.net/2012/05/27/the-day-2012-05-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/27/the-day-2012-05-27-on-techczech/</guid><description>On Not Sending The Kid To College http://t.co/L3ReUv6s &amp;lt; This should be seen as valid choice # edchat # Movies, TV Shows, Songs, and Textbooks http://t.co/33CQX6g0 # openaccess #oer &amp;lt; Yes, textbooks are more expensive than any other medium # fail # &quot;many people who care about language care about it wrongly&quot;... &quot;it’s caring about…</description><pubDate>Sun, 27 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-26 on @techczech</title><link>https://techczech.net/2012/05/26/the-day-2012-05-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/26/the-day-2012-05-26-on-techczech/</guid><description>College Degrees: More and More, They&amp;#039;re Just a Piece of Paper http://t.co/pzAnPafb # edchat &amp;lt; another case for # Badges # Cheap £149 PC and broadband bundle gives the UK something to smile about http://t.co/wJocDDUm # Help Fund Views in Core http://t.co/99OOxEI9 &amp;lt; Music to the ears of any # Drupal user - Drupal without…</description><pubDate>Sat, 26 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-25 on @techczech</title><link>https://techczech.net/2012/05/25/the-day-2012-05-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/25/the-day-2012-05-25-on-techczech/</guid><description>Accessible Technologies for Reading # free training on # Accessibility and # Literacy in # Bristol 21 Jun http://t.co/8fTTPU1a # dyslexia Pls RT # @ sueburnett I did check with a feed link I found but it must have been an old one. At least the old ones still work. in reply to sueburnett #…</description><pubDate>Fri, 25 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-24 on @techczech</title><link>https://techczech.net/2012/05/24/the-day-2012-05-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/24/the-day-2012-05-24-on-techczech/</guid><description>Google pumps cash into UK classrooms, will buy Arduino, Raspberry Pi sets for kids http://t.co/8DY3b85G &amp; # ukedchat # Powered by Twitter Tools</description><pubDate>Thu, 24 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-05-24</title><link>https://techczech.net/2012/05/24/twitter-weekly-updates-for-2012-05-24/</link><guid isPermaLink="true">https://techczech.net/2012/05/24/twitter-weekly-updates-for-2012-05-24/</guid><description>Google pumps cash into UK classrooms, will buy Arduino, Raspberry Pi sets for kids http://t.co/8DY3b85G &amp; # ukedchat # Ways media piracy ends: 1. gets absorbed by commercial interests who fought it or 2. becomes obsolete http://t.co/CwSHh5nI # open #til # Really enjoyed the Google Hangout on # ukcpd4change Anybody can see a recording of…</description><pubDate>Thu, 24 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-23 on @techczech</title><link>https://techczech.net/2012/05/23/the-day-2012-05-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/23/the-day-2012-05-23-on-techczech/</guid><description>Ways media piracy ends: 1. gets absorbed by commercial interests who fought it or 2. becomes obsolete http://t.co/CwSHh5nI # open #til # Really enjoyed the Google Hangout on # ukcpd4change Anybody can see a recording of the discussion http://t.co/3SUV1kuz # ukedchat #cpd # Taking part in a Google+ Hangout on Continued Professional Development # cpd…</description><pubDate>Wed, 23 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-21 on @techczech</title><link>https://techczech.net/2012/05/21/the-day-2012-05-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/21/the-day-2012-05-21-on-techczech/</guid><description>Experts and Empowerment http://t.co/DAlPFkY0 # Paying to Learn (to Program) http://t.co/je1nlyJH # edchat #opened # mooc # Support free access to scientific journal articles arising from taxpayer-funded research. # OAMonday http://t.co/gZ2AW1Rq # openaccess # EU: Programming Languages Can&amp;#039;t Be Copyrighted - http://t.co/rILdTRb9 # Box Launches Private Sync Client Beta for Personal Users http://t.co/Jo826DE1 # I…</description><pubDate>Mon, 21 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-20 on @techczech</title><link>https://techczech.net/2012/05/20/the-day-2012-05-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/20/the-day-2012-05-20-on-techczech/</guid><description>An innovator’s dilemmas: On the resistance to technological innovation in education http://t.co/XNS11SN4 # edchat #ukedchat # edreform #edtech # Powered by Twitter Tools</description><pubDate>Sun, 20 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>An innovator’s dilemmas: On the resistance to technological innovation in education</title><link>https://techczech.net/2012/05/19/an-innovators-dilemmas-on-the-resistance-to-technological-innovation-in-education/</link><guid isPermaLink="true">https://techczech.net/2012/05/19/an-innovators-dilemmas-on-the-resistance-to-technological-innovation-in-education/</guid><description>The unlikely protagonist This post may sound like it was written by someone who opposes technological innovation or at least advocates a cautious wait-and-see approach to it. Nothing could be further from the truth. I have always been an early adopter of both technological and pedagogical innovations. And I make a pest of myself to…</description><pubDate>Sat, 19 May 2012 00:00:00 GMT</pubDate><category>OpEd</category><category>Policy and theory</category><category>e-strategy</category><category>Educational technology</category><category>educational tool</category><category>hardware/software</category><category>human based infrastructure</category><category>Interactive whiteboard</category><category>iPads</category><category>on-line to-do list</category><category>online peer communities</category><category>online research time</category><category>personal communications</category><category>progressive teacher</category><category>Science and technology studies</category><category>Service innovation</category><category>Skill</category><category>teacher</category><category>Twitter</category><category>YouTube</category></item><item><title>The day  2012-05-18 on @techczech</title><link>https://techczech.net/2012/05/18/the-day-2012-05-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/18/the-day-2012-05-18-on-techczech/</guid><description>If you listen carefully, you&amp;#039;ll find B.F Skinner&amp;#039;s teaching machines an incredibly modern concept http://t.co/LT5drJ9F # edchat #ukedchat # Powered by Twitter Tools</description><pubDate>Fri, 18 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-17 on @techczech</title><link>https://techczech.net/2012/05/17/the-day-2012-05-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/17/the-day-2012-05-17-on-techczech/</guid><description>Why the University System, as We Know It, Won’t Last …. and What’s Coming Next http://t.co/iZ78fM33 # edchat # Powered by Twitter Tools</description><pubDate>Thu, 17 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-05-17</title><link>https://techczech.net/2012/05/17/twitter-weekly-updates-for-2012-05-17/</link><guid isPermaLink="true">https://techczech.net/2012/05/17/twitter-weekly-updates-for-2012-05-17/</guid><description>Why the University System, as We Know It, Won’t Last …. and What’s Coming Next http://t.co/iZ78fM33 # edchat # Just donated to the UK Pirate Party http://t.co/GiQlqsfE to support their efforts towards freedom of expression against corporate interests. # @ ghenrick I agree that user error is often the reason. But discoverability of materials across…</description><pubDate>Thu, 17 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-16 on @techczech</title><link>https://techczech.net/2012/05/16/the-day-2012-05-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/16/the-day-2012-05-16-on-techczech/</guid><description>Just donated to the UK Pirate Party http://t.co/GiQlqsfE to support their efforts towards freedom of expression against corporate interests. # @ ghenrick I agree that user error is often the reason. But discoverability of materials across course pages is a weakness of Moodle. in reply to ghenrick # Student response should give # Moodle developers…</description><pubDate>Wed, 16 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-15 on @techczech</title><link>https://techczech.net/2012/05/15/the-day-2012-05-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/15/the-day-2012-05-15-on-techczech/</guid><description>Parky cloudy http://t.co/YEISX7jd # Powered by Twitter Tools</description><pubDate>Tue, 15 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-14 on @techczech</title><link>https://techczech.net/2012/05/14/the-day-2012-05-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/14/the-day-2012-05-14-on-techczech/</guid><description>New Free Software disc available | Open Source Schools http://t.co/lhcsozWT # edtech # Powered by Twitter Tools</description><pubDate>Mon, 14 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-13 on @techczech</title><link>https://techczech.net/2012/05/13/the-day-2012-05-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/13/the-day-2012-05-13-on-techczech/</guid><description>So this is what constructivist learning looks like. @ YouVersion as a model for social learning tools. http://t.co/zTq9jAQx # edchat #ukedchat # People like @ Ofstednews should watch http://t.co/H2a9XypT before blaming discipline on new tech &amp; mores. # ukedchat (ht http://t.co/9zdfnKfA ) # HP loses hundreds of thousands CA social services records—on microfiche http://t.co/72PzJoNJ &amp;lt;The…</description><pubDate>Sun, 13 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-12 on @techczech</title><link>https://techczech.net/2012/05/12/the-day-2012-05-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/12/the-day-2012-05-12-on-techczech/</guid><description>5 Cool Features That Prove Evernote Is Still A Kick-Ass Service http://t.co/b4He7wJf Looks like I must revisit Evernote # edtech # Cool video. But suggests wrong practice on ALT RT @ MartianWebDev : RT @ dequesystems : What is # Web #Accessibility? http://t.co/hgnbNVM4 # a11y # Encourage all # ScreenReader users to take @ WebAIM…</description><pubDate>Sat, 12 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-11 on @techczech</title><link>https://techczech.net/2012/05/11/the-day-2012-05-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/11/the-day-2012-05-11-on-techczech/</guid><description>My favourite English city # Norwich is England&amp;#039;s first UNESCO City of Literature http://t.co/H4NEaGP6 # cityoflit Well done @ WritersCentre # Powered by Twitter Tools</description><pubDate>Fri, 11 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-10 on @techczech</title><link>https://techczech.net/2012/05/10/the-day-2012-05-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/10/the-day-2012-05-10-on-techczech/</guid><description>Why I Chose To Buy A Cheap # Android Tablet [Opinion] http://t.co/YLgzHqQc # edtech # iPad # 50 QR code resources for the classroom http://t.co/dqSTigfy # edtech #qr # accessibility # Powered by Twitter Tools</description><pubDate>Thu, 10 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-05-10</title><link>https://techczech.net/2012/05/10/twitter-weekly-updates-for-2012-05-10/</link><guid isPermaLink="true">https://techczech.net/2012/05/10/twitter-weekly-updates-for-2012-05-10/</guid><description>Why I Chose To Buy A Cheap # Android Tablet [Opinion] http://t.co/YLgzHqQc # edtech # iPad # 50 QR code resources for the classroom http://t.co/dqSTigfy # edtech #qr # accessibility # &quot;Religion is not a thing. It is a discourse.&quot; - “Was Jesus a Muslim?: Questioning Categories in the Study of # Religion</description><pubDate>Thu, 10 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-09 on @techczech</title><link>https://techczech.net/2012/05/09/the-day-2012-05-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/09/the-day-2012-05-09-on-techczech/</guid><description>&quot;Religion is not a thing. It is a discourse.&quot; - “Was Jesus a Muslim?: Questioning Categories in the Study of # Religion</description><pubDate>Wed, 09 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-08 on @techczech</title><link>https://techczech.net/2012/05/08/the-day-2012-05-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/08/the-day-2012-05-08-on-techczech/</guid><description>Exciting news: Google+ lets you broadcast your Hangouts http://t.co/DQkDX47s # GIMP 2.8 Released, Adds Single-Window View [Updates] http://t.co/ib9RLnq2 # Powered by Twitter Tools</description><pubDate>Tue, 08 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-07 on @techczech</title><link>https://techczech.net/2012/05/07/the-day-2012-05-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/07/the-day-2012-05-07-on-techczech/</guid><description>15 reasons from 1984 on why the # Mac might fail http://t.co/SksGN4nd &amp;lt; funny thing is @ therealdvorak was right except for one small point... # New version of FreeCommander XE available - essential keyboard-only file management http://t.co/GJ7tCdin # edtech #accessibility # Powered by Twitter Tools</description><pubDate>Mon, 07 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-06 on @techczech</title><link>https://techczech.net/2012/05/06/the-day-2012-05-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/06/the-day-2012-05-06-on-techczech/</guid><description>7 New Educational Startups Founded By Minorities in Tech | TechCrunch http://t.co/Nixax4h0 # edchat # Grad students&amp;#039; favourite author: &quot;anyone who can make an argument...without...socially constructing anything&quot; http://t.co/FHnc4F1x # edchat # In case you ever wonder about the difference betw: &quot;phoneme and allophone&quot; http://t.co/z8hEDodK # engchat #ellchat # linguistics # Racist Hunger Games Fans Are…</description><pubDate>Sun, 06 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-05 on @techczech</title><link>https://techczech.net/2012/05/05/the-day-2012-05-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/05/the-day-2012-05-05-on-techczech/</guid><description>Wappwolf’s Automator Now Connects/Syncs Google Drive, Dropbox And Others http://t.co/9spKxmNy # A tired beach http://t.co/d5iQCPTu # Powered by Twitter Tools</description><pubDate>Sat, 05 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-04 on @techczech</title><link>https://techczech.net/2012/05/04/the-day-2012-05-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/04/the-day-2012-05-04-on-techczech/</guid><description>Programming languages can&amp;#039;t be copyrighted: EU court http://t.co/be5RRCYR # Beach brow http://t.co/L4GZ71xg # Sea smiley http://t.co/MdCUpSqL # No zoom boat http://t.co/D8sBazOi # 10 Executives Who Lied On Their Resumes http://t.co/ekBN4sAh &amp;lt; how much do lies about meaningless qualifications matter? # edchat # Powered by Twitter Tools</description><pubDate>Fri, 04 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-03 on @techczech</title><link>https://techczech.net/2012/05/03/the-day-2012-05-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/03/the-day-2012-05-03-on-techczech/</guid><description>Down and up http://t.co/CjyTBLEF # Do sleeping dragons lie? http://t.co/txJIcaoq # Dusk or dawn? http://t.co/8xSUZxXl # Pier of the realm http://t.co/B0nIiXkM # Tidy view http://t.co/tEATx05m # Understoodit Lets Students Voice Their Confusion Without Having to Raise Their Hands http://t.co/9oEmnqba # edchat &amp;lt; too much? # Google&amp;#039;s Language Immersion Chrome extension translates random text to teach…</description><pubDate>Thu, 03 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-05-03</title><link>https://techczech.net/2012/05/03/twitter-weekly-updates-for-2012-05-03/</link><guid isPermaLink="true">https://techczech.net/2012/05/03/twitter-weekly-updates-for-2012-05-03/</guid><description>Down and up http://t.co/CjyTBLEF # Do sleeping dragons lie? http://t.co/txJIcaoq # Dusk or dawn? http://t.co/8xSUZxXl # Pier of the realm http://t.co/B0nIiXkM # Tidy view http://t.co/tEATx05m # Understoodit Lets Students Voice Their Confusion Without Having to Raise Their Hands http://t.co/9oEmnqba # edchat &amp;lt; too much? # Google&amp;#039;s Language Immersion Chrome extension translates random text to teach…</description><pubDate>Thu, 03 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-02 on @techczech</title><link>https://techczech.net/2012/05/02/the-day-2012-05-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/02/the-day-2012-05-02-on-techczech/</guid><description>Time for government and the education sector to take a serious look at Linux and LibreOffice. http://t.co/ekBvzgr0 # foss # Great # Responsive Design tip: don&amp;#039;t design for screen sizes, design for break points! http://t.co/9QY5MWXp # rwd #accessibility # # Wikipedia founder to help in government&amp;#039;s research schemec http://t.co/zwwPlRfi # openaccess &amp;lt; Wikifying research is…</description><pubDate>Wed, 02 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-05-01 on @techczech</title><link>https://techczech.net/2012/05/01/the-day-2012-05-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/05/01/the-day-2012-05-01-on-techczech/</guid><description>Why has a book with a subtitle &quot;Study of Economics as If People Mattered&quot; not become an # occupy manifesto? http://t.co/Ft1kzNl3 # Sinica podcast on Chinese Industrial Policy and the Automotive Market asks what next for China after low-hanging fruit http://t.co/HJDVYcQZ # Powered by Twitter Tools</description><pubDate>Tue, 01 May 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-30 on @techczech</title><link>https://techczech.net/2012/04/30/the-day-2012-04-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/30/the-day-2012-04-30-on-techczech/</guid><description>Switch to @ eclipseinternet was a perfectly seamless experience. So far faster than promised in my broadband cul-de-sac: http://t.co/UzRZTjF7 # Bridge over... http://t.co/CaeVuzWP # Woods and lenses http://t.co/I3yibpwg # Powered by Twitter Tools</description><pubDate>Mon, 30 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-29 on @techczech</title><link>https://techczech.net/2012/04/29/the-day-2012-04-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/29/the-day-2012-04-29-on-techczech/</guid><description>Woe Unto Some Muslim Women - http://t.co/qi6dneqd # feminism # Rolled out a new # responsive theme on TechCzech . net http://t.co/Fj5r3saz # rwb with the Esplanade theme http://t.co/c3b0oyFv # accessibility # &quot;Why is it that ‘perfection’ tolerates L1 interference in phonetics, but not in grammar or vocabulary?&quot; http://t.co/4lercWby # engchat # &quot;Harvard v. Yale…</description><pubDate>Sun, 29 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-28 on @techczech</title><link>https://techczech.net/2012/04/28/the-day-2012-04-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/28/the-day-2012-04-28-on-techczech/</guid><description># CiviCRM and # Drupal the dream team! | Digett http://t.co/K9Kw4YbP # Top missing features of @ GoToWebinar : 1. Reliable recording with quality audio 2. live audience chat 3. demote participants 4. dock controls # Top missing features in @ 37signals Basecamp Classic: 1) &amp;#039;in progress&amp;#039; task status, 2) notification on todos 3) 2…</description><pubDate>Sat, 28 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-27 on @techczech</title><link>https://techczech.net/2012/04/27/the-day-2012-04-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/27/the-day-2012-04-27-on-techczech/</guid><description>Wow, a Joss Whedon double bill: Cabin in the Woods and # Avengers From now on only He should be allowed to make action films. # Attending # Xerte Friday with focus on helping student with # dyslexia http://t.co/5oJYJ10C by # techdis # RT @ jpgreenwood : &amp;#039;Wikipedia and the Shifting Definition of &amp;#039;Expert&amp;#039;&amp;#039; from…</description><pubDate>Fri, 27 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-26 on @techczech</title><link>https://techczech.net/2012/04/26/the-day-2012-04-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/26/the-day-2012-04-26-on-techczech/</guid><description>&quot;The simple cognitive activity of ordering can be incredibly powerful in building essay skills.&quot; @ alistairm http://t.co/tU2akOBT # ukedchat # &quot;The way we give model answers is counterproductive..Give them out scrambled..students order&quot; says @ alistairm http://t.co/tU2akOBT # ukedchat # &quot;We need to give students incomplete things to involve them in the process of learning!&quot; says…</description><pubDate>Thu, 26 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-04-26</title><link>https://techczech.net/2012/04/26/twitter-weekly-updates-for-2012-04-26/</link><guid isPermaLink="true">https://techczech.net/2012/04/26/twitter-weekly-updates-for-2012-04-26/</guid><description>&quot;The simple cognitive activity of ordering can be incredibly powerful in building essay skills.&quot; @ alistairm http://t.co/tU2akOBT # ukedchat # &quot;The way we give model answers is counterproductive..Give them out scrambled..students order&quot; says @ alistairm http://t.co/tU2akOBT # ukedchat # &quot;We need to give students incomplete things to involve them in the process of learning!&quot; says…</description><pubDate>Thu, 26 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-25 on @techczech</title><link>https://techczech.net/2012/04/25/the-day-2012-04-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/25/the-day-2012-04-25-on-techczech/</guid><description>RT @ nebutron : RT @ bonniegrrl : Fantasy Novel Covers Reenacted by a Normal Dude in Denim Shorts http://t.co/qorTeigG # VaginalFantasy #feminism # BTW: I don&amp;#039;t actually believe @ klout measures anything real but it&amp;#039;s an interesting example of oft-ignored group maintenance strategies. # I gave @ kerim +K about Anthropology on @ klout…</description><pubDate>Wed, 25 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-23 on @techczech</title><link>https://techczech.net/2012/04/23/the-day-2012-04-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/23/the-day-2012-04-23-on-techczech/</guid><description>Free # webinar this Thurs &quot;Alternative approaches to supporting dyslexic learners in developing exam skills&quot; http://t.co/DSKV4Uii # dyslexia # Dropbox Sharing Gets Easier with Direct Links to Anything http://t.co/RgEgP8KI &amp;lt; @ dropbox Still can&amp;#039;t share subfolders w different groups # &quot;It is the nature of blindness that one relies on their memory extensively.&quot; http://t.co/iPqSUyzi #…</description><pubDate>Mon, 23 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-22 on @techczech</title><link>https://techczech.net/2012/04/22/the-day-2012-04-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/22/the-day-2012-04-22-on-techczech/</guid><description>I&amp;#039;ve just personalized @ SwiftKey X for Android with my Twitter posts! Get it free at http://t.co/LXP4PtYR # Powered by Twitter Tools</description><pubDate>Sun, 22 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-21 on @techczech</title><link>https://techczech.net/2012/04/21/the-day-2012-04-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/21/the-day-2012-04-21-on-techczech/</guid><description>It is amazing how supposedly upmarket hotels offering complimentary this and that still overcharge you on unflattering wifi. @ holidayinn # Khan Academy Partners Up With 23andMe To Make Learning About Genetics Fun http://t.co/qq80AJpC # Powered by Twitter Tools</description><pubDate>Sat, 21 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-19 on @techczech</title><link>https://techczech.net/2012/04/19/the-day-2012-04-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/19/the-day-2012-04-19-on-techczech/</guid><description># mooc in the news http://t.co/B4B4Jmfw # edchat</description><pubDate>Thu, 19 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-04-19</title><link>https://techczech.net/2012/04/19/twitter-weekly-updates-for-2012-04-19/</link><guid isPermaLink="true">https://techczech.net/2012/04/19/twitter-weekly-updates-for-2012-04-19/</guid><description># mooc in the news http://t.co/B4B4Jmfw # edchat</description><pubDate>Thu, 19 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-18 on @techczech</title><link>https://techczech.net/2012/04/18/the-day-2012-04-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/18/the-day-2012-04-18-on-techczech/</guid><description>Can&amp;#039;t believe I have to wait till October for the next Joe Abercrombie book. Trailer not enough to tide me over. http://t.co/EPnSaLLX # Just posted a photo http://t.co/XatuswDp # Powered by Twitter Tools</description><pubDate>Wed, 18 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-17 on @techczech</title><link>https://techczech.net/2012/04/17/the-day-2012-04-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/17/the-day-2012-04-17-on-techczech/</guid><description>Cybercrime loss estimates about as reliable as piracy estimates - http://t.co/0t1kNFHs # Twitter introduces Innovators Patent Agreement, vows to not abuse patent system http://t.co/hz2Ua35Y # patents # Finally I know why YouTube was invented. A place for all videos to play second fiddle to @ FeliciaDay &amp;#039;s The Flog http://t.co/9HWPqzKF # Powered by Twitter Tools</description><pubDate>Tue, 17 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-16 on @techczech</title><link>https://techczech.net/2012/04/16/the-day-2012-04-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/16/the-day-2012-04-16-on-techczech/</guid><description>Sadly @ readwriteweb can&amp;#039;t tell grammar from spelling from nonsense &amp;gt; &quot;12 Deadly Grammatical Errors Startups Must Avoid&quot; http://t.co/4M9woAPQ # http://t.co/1hYJ5QVS is an advanced # drupal site # drupal_ldn</description><pubDate>Mon, 16 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-15 on @techczech</title><link>https://techczech.net/2012/04/15/the-day-2012-04-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/15/the-day-2012-04-15-on-techczech/</guid><description>Just learned something new about # CSS from @ emilylewis on @ StandardsSherpa in &quot;What’s Your CSS Style?&quot; http://t.co/l595Iaeq # sherpa18 # Empiricism is a heuristic but not a hermeneutic. I reckon. # What a treat of analysis and making the past contemporary by John Lanchester. A must read: &quot;Marx at 193&quot; http://t.co/59CbBeES # Fun…</description><pubDate>Sun, 15 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-14 on @techczech</title><link>https://techczech.net/2012/04/14/the-day-2012-04-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/14/the-day-2012-04-14-on-techczech/</guid><description>Finally, @ Google Currents launches in UK, only for me to find out, it has no text # accessibility options &amp; Reader sync. http://t.co/B9MHBqea # Great post on Accessible infographics by @ christhroup http://t.co/kJfk0swT # accessibility We need more discussion of this growing info genre # Just realized I have a @ tumblr log with…</description><pubDate>Sat, 14 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-13 on @techczech</title><link>https://techczech.net/2012/04/13/the-day-2012-04-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/13/the-day-2012-04-13-on-techczech/</guid><description>A selection of presentations from the Ireland &amp; UK Moot http://t.co/HfZmfekL # mootieuk12 # # Badges Go To Graduate School http://t.co/yACqRDxs # edtech # Powered by Twitter Tools</description><pubDate>Fri, 13 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>5 UX Improvements Moodle needs desperately</title><link>https://techczech.net/2012/04/12/5-ux-improvements-moodle-needs-desperately/</link><guid isPermaLink="true">https://techczech.net/2012/04/12/5-ux-improvements-moodle-needs-desperately/</guid><description>I talked about some Moodle UX problems on the admin side . These are some student facing UX improvements that would make the world a better place. 1. Better course navigation: No scroll of death There really isn&apos;t much more to say. Get rid of the scroll of death. There is simply no instance where…</description><pubDate>Thu, 12 Apr 2012 00:00:00 GMT</pubDate><category>Moodle</category><category>OpEd</category><category>Tips and Guides</category><category>Using ICT</category><category>Assistive technology</category><category>Educational software</category><category>Educational technology</category><category>Google</category><category>Moodle</category><category>Twitter</category><category>usability</category><category>UX</category></item><item><title>The day  2012-04-12 on @techczech</title><link>https://techczech.net/2012/04/12/the-day-2012-04-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/12/the-day-2012-04-12-on-techczech/</guid><description>@ christhroup You should start a discussion on http://t.co/MWxXEfwk . in reply to christhroup # @ christhroup Very well done. Only advantage of a full graphic I can think of is control over print outcomes + ability to set as wallpaper. in reply to christhroup # The ultimate email auto-response - http://t.co/LH3CT5SY # New on…</description><pubDate>Thu, 12 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-04-12</title><link>https://techczech.net/2012/04/12/twitter-weekly-updates-for-2012-04-12/</link><guid isPermaLink="true">https://techczech.net/2012/04/12/twitter-weekly-updates-for-2012-04-12/</guid><description>@ christhroup You should start a discussion on http://t.co/MWxXEfwk . in reply to christhroup # @ christhroup Very well done. Only advantage of a full graphic I can think of is control over print outcomes + ability to set as wallpaper. in reply to christhroup # The ultimate email auto-response - http://t.co/LH3CT5SY # New on…</description><pubDate>Thu, 12 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-11 on @techczech</title><link>https://techczech.net/2012/04/11/the-day-2012-04-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/11/the-day-2012-04-11-on-techczech/</guid><description>@ christhroup It has a fully accessible text-only equivalent underneath. The alt tag on the graphic points there. in reply to christhroup # Infographic all designers who care about creating accessible web pages should have on their wall http://t.co/Wd44tcKC # Accessibility #edtech # Most victims of violent crime personally know the perpetrator. Why aren&amp;#039;t we…</description><pubDate>Wed, 11 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>5 Moodle 2 features that waste admin time</title><link>https://techczech.net/2012/04/10/5-moodle-2-features-that-waste-admin-time/</link><guid isPermaLink="true">https://techczech.net/2012/04/10/5-moodle-2-features-that-waste-admin-time/</guid><description>Moodle 2 has introduced some useful features that make administration easier. The search admin option, docking, AJAXified search of user lists, permissions setting, etc. But at the same time, it left important things out and/or made others more difficult. Some of these must be through inattention and some through making assumptions about how Moodle is…</description><pubDate>Tue, 10 Apr 2012 00:00:00 GMT</pubDate><category>Moodle</category><category>OpEd</category><category>Tips and Guides</category><category>Using ICT</category><category>Educational software</category><category>Educational technology</category><category>Moodle</category><category>usability</category><category>UX</category></item><item><title>The day  2012-04-10 on @techczech</title><link>https://techczech.net/2012/04/10/the-day-2012-04-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/10/the-day-2012-04-10-on-techczech/</guid><description>Finally an # edreform slogan I can get behind: &quot;Minimally invasive education&quot; http://t.co/lIAq2TRv # ed # Just voted for http://t.co/mPEARD3R to give # Moodle Clean URLs a.k.a. User Friendly URLs # mootrack Add your voice if you want this feature! # New on http://t.co/KXMUl7rM : 5 Moodle 2 features that waste admin time http://t.co/nrwt0UiB #…</description><pubDate>Tue, 10 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-09 on @techczech</title><link>https://techczech.net/2012/04/09/the-day-2012-04-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/09/the-day-2012-04-09-on-techczech/</guid><description>Just joined http://t.co/vT5XQQMR # PLN # B.D.A. Technology Conference http://t.co/8LACt9Rv # edtech #dyslexia # Worth reading &quot;Forty years ago, in both America and Iran, religion was brought into politics as a revolutionary force&quot; http://t.co/TU7KhBy9 # So glad I found &quot;Genealogy of Religion&quot; blog by @ Originus1 http://t.co/9ZQvGKfA What was I thinking not reading it for…</description><pubDate>Mon, 09 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>10 (now 12) Things I learned at the Moodle Moot 2012</title><link>https://techczech.net/2012/04/08/10-things-i-learned-at-the-moodle-moot-2012/</link><guid isPermaLink="true">https://techczech.net/2012/04/08/10-things-i-learned-at-the-moodle-moot-2012/</guid><description>Here are a few reflections on Moodle and Moodle Moot. UPDATE: I&apos;ve remembered 2 more things I&apos;ve learned: using SoundCloud to share audio feedback and the proposed Appification of Moodle addons. Find these new lessons at the bottom of the page . A. General Lessons about Moodle 1. Community participation matters I need to be…</description><pubDate>Sun, 08 Apr 2012 00:00:00 GMT</pubDate><category>Events</category><category>Moodle</category><category>OpEd</category><category>Using ICT</category><category>Assistive technology</category><category>Davo Smith</category><category>e-learning</category><category>Educational technology</category><category>Gavin Hendrick</category><category>Helen Foster</category><category>James Clay</category><category>Martin Dougiamas</category><category>Michelle Moore</category><category>Moodle</category><category>online videos</category><category>Stuart Lamour</category><category>Twitter</category><category>Uservoice</category></item><item><title>The day  2012-04-08 on @techczech</title><link>https://techczech.net/2012/04/08/the-day-2012-04-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/08/the-day-2012-04-08-on-techczech/</guid><description>How Secure is Your Password? http://t.co/XCI4wC9d # Crash Course: Entertaining YouTube Courses On History &amp; Biology http://t.co/SCEXvmJk # rsync, what is it good for? Absolutely everything! If you want transfer files between servers. Or back up! http://t.co/0twWEYuL # edtech # New on http://t.co/KXMUl7rM : 10 Things I learned at the Moodle Moot 2012 http://t.co/t3sy10jr #…</description><pubDate>Sun, 08 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-07 on @techczech</title><link>https://techczech.net/2012/04/07/the-day-2012-04-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/07/the-day-2012-04-07-on-techczech/</guid><description>Initially, I rather liked the Kobo touch interface. But reading a book on it has proved to be a hit and miss experience. Kindle buttons FTW. # Is it just me or is @ recaptcha getting harder? It now takes me 2-3 tries to get one I can decipher. # Thinking about switching to a…</description><pubDate>Sat, 07 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-06 on @techczech</title><link>https://techczech.net/2012/04/06/the-day-2012-04-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/06/the-day-2012-04-06-on-techczech/</guid><description>A Roundup Of 5 Online Video Dictionaries You Can Have Fun With Or Use To Look Up Words http://t.co/c6yYRg4K # engchat #ellchat # After trying an SLR, I have an urge for a better # camera . Can&amp;#039;t decide between Fujifilm X10 vs Olympus PEN E-PL1 http://t.co/bZE0jo6y Help! # Galaxy S3 was to be my…</description><pubDate>Fri, 06 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-04-05</title><link>https://techczech.net/2012/04/05/twitter-weekly-updates-for-2012-04-05/</link><guid isPermaLink="true">https://techczech.net/2012/04/05/twitter-weekly-updates-for-2012-04-05/</guid><description>Google’s ‘Project Glass’ Augmented Reality Glasses Are Real And In Testing - http://t.co/M11MAuQg &amp;lt; sign me up for rev 2 # edtech # 2600 Volume 1 released as a DRM-free ebook: phreak like it&amp;#039;s 1984 - http://t.co/hpJLweIG # I propose hashtag # mootracker for sharing development issues that need # Moodle community love per @…</description><pubDate>Thu, 05 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-04 on @techczech</title><link>https://techczech.net/2012/04/04/the-day-2012-04-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/04/the-day-2012-04-04-on-techczech/</guid><description>Google’s ‘Project Glass’ Augmented Reality Glasses Are Real And In Testing - http://t.co/M11MAuQg &amp;lt; sign me up for rev 2 # edtech # 2600 Volume 1 released as a DRM-free ebook: phreak like it&amp;#039;s 1984 - http://t.co/hpJLweIG # I propose hashtag # mootracker for sharing development issues that need # Moodle community love per @…</description><pubDate>Wed, 04 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-03 on @techczech</title><link>https://techczech.net/2012/04/03/the-day-2012-04-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/03/the-day-2012-04-03-on-techczech/</guid><description>@ dancohen Thanks. People forget that # opencontent is a requirement for # accessibility Walled gardens keep people out in many ways. in reply to dancohen # @ CraigTaylor74 Pretty much. And if you embed them, the source link is not accessible to share. in reply to CraigTaylor74 # Agree with @ lifehacker that The…</description><pubDate>Tue, 03 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-04-02 on @techczech</title><link>https://techczech.net/2012/04/02/the-day-2012-04-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/02/the-day-2012-04-02-on-techczech/</guid><description># DRM on books is eventually a problem for everyone and casual sharing should be encouraged not decried by publishers! http://t.co/3MS6EyW4 # It seems that every time I have baba ghanoush I hear the # Habibi (darling) song. From Amman to Dublin. # happymemories # What a hack: Store Your Shoes in a Hotel Safe…</description><pubDate>Mon, 02 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Five features of Moodle 2 that take up most of our support time</title><link>https://techczech.net/2012/04/02/five-features-of-moodle-2-that-take-up-most-of-our-support-time/</link><guid isPermaLink="true">https://techczech.net/2012/04/02/five-features-of-moodle-2-that-take-up-most-of-our-support-time/</guid><description>This is my second proposal for a Pecha Kucha session at this year&apos;s Moodle Moot . There are five things in Moodle 2 that take up most of our support time. It&apos;s been over a year for us and they are still polluting our support system. I realize that I should have engaged on these…</description><pubDate>Mon, 02 Apr 2012 00:00:00 GMT</pubDate><category>Events</category><category>Moodle</category><category>OpEd</category><category>Educational software</category><category>Moodle</category><category>#mootieuk12</category></item><item><title>4 things you thought you knew about screen readers!</title><link>https://techczech.net/2012/04/02/pecha-kucha-4-things-you-thought-you-knew-about-screen-readers/</link><guid isPermaLink="true">https://techczech.net/2012/04/02/pecha-kucha-4-things-you-thought-you-knew-about-screen-readers/</guid><description>This is my proposal for a Pecha Kucha session at the MoodleMoot Dublin 2012 . It barely scratches the surface but should be a good start for people who care about accessibility. If you only have time to read one post today, skip this one and nothing read this great post explaining screen readers in…</description><pubDate>Mon, 02 Apr 2012 00:00:00 GMT</pubDate><category>Accessibility</category><category>Events</category><category>Moodle</category><category>OpEd</category><category>Tips and Guides</category><category>Alt attribute</category><category>Assistive technology</category><category>Moodle</category><category>#mootieuk12</category><category>Screen reader</category></item><item><title>The day  2012-04-01 on @techczech</title><link>https://techczech.net/2012/04/01/the-day-2012-04-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/04/01/the-day-2012-04-01-on-techczech/</guid><description>Very impressed with the WiFi speed at the # mootieuk12 venue. Will be interested to see what a couple of hundred Moodlers will do to it. # @ moodlehelen Is the pub downtown Dublin or near the hotel? About to head down for some sightseeing and lunch. in reply to moodlehelen # Landed in Dublin…</description><pubDate>Sun, 01 Apr 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-31 on @techczech</title><link>https://techczech.net/2012/03/31/the-day-2012-03-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/31/the-day-2012-03-31-on-techczech/</guid><description>C’mon sisters! Speak out! http://t.co/CBsejCim &amp;lt; Women in academia, the lost voice? # &quot;given a supercomputer, a sufficiently motivated analyst might observe almost any imaginable pattern of results&quot; http://t.co/TwzlMTOp # I&amp;#039;ve been inadvertently taking the Openness in Education course for a year. Now I just have to earn the # badges http://t.co/YB4xmvLW # ioe12 #…</description><pubDate>Sat, 31 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-30 on @techczech</title><link>https://techczech.net/2012/03/30/the-day-2012-03-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/30/the-day-2012-03-30-on-techczech/</guid><description>@ academicdave @techsoc I fully subscribe to the key metaphor of social contract and the commons. But don&amp;#039;t think this is at all new to web. in reply to academicdave # &quot;increasing portions of our sociality are now conducted in privately-owned spaces&quot; @ techsoc &amp;lt; This is not new! http://t.co/T478cckr # @ academicdave No, I…</description><pubDate>Fri, 30 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-29 on @techczech</title><link>https://techczech.net/2012/03/29/the-day-2012-03-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/29/the-day-2012-03-29-on-techczech/</guid><description>How Turning My To-Dos into a Story Boosted My Memory and Solved My Procrastination Problem [Productivity] http://t.co/9MBlIM4k # Last few places on &quot;Technology for Print Disabilities in the Classroom - Open Training Day - London&quot; http://t.co/wvu3cHTD # accessibility # Powered by Twitter Tools</description><pubDate>Thu, 29 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-03-29</title><link>https://techczech.net/2012/03/29/twitter-weekly-updates-for-2012-03-29/</link><guid isPermaLink="true">https://techczech.net/2012/03/29/twitter-weekly-updates-for-2012-03-29/</guid><description>How Turning My To-Dos into a Story Boosted My Memory and Solved My Procrastination Problem [Productivity] http://t.co/9MBlIM4k # Last few places on &quot;Technology for Print Disabilities in the Classroom - Open Training Day - London&quot; http://t.co/wvu3cHTD # accessibility # Learning from @ schnitze about implementation tips for # responsive theme for # Drupal Omega http://t.co/3pHBNs4W…</description><pubDate>Thu, 29 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-28 on @techczech</title><link>https://techczech.net/2012/03/28/the-day-2012-03-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/28/the-day-2012-03-28-on-techczech/</guid><description>Learning from @ schnitze about implementation tips for # responsive theme for # Drupal Omega http://t.co/3pHBNs4W # rwd Lots to consider. # Attending @ acquia webinar on # responsive design and # Drupal I think this is the future of # accessibility http://t.co/GVrCtWJi # Powered by Twitter Tools</description><pubDate>Wed, 28 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-27 on @techczech</title><link>https://techczech.net/2012/03/27/the-day-2012-03-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/27/the-day-2012-03-27-on-techczech/</guid><description>Want to run a # MOOC for teacher tech education-but it needs long-term financial sustainability. Is there a business model? # edchat #ukedchat # Powered by Twitter Tools</description><pubDate>Tue, 27 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-26 on @techczech</title><link>https://techczech.net/2012/03/26/the-day-2012-03-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/26/the-day-2012-03-26-on-techczech/</guid><description>There&amp;#039;s always the danger of overclassifying but Laurrilard’s Conversational Framework can be useful. http://t.co/0XnLZgyB # edchat # Powered by Twitter Tools</description><pubDate>Mon, 26 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-24 on @techczech</title><link>https://techczech.net/2012/03/24/the-day-2012-03-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/24/the-day-2012-03-24-on-techczech/</guid><description>Google Docs really needs a Document Map, clickable ToC, Zoom and custom keyboard shortcuts to give 10% of productivity on desktop apps. # Powered by Twitter Tools</description><pubDate>Sat, 24 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-23 on @techczech</title><link>https://techczech.net/2012/03/23/the-day-2012-03-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/23/the-day-2012-03-23-on-techczech/</guid><description>&quot;Google Chrome takes lead from Internet Explorer&quot; http://t.co/wac6JfR3 &amp;lt; As an early Chrome adopter, all I can say is yay! # edtech # Kin Hubbard: &quot;A good listener is usually thinking about something else&quot; http://t.co/uwuGqGSY # quote # How Tech Will Transform the Traditional Classroom http://t.co/OdKDSSDT # edchat &amp;lt; Not! Love for the iPad makes…</description><pubDate>Fri, 23 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-22 on @techczech</title><link>https://techczech.net/2012/03/22/the-day-2012-03-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/22/the-day-2012-03-22-on-techczech/</guid><description>I liked a @ YouTube video http://t.co/XQvOIjBK The Ukulele Orchestra of Great Britain # Wonderful cover of Tequila on UKULELE &amp; MELODICA http://t.co/e9o2bDLd . Well worth a listen. # I liked a @ YouTube video http://t.co/jqJIs9KW UKULELE &amp; MELODICA - TEQUILA (THE CHAMPS) # TwBirthday of @ dominiklukes (my first Twitter account) is on 25…</description><pubDate>Thu, 22 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-03-22</title><link>https://techczech.net/2012/03/22/twitter-weekly-updates-for-2012-03-22/</link><guid isPermaLink="true">https://techczech.net/2012/03/22/twitter-weekly-updates-for-2012-03-22/</guid><description>I liked a @ YouTube video http://t.co/XQvOIjBK The Ukulele Orchestra of Great Britain # Wonderful cover of Tequila on UKULELE &amp; MELODICA http://t.co/e9o2bDLd . Well worth a listen. # I liked a @ YouTube video http://t.co/jqJIs9KW UKULELE &amp; MELODICA - TEQUILA (THE CHAMPS) # TwBirthday of @ dominiklukes (my first Twitter account) is on 25…</description><pubDate>Thu, 22 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-21 on @techczech</title><link>https://techczech.net/2012/03/21/the-day-2012-03-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/21/the-day-2012-03-21-on-techczech/</guid><description>I don&amp;#039;t need the # BPI A bit naive about past business models but much needed counterargument to copyright nonsense. http://t.co/EZPgbH7v # I love the model behind @ Duolingo - the pedagogy behind it isn&amp;#039;t nearly as hidebound as one might think. http://t.co/uVpeWGdb # engchat # Just had a look at our # Moodle 1GB…</description><pubDate>Wed, 21 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-20 on @techczech</title><link>https://techczech.net/2012/03/20/the-day-2012-03-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/20/the-day-2012-03-20-on-techczech/</guid><description>Economics now = Freudian psychology in the 1950s: More on the incoherence of “economics exceptionalism” http://t.co/QjZYigAl # Linguistic categories and neural systems - isomorphism fallacy explained - don&amp;#039;t look for adjectives in the brain http://t.co/Bd17XqXr # Powered by Twitter Tools</description><pubDate>Tue, 20 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-18 on @techczech</title><link>https://techczech.net/2012/03/18/the-day-2012-03-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/18/the-day-2012-03-18-on-techczech/</guid><description>Is there a good, open source alternative to # Moodle for online only teaching? More modern, light weight, with fewer # accessibility issues? # Powered by Twitter Tools</description><pubDate>Sun, 18 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-17 on @techczech</title><link>https://techczech.net/2012/03/17/the-day-2012-03-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/17/the-day-2012-03-17-on-techczech/</guid><description>Don&amp;#039;t get the fuss about the screen on # iPad3 Looks v nice but doesn&amp;#039;t not look &quot;printed on&quot;. Still attracts smudges and glare. # androidftw # Just finished this excellent intro to # WAI ARIA http://t.co/zULFNQMS &amp;gt; motivated to include the markup in all my new code for # accessibility # I have been…</description><pubDate>Sat, 17 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-16 on @techczech</title><link>https://techczech.net/2012/03/16/the-day-2012-03-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/16/the-day-2012-03-16-on-techczech/</guid><description>Rob Reid on Understanding Copyright Math http://t.co/yScGTiqW # Free training for # literacy and # dyslexia teachers in free technologies for text # accessibility Manchester 24/3 http://t.co/E3fRjsmY Pls RT # Free training for # literacy and # dyslexia teachers in free technologies for text # accessibility #Manchester 24/3 http://t.co/3rvnPiec Pls RT # Powered by Twitter…</description><pubDate>Fri, 16 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-03-15</title><link>https://techczech.net/2012/03/15/twitter-weekly-updates-for-2012-03-15/</link><guid isPermaLink="true">https://techczech.net/2012/03/15/twitter-weekly-updates-for-2012-03-15/</guid><description>Audio Recorder and Editor Audacity 2.0 Released http://t.co/OcLIQceH # edtech # Free training for # literacy and # dyslexia teachers in free technologies for text # accessibility Manchester 24/3 http://t.co/3rvnPiec Pls RT # Free # accessibility training in Manchester 24/3: Technology for Print Disabilities in the Classroom http://t.co/3rvnPiec # ukedchat Pls RT # &amp;#039;the &quot;bottom…</description><pubDate>Thu, 15 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-14 on @techczech</title><link>https://techczech.net/2012/03/14/the-day-2012-03-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/14/the-day-2012-03-14-on-techczech/</guid><description>Audio Recorder and Editor Audacity 2.0 Released http://t.co/OcLIQceH # edtech # Free training for # literacy and # dyslexia teachers in free technologies for text # accessibility Manchester 24/3 http://t.co/3rvnPiec Pls RT # Free # accessibility training in Manchester 24/3: Technology for Print Disabilities in the Classroom http://t.co/3rvnPiec # ukedchat Pls RT # &amp;#039;the &quot;bottom…</description><pubDate>Wed, 14 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-13 on @techczech</title><link>https://techczech.net/2012/03/13/the-day-2012-03-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/13/the-day-2012-03-13-on-techczech/</guid><description>The recording functionality in @ gotomeeting and @ gotowebinar on Windows 7 is appallingly unreliable. Bad sound quality + frequent crashes. # Powered by Twitter Tools</description><pubDate>Tue, 13 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-12 on @techczech</title><link>https://techczech.net/2012/03/12/the-day-2012-03-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/12/the-day-2012-03-12-on-techczech/</guid><description>Visit http://t.co/xbgzdlYk To Microlend $1 Million Of Reid Hoffman’s Money http://t.co/nKPi9HHJ # Powered by Twitter Tools</description><pubDate>Mon, 12 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-11 on @techczech</title><link>https://techczech.net/2012/03/11/the-day-2012-03-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/11/the-day-2012-03-11-on-techczech/</guid><description>Figure skating is one of the dullest sports I know but its # gender history is fascinating. http://t.co/mFN8bHxt # newbooks # Just found out @ camtasia doesn&amp;#039;t record multi-key keyboard shortcuts in Word 2007 and up and won&amp;#039;t let me enter them manually later. # edtech # Powered by Twitter Tools</description><pubDate>Sun, 11 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-10 on @techczech</title><link>https://techczech.net/2012/03/10/the-day-2012-03-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/10/the-day-2012-03-10-on-techczech/</guid><description>&quot;Ten More Grammar Myths, Debunked&quot; http://t.co/L4MPlqm7 &amp;lt; better late than never # ellchat # There are many good reasons to be skeptical of cognitive # psychology Here&amp;#039;s one of them: False-positives are a doddle. http://t.co/KQAoEJGG # To me &quot;The QWERTY effect&quot; was obvious nonsense but @ languagelog shows why with customary brilliance! http://t.co/OLpWlvHt # language…</description><pubDate>Sat, 10 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-09 on @techczech</title><link>https://techczech.net/2012/03/09/the-day-2012-03-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/09/the-day-2012-03-09-on-techczech/</guid><description>Watch out for the psychologist&amp;#039;s fallacy: &quot;Are babies super? Performance, competence and infant habituation&quot; http://t.co/pBigN2Ui # edchat # Powered by Twitter Tools</description><pubDate>Fri, 09 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-08 on @techczech</title><link>https://techczech.net/2012/03/08/the-day-2012-03-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/08/the-day-2012-03-08-on-techczech/</guid><description>What did you do to celebrate the International Women&amp;#039;s Day? Other than a bit of conversational awareness raising. I did little. Sorry. # IWD # Strange academic women - great post to celebrate the international women&amp;#039;s day. http://t.co/oZnslISI # iwd # Is there such a thing as postmodern bilingual education? http://t.co/nXiIulNt # ditto #ellchat #…</description><pubDate>Thu, 08 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-03-08</title><link>https://techczech.net/2012/03/08/twitter-weekly-updates-for-2012-03-08/</link><guid isPermaLink="true">https://techczech.net/2012/03/08/twitter-weekly-updates-for-2012-03-08/</guid><description>What did you do to celebrate the International Women&amp;#039;s Day? Other than a bit of conversational awareness raising. I did little. Sorry. # IWD # Strange academic women - great post to celebrate the international women&amp;#039;s day. http://t.co/oZnslISI # iwd # Is there such a thing as postmodern bilingual education? http://t.co/nXiIulNt # ditto #ellchat #…</description><pubDate>Thu, 08 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-07 on @techczech</title><link>https://techczech.net/2012/03/07/the-day-2012-03-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/07/the-day-2012-03-07-on-techczech/</guid><description>Thanks a bunch to @ lifehacker for the tip: &quot;Separate Bananas to Slow Down Their Ripening&quot; http://t.co/48XAlXs7 # til # Middle aged hunter gatherers are the most productive (peaking at 45)-life expectancy at 18 going into 60s. # STW #TIL cf http://t.co/rS3f6B5g # Powered by Twitter Tools</description><pubDate>Wed, 07 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-06 on @techczech</title><link>https://techczech.net/2012/03/06/the-day-2012-03-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/06/the-day-2012-03-06-on-techczech/</guid><description>Great post on evaluating evidence for &quot;neuroscientific interventions for # dyslexia quot; http://t.co/1pxNydpu # edchat # Who wouldn&amp;#039;t want to go to a conference on the &quot;The Meaning of P&quot;? http://t.co/OCeC5RTd # linguistics # The only way toward long-term reproducible scholarship is # OpenAccess to data and publications. Make TESOL Open! http://t.co/mDNKOSJe # oer #…</description><pubDate>Tue, 06 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-05 on @techczech</title><link>https://techczech.net/2012/03/05/the-day-2012-03-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/05/the-day-2012-03-05-on-techczech/</guid><description>“All Models are Right, Most are Useless” http://t.co/jagMxGG3 # A much more in-depth look at # badges NYT eat your heart out. http://t.co/7K0b3QcY # edchat # Can you endorse me for &quot;Linguistics&quot;? http://t.co/RAjhW2yb # Nice to see NYT addressing educational badges - too bad they assume that they will simply be a type of exams…</description><pubDate>Mon, 05 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-04 on @techczech</title><link>https://techczech.net/2012/03/04/the-day-2012-03-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/04/the-day-2012-03-04-on-techczech/</guid><description>I think we need a new category of &quot;sneakware&quot; = The junk free software tries to sneak on our machine during install. # edtech #sneakware # The Onion as always doesn&amp;#039;t fail to do the right thing. http://t.co/UvTVuHaF # Powered by Twitter Tools</description><pubDate>Sun, 04 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-03 on @techczech</title><link>https://techczech.net/2012/03/03/the-day-2012-03-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/03/the-day-2012-03-03-on-techczech/</guid><description>Meta Ed Tech Journal is a great example of an academic mashup - we should be seeing more of that. http://t.co/qAopQ5ge # Powered by Twitter Tools</description><pubDate>Sat, 03 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-02 on @techczech</title><link>https://techczech.net/2012/03/02/the-day-2012-03-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/02/the-day-2012-03-02-on-techczech/</guid><description>Hackers Will Replace Terrorists as Top Threat, Says FBI &amp;lt; What utter nonsense! http://t.co/TiDBvGZt # I&amp;#039;m using @ assembla &amp;#039;s free public workspaces with ticket, collaboration, repository, and management tools. http://t.co/QeWjwnj0 # 5 easy tips for accessible CSS everyone should use on all their sites! They make all the difference! http://t.co/ecB7LsbF # accessibility # Freakonomics…</description><pubDate>Fri, 02 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-03-01 on @techczech</title><link>https://techczech.net/2012/03/01/the-day-2012-03-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/03/01/the-day-2012-03-01-on-techczech/</guid><description>Anybody interested in bilingualism and language learning should listen to this Sinica podcast on Learning Chinese http://t.co/JKlchwnH # 6 New Gadgets Helping People With Disabilities http://t.co/R3vvcyqC # accessibility # Big content shows its true colours in France. But the idea of reducing copyright length is not without merrit. http://t.co/vWWmC8Bi # @ sweetaswhisky Good computer use…</description><pubDate>Thu, 01 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-03-01</title><link>https://techczech.net/2012/03/01/twitter-weekly-updates-for-2012-03-01/</link><guid isPermaLink="true">https://techczech.net/2012/03/01/twitter-weekly-updates-for-2012-03-01/</guid><description>Anybody interested in bilingualism and language learning should listen to this Sinica podcast on Learning Chinese http://t.co/JKlchwnH # 6 New Gadgets Helping People With Disabilities http://t.co/R3vvcyqC # accessibility # Big content shows its true colours in France. But the idea of reducing copyright length is not without merrit. http://t.co/vWWmC8Bi # @ sweetaswhisky Good computer use…</description><pubDate>Thu, 01 Mar 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-29 on @techczech</title><link>https://techczech.net/2012/02/29/the-day-2012-02-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/29/the-day-2012-02-29-on-techczech/</guid><description>Google aids # accessibility with ChromeVox reader, better YouTube captions and more -- Engadget http://t.co/j4eyPOjK # @ Sciencematters Use keyboard shortcuts, headings in Word, parse a url, kill a process... Rules of the road for the PC... 50 things for all! in reply to Sciencematters # @ sweetaswhisky Both. But mainly curriculum designers. in reply…</description><pubDate>Wed, 29 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-28 on @techczech</title><link>https://techczech.net/2012/02/28/the-day-2012-02-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/28/the-day-2012-02-28-on-techczech/</guid><description>Review: ForumNG for Moodle 2 http://t.co/DGabuUyD # @ michaelerard Interesting, I&amp;#039;m in the UK but use the US account. Amazon&amp;#039;s too clever for your own good:) in reply to michaelerard # Powered by Twitter Tools</description><pubDate>Tue, 28 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-27 on @techczech</title><link>https://techczech.net/2012/02/27/the-day-2012-02-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/27/the-day-2012-02-27-on-techczech/</guid><description>@ michaelerard Too bad &quot;Babel no more&quot; is not available on the Kindle - was ready to buy.... # I sure hope Ubuntu for Android is the future of computing. http://t.co/82MrvPwr # edtech #mwc2012 # Powered by Twitter Tools</description><pubDate>Mon, 27 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-26 on @techczech</title><link>https://techczech.net/2012/02/26/the-day-2012-02-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/26/the-day-2012-02-26-on-techczech/</guid><description>We don&amp;#039;t talk enough abt # OpenSource hardware: &quot;Five open source hardware projects tht could change the world&quot; http://t.co/jjPPuUhx # edtech # Create QR Codes With QR-Gen http://t.co/PdoWcdKL # Gnostic crash blossom http://t.co/xUhTP05V # Being descended from Confucius: &quot; Genealogy does not mean genes.&quot; http://t.co/YYYDiyVa # Babel No More: The Search for the World&amp;#039;s Most…</description><pubDate>Sun, 26 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-25 on @techczech</title><link>https://techczech.net/2012/02/25/the-day-2012-02-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/25/the-day-2012-02-25-on-techczech/</guid><description>ASUS EeePad # Transformer Ice Cream Sandwich update now available! http://t.co/beET90U7 # ICS &amp;lt; Just installed # Powered by Twitter Tools</description><pubDate>Sat, 25 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-23 on @techczech</title><link>https://techczech.net/2012/02/23/the-day-2012-02-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/23/the-day-2012-02-23-on-techczech/</guid><description>Open Knowledge Releases Open Data Handbook 1.0 http://t.co/g9QzlBJF # Powered by Twitter Tools</description><pubDate>Thu, 23 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-02-23</title><link>https://techczech.net/2012/02/23/twitter-weekly-updates-for-2012-02-23/</link><guid isPermaLink="true">https://techczech.net/2012/02/23/twitter-weekly-updates-for-2012-02-23/</guid><description>Open Knowledge Releases Open Data Handbook 1.0 http://t.co/g9QzlBJF # Encrypt Your Dropbox Files With BoxCryptor http://t.co/mZimSi3o # Microsoft overhauls language support in Windows 8 for International mother language day http://t.co/VcpOYPkQ # engchat # @ andytgeezer Sorry, I don&amp;#039;t think the project has a URL yet - will tweet when I know more. in reply to…</description><pubDate>Thu, 23 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-22 on @techczech</title><link>https://techczech.net/2012/02/22/the-day-2012-02-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/22/the-day-2012-02-22-on-techczech/</guid><description>Encrypt Your Dropbox Files With BoxCryptor http://t.co/mZimSi3o # Powered by Twitter Tools</description><pubDate>Wed, 22 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-21 on @techczech</title><link>https://techczech.net/2012/02/21/the-day-2012-02-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/21/the-day-2012-02-21-on-techczech/</guid><description>Microsoft overhauls language support in Windows 8 for International mother language day http://t.co/VcpOYPkQ # engchat # Powered by Twitter Tools</description><pubDate>Tue, 21 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-17 on @techczech</title><link>https://techczech.net/2012/02/17/the-day-2012-02-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/17/the-day-2012-02-17-on-techczech/</guid><description>@ andytgeezer Sorry, I don&amp;#039;t think the project has a URL yet - will tweet when I know more. in reply to andytgeezer # If ever education needed a motto, it couldn&amp;#039;t do much better than: &quot;We shall not cease from exploration....&quot; http://t.co/QKAugkhj # edchat # The present feels at the same time too complicated…</description><pubDate>Fri, 17 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-02-16</title><link>https://techczech.net/2012/02/16/twitter-weekly-updates-for-2012-02-16/</link><guid isPermaLink="true">https://techczech.net/2012/02/16/twitter-weekly-updates-for-2012-02-16/</guid><description>Shame that @ NIACE chose to use a closed inaccessible approach to e-book publishing: DRM, same price as print... http://t.co/yYwIGO85 # edtech # Amazon made the # kindle less useful for # literacy by removing text to speech. # edtech # Kindles in the literacy classroom increased confidence in a @ Jisc project. # ereaders…</description><pubDate>Thu, 16 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-15 on @techczech</title><link>https://techczech.net/2012/02/15/the-day-2012-02-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/15/the-day-2012-02-15-on-techczech/</guid><description>Shame that @ NIACE chose to use a closed inaccessible approach to e-book publishing: DRM, same price as print... http://t.co/yYwIGO85 # edtech # Amazon made the # kindle less useful for # literacy by removing text to speech. # edtech # Kindles in the literacy classroom increased confidence in a @ Jisc project. # ereaders…</description><pubDate>Wed, 15 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-14 on @techczech</title><link>https://techczech.net/2012/02/14/the-day-2012-02-14-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/02/14/the-day-2012-02-14-on-techczech-2/</guid><description>Great guide on Using NVDA to Evaluate Web Accessibility. What every web developer should know. http://t.co/AvZoGny1 # accessibility # @ Mathew30 Not something we&amp;#039;ve done but I know you can add multimedia to ePub3. But not all readers will display it. http://t.co/AtXfj9Sj . in reply to Mathew30 # Powered by Twitter Tools</description><pubDate>Tue, 14 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-14 on @techczech</title><link>https://techczech.net/2012/02/14/the-day-2012-02-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/14/the-day-2012-02-14-on-techczech/</guid><description>Great guide on Using NVDA to Evaluate Web Accessibility. What every web developer should know. http://t.co/AvZoGny1 # accessibility # @ Mathew30 Not something we&amp;#039;ve done but I know you can add multimedia to ePub3. But not all readers will display it. http://t.co/AtXfj9Sj . in reply to Mathew30 # Powered by Twitter Tools</description><pubDate>Tue, 14 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-13 on @techczech</title><link>https://techczech.net/2012/02/13/the-day-2012-02-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/13/the-day-2012-02-13-on-techczech/</guid><description>@ ajlyon Yes, I meant non-Zotero storage - WebDAV. in reply to ajlyon # Powered by Twitter Tools</description><pubDate>Mon, 13 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-12 on @techczech</title><link>https://techczech.net/2012/02/12/the-day-2012-02-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/12/the-day-2012-02-12-on-techczech/</guid><description>finished The Salt-Stained Book (Strong Winds Trilogy) by Julia Jones and Claudia Myatt http://t.co/QZUoBH0T # Kindle # @ ajlyon Great. Support for external storage is 1 on my list. Basic editing for library work. Some direct repository search or Dolphin plugin in reply to ajlyon # Powered by Twitter Tools</description><pubDate>Sun, 12 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-11 on @techczech</title><link>https://techczech.net/2012/02/11/the-day-2012-02-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/11/the-day-2012-02-11-on-techczech/</guid><description>&quot;Educators Lagging in Teaching Higher-Order Skills&quot;&amp;lt;Lagging behind who or when? How about uncritical theorists? http://t.co/vq0D1JgO # edchat # Wow! Some students can text faster than type and other essential facts about # DititalNatives http://t.co/KKZsQqmd # edchat #TIL # ukedchat # Powered by Twitter Tools</description><pubDate>Sat, 11 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-10 on @techczech</title><link>https://techczech.net/2012/02/10/the-day-2012-02-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/10/the-day-2012-02-10-on-techczech/</guid><description>@ GoToMeeting No, just screen sharing - mostly to save bandwidth on one end. But I find webcams unnecessary for meeting people you know well. in reply to GoToMeeting # Just finished a 6 hour @ GoToMeeting session (with a few breaks) - feel it achieved as much as would have the in-person meeting it…</description><pubDate>Fri, 10 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-09 on @techczech</title><link>https://techczech.net/2012/02/09/the-day-2012-02-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/09/the-day-2012-02-09-on-techczech/</guid><description>@ tomwhitby We stop overpreparing teachers &amp; give them more opportunities for professional development recognized as part of the job. # edchat in reply to tomwhitby # Was almost envious of the # Zotero iPad app - doesn&amp;#039;t seem to do much better than Zandy, the Android app. http://t.co/3ej886ED # edtech # Powered by Twitter…</description><pubDate>Thu, 09 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-02-09</title><link>https://techczech.net/2012/02/09/twitter-weekly-updates-for-2012-02-09/</link><guid isPermaLink="true">https://techczech.net/2012/02/09/twitter-weekly-updates-for-2012-02-09/</guid><description>@ tomwhitby We stop overpreparing teachers &amp; give them more opportunities for professional development recognized as part of the job. # edchat in reply to tomwhitby # Was almost envious of the # Zotero iPad app - doesn&amp;#039;t seem to do much better than Zandy, the Android app. http://t.co/3ej886ED # edtech # @ C4LPT @realwplearn…</description><pubDate>Thu, 09 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-08 on @techczech</title><link>https://techczech.net/2012/02/08/the-day-2012-02-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/08/the-day-2012-02-08-on-techczech/</guid><description>@ C4LPT @realwplearn How do we help Facebook to not hold our data (eg social graph) hostage? We need federated networks, not centralized. in reply to C4LPT # @ C4LPT @realwplearn We need institutions where organizations could come together around sharing. Reduce business metaphors of charity. in reply to C4LPT # @ C4LPT @realwplearn People…</description><pubDate>Wed, 08 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-06 on @techczech</title><link>https://techczech.net/2012/02/06/the-day-2012-02-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/06/the-day-2012-02-06-on-techczech/</guid><description># TIL &amp;#039;potable&amp;#039; has nothing to do with &amp;#039;pots&amp;#039;. http://t.co/9thjACVe # ellchat # @ mudrd8mz What else does # Moodle offer? All VLEs do: share content, organize students, accept/grade assignments/quizzes, have discussions. in reply to mudrd8mz # Excited to find out about Game-based Learning research project: http://t.co/EnqqJKDS # edchat #edtech # 1% of Nothing is…</description><pubDate>Mon, 06 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-05 on @techczech</title><link>https://techczech.net/2012/02/05/the-day-2012-02-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/05/the-day-2012-02-05-on-techczech/</guid><description>How common can the core be if all rights are reserved for Common Core Inc. who also holds the trademark!? http://t.co/KZEe0R8P # edreform #cc # @ dailydenouement &quot;Tinkering Toward Utopia&quot; is a good example of persistence of educational structures http://t.co/ccJTKbeR # ukedchat in reply to dailydenouement # @ dailydenouement &quot;A Class Divided&quot; is a good…</description><pubDate>Sun, 05 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-04 on @techczech</title><link>https://techczech.net/2012/02/04/the-day-2012-02-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/04/the-day-2012-02-04-on-techczech/</guid><description>Excellent: &quot;I Use Wikipedia More Than Makeup&quot; http://t.co/y5DTZGHl # Powered by Twitter Tools</description><pubDate>Sat, 04 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-03 on @techczech</title><link>https://techczech.net/2012/02/03/the-day-2012-02-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/03/the-day-2012-02-03-on-techczech/</guid><description>Great conversation on @ TWiT about the powers of # Drupal with @ lullabot http://t.co/TL6Wq8Gf # &quot;anybody who doesn&amp;#039;t spend a little time building a personal network is doing themselves and their school a disservice&quot; http://t.co/A7bnHc1L # &quot;Can an ICT curriculum be boring?&quot; http://t.co/JXsgR8lL &amp;lt; well put - any curriculum can be made boring by…</description><pubDate>Fri, 03 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-02 on @techczech</title><link>https://techczech.net/2012/02/02/the-day-2012-02-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/02/the-day-2012-02-02-on-techczech/</guid><description>&quot;Only About a Third of Tweets Are Worth Reading&quot; &amp;lt; beating books and newspaper articles by a wide margin! http://t.co/jFJ1CjMW # reading # Powered by Twitter Tools</description><pubDate>Thu, 02 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-02-02</title><link>https://techczech.net/2012/02/02/twitter-weekly-updates-for-2012-02-02/</link><guid isPermaLink="true">https://techczech.net/2012/02/02/twitter-weekly-updates-for-2012-02-02/</guid><description>&quot;we have to get rid of statistical significance...and just come to a more fundamental acceptance of uncertainty&quot; http://t.co/Ti2d8y9N # &quot;Only About a Third of Tweets Are Worth Reading&quot; &amp;lt; beating books and newspaper articles by a wide margin! http://t.co/jFJ1CjMW # reading # Utah Open Textbook Announcement Press http://t.co/WlqBBmog # oer # Wave at Your PC…</description><pubDate>Thu, 02 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-02-01 on @techczech</title><link>https://techczech.net/2012/02/01/the-day-2012-02-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/02/01/the-day-2012-02-01-on-techczech/</guid><description>Utah Open Textbook Announcement Press http://t.co/WlqBBmog # oer # Wave at Your PC: Kinect for Windows Now Available http://t.co/5gKkWgyN # edtech # Powered by Twitter Tools</description><pubDate>Wed, 01 Feb 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-31 on @techczech</title><link>https://techczech.net/2012/01/31/the-day-2012-01-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/31/the-day-2012-01-31-on-techczech/</guid><description>More people should take a stand on The Cost of Knowledge http://t.co/dpAN21uU # highered # Researchers boycott publisher; will they embrace instant publishing? http://t.co/hRI7hKex # Congratulations to # Zotero on 3.0 release. So much to be happy about: standalone, dedupe, better integration... http://t.co/gL7vrx7H # edtech # Despite the pretty infographic, @ google &amp;#039;s education efforts…</description><pubDate>Tue, 31 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-30 on @techczech</title><link>https://techczech.net/2012/01/30/the-day-2012-01-30-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/01/30/the-day-2012-01-30-on-techczech-2/</guid><description>Nice visualisation of Web literacy skills by @ dajbelshaw Would add accessibility. http://t.co/JcaOSMHf # edtech # Can anyone think of a truly successful educational reform? Ever! Perhaps those expanding access to schooling? # edchat #edreform # Powered by Twitter Tools</description><pubDate>Mon, 30 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-30 on @techczech</title><link>https://techczech.net/2012/01/30/the-day-2012-01-30-on-techczech-3/</link><guid isPermaLink="true">https://techczech.net/2012/01/30/the-day-2012-01-30-on-techczech-3/</guid><description>Nice visualisation of Web literacy skills by @ dajbelshaw Would add accessibility. http://t.co/JcaOSMHf # edtech # Can anyone think of a truly successful educational reform? Ever! Perhaps those expanding access to schooling? # edchat #edreform # Powered by Twitter Tools</description><pubDate>Mon, 30 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-30 on @techczech</title><link>https://techczech.net/2012/01/30/the-day-2012-01-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/30/the-day-2012-01-30-on-techczech/</guid><description>Nice visualisation of Web literacy skills by @ dajbelshaw Would add accessibility. http://t.co/JcaOSMHf # edtech # Can anyone think of a truly successful educational reform? Ever! Perhaps those expanding access to schooling? # edchat #edreform # Powered by Twitter Tools</description><pubDate>Mon, 30 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-28 on @techczech</title><link>https://techczech.net/2012/01/28/the-day-2012-01-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/28/the-day-2012-01-28-on-techczech/</guid><description>Pronouncing the death of the # VLE is like pronouncing the death of the class. Both laudable &amp; unrealistic. http://t.co/jVh2HvKo # edchat # @ alexirvine I&amp;#039;ve come across many academics whose firing would go just as unremarked. Fire the presidents, rectors &amp; deans, say I! # highered # I don&amp;#039;t get the fuss. Google&amp;#039;s privacy…</description><pubDate>Sat, 28 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Top 6 Drupal usability problems</title><link>https://techczech.net/2012/01/28/top-6-drupal-usability-problems/</link><guid isPermaLink="true">https://techczech.net/2012/01/28/top-6-drupal-usability-problems/</guid><description>Google is about to conduct a usability study on Drupal to add to previous efforts in this area. This prompted me to put down what I see as the biggest usability problems with Drupal. This is based on the most frequent issues I have to provide support for - both end users and office administrators…</description><pubDate>Sat, 28 Jan 2012 00:00:00 GMT</pubDate><category>Drupal</category><category>OpEd</category><category>Using ICT</category></item><item><title>The day  2012-01-26 on @techczech</title><link>https://techczech.net/2012/01/26/the-day-2012-01-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/26/the-day-2012-01-26-on-techczech/</guid><description>@ wood5y Which is what I like about him. We need some idealists around to keep us honest. As long as they don&amp;#039;t actually run things. in reply to wood5y # @ wood5y yes, I see Stahlman&amp;#039;s point but I think you can do cloud and keep your freedom. But a lot of people don&amp;#039;t…</description><pubDate>Thu, 26 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-01-26</title><link>https://techczech.net/2012/01/26/twitter-weekly-updates-for-2012-01-26/</link><guid isPermaLink="true">https://techczech.net/2012/01/26/twitter-weekly-updates-for-2012-01-26/</guid><description>@ wood5y Which is what I like about him. We need some idealists around to keep us honest. As long as they don&amp;#039;t actually run things. in reply to wood5y # @ wood5y yes, I see Stahlman&amp;#039;s point but I think you can do cloud and keep your freedom. But a lot of people don&amp;#039;t…</description><pubDate>Thu, 26 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-25 on @techczech</title><link>https://techczech.net/2012/01/25/the-day-2012-01-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/25/the-day-2012-01-25-on-techczech/</guid><description>Peer Review and the Web of Trust http://t.co/TsGlUxMA # Tumblecloud Is a Drag-and-Drop, Collaborative Multimedia Slideshow Tool http://t.co/zK46g3x0 # Powered by Twitter Tools</description><pubDate>Wed, 25 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-24 on @techczech</title><link>https://techczech.net/2012/01/24/the-day-2012-01-24-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2012/01/24/the-day-2012-01-24-on-techczech-2/</guid><description>Stanford professor gives up tenure to start Udacity free online university http://t.co/eOoSsD3K # Now I want to know what exactly is behind that door http://t.co/DB0PNchs # Powered by Twitter Tools</description><pubDate>Tue, 24 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-24 on @techczech</title><link>https://techczech.net/2012/01/24/the-day-2012-01-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/24/the-day-2012-01-24-on-techczech/</guid><description>Stanford professor gives up tenure to start Udacity free online university http://t.co/eOoSsD3K # Now I want to know what exactly is behind that door http://t.co/DB0PNchs # Powered by Twitter Tools</description><pubDate>Tue, 24 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-23 on @techczech</title><link>https://techczech.net/2012/01/23/the-day-2012-01-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/23/the-day-2012-01-23-on-techczech/</guid><description>Show this post to your boss: &quot;Proprietary CMS - know when to fold &amp;#039;em&quot; http://t.co/G3XCAqIz # drupal # &quot;Teachers...are being systematically intimidated by top-down, authoritarian rule designed to ensure compliance.&quot; http://t.co/kJyDpwVn # echat # Research in Learning Technology is now # OpenAccess Articles from the last 19 years freely available at http://t.co/zNlsOUIi @ A_L_T #…</description><pubDate>Mon, 23 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Putting lectures in their place with cautious optimism</title><link>https://techczech.net/2012/01/22/putting-lectures-in-their-place-with-cautious-optimism/</link><guid isPermaLink="true">https://techczech.net/2012/01/22/putting-lectures-in-their-place-with-cautious-optimism/</guid><description>Donald Clark takes the lecture to task ( again ) as being inappropriate as a form of instruction. This time citing as evidence a recent paper published in Science ( available here ). This post started as a comment on his blog but outgrew the comment format. So here it is. It is hard to…</description><pubDate>Sun, 22 Jan 2012 00:00:00 GMT</pubDate><category>OpEd</category><category>Policy and theory</category><category>Active learning</category><category>Donald Clark</category><category>e-learning</category><category>Education</category><category>Educational psychology</category><category>Lecture</category><category>MOOC</category><category>The Teaching Company</category><category>video technology</category></item><item><title>The day  2012-01-22 on @techczech</title><link>https://techczech.net/2012/01/22/the-day-2012-01-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/22/the-day-2012-01-22-on-techczech/</guid><description>This should be the war cry of all concerned about instrumental education: &quot;Calculus is not a career choice.&quot; http://t.co/4L5ia0vs # edchat # Well done @ rogerSchank for skewering Larry Summers and other educational cliche mongers! http://t.co/Aw9aUGQp # edchat # Some great quotes on academic journals and peer review by @ dajbelshaw http://t.co/r5Vfl7yD My take here…</description><pubDate>Sun, 22 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-21 on @techczech</title><link>https://techczech.net/2012/01/21/the-day-2012-01-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/21/the-day-2012-01-21-on-techczech/</guid><description>How Publishers Should Prepare for EPUB 3 | Digital Book World http://t.co/cMbNDEm2 # ebooks #edtech # Powered by Twitter Tools</description><pubDate>Sat, 21 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-20 on @techczech</title><link>https://techczech.net/2012/01/20/the-day-2012-01-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/20/the-day-2012-01-20-on-techczech/</guid><description>&quot;Copyrights and patents are intrusive government regulations&quot; http://t.co/XJeu3De9 &amp;lt; Exactly # edchat # Flipped classroom: do your homework at school and school work at home? Great infographic: http://t.co/IsPyOV2v # edchat #ukedchat # Why Apple Textbooks are not a reinvention: &quot;interactive doesn’t always mean engaging&quot; by @ jamesclay http://t.co/YyL0XVBN # edchat #ukedchat # Powered by Twitter…</description><pubDate>Fri, 20 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-19 on @techczech</title><link>https://techczech.net/2012/01/19/the-day-2012-01-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/19/the-day-2012-01-19-on-techczech/</guid><description>Some Key Subtle Details From Apple’s Textbook Event http://t.co/tUDUZJHg # Powered by Twitter Tools</description><pubDate>Thu, 19 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-01-19</title><link>https://techczech.net/2012/01/19/twitter-weekly-updates-for-2012-01-19/</link><guid isPermaLink="true">https://techczech.net/2012/01/19/twitter-weekly-updates-for-2012-01-19/</guid><description>Some Key Subtle Details From Apple’s Textbook Event http://t.co/tUDUZJHg # I support # wikipediablackout Show your support here http://t.co/YWzUDZas # Lectures, readings and labs at universities should always be free! But exams (real product of HE now) should be pay as you go! @ GuardianEdu in reply to GuardianEdu # Will We Need Teachers Or…</description><pubDate>Thu, 19 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-18 on @techczech</title><link>https://techczech.net/2012/01/18/the-day-2012-01-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/18/the-day-2012-01-18-on-techczech/</guid><description>I support # wikipediablackout Show your support here http://t.co/YWzUDZas # Powered by Twitter Tools</description><pubDate>Wed, 18 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-17 on @techczech</title><link>https://techczech.net/2012/01/17/the-day-2012-01-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/17/the-day-2012-01-17-on-techczech/</guid><description>Lectures, readings and labs at universities should always be free! But exams (real product of HE now) should be pay as you go! @ GuardianEdu in reply to GuardianEdu # Powered by Twitter Tools</description><pubDate>Tue, 17 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-16 on @techczech</title><link>https://techczech.net/2012/01/16/the-day-2012-01-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/16/the-day-2012-01-16-on-techczech/</guid><description>Will We Need Teachers Or Algorithms? http://t.co/tO69EEh8 # edchat # Powered by Twitter Tools</description><pubDate>Mon, 16 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Is BETT good for UK education? Towards a more open alternative! #BETT2012 #C84C</title><link>https://techczech.net/2012/01/15/is-bett-good-for-uk-education-towards-a-more-open-alternative-bett2012-c84c/</link><guid isPermaLink="true">https://techczech.net/2012/01/15/is-bett-good-for-uk-education-towards-a-more-open-alternative-bett2012-c84c/</guid><description>I visited BETT this week and left both excited and depressed. I was excited because I saw a lot of technologies up close and in the evening took part in Collabor8 4 Change where I got to talk to a lot of like-minded people. But I also left wondering about all the things I didn&apos;t…</description><pubDate>Sun, 15 Jan 2012 00:00:00 GMT</pubDate><category>Events</category><category>OpEd</category><category>Creative Commons</category><category>Free and open source software</category><category>Libre</category><category>Linux</category><category>Open innovation</category><category>Open source</category><category>Open source hardware</category><category>Proprietary software</category><category>Software licenses</category></item><item><title>The day  2012-01-15 on @techczech</title><link>https://techczech.net/2012/01/15/the-day-2012-01-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/15/the-day-2012-01-15-on-techczech/</guid><description>New on http://t.co/KXMUl7rM : Is BETT good for UK education? Towards a more open alternative! # BETT2012 #C84C http://t.co/1JEZr835 # edtech # Clash of edu orthodoxies over hidden utopias: http://t.co/ZnxGsBRY VS. http://t.co/Az4HdpRX # ukedchat #edchat # A year later, I&amp;#039;m still not convinced Drupal 7 can properly be considered released as a universal tool for…</description><pubDate>Sun, 15 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-14 on @techczech</title><link>https://techczech.net/2012/01/14/the-day-2012-01-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/14/the-day-2012-01-14-on-techczech/</guid><description>Readability now donation-supported, makes premium features free http://t.co/zoFcZCGq # Powered by Twitter Tools</description><pubDate>Sat, 14 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-13 on @techczech</title><link>https://techczech.net/2012/01/13/the-day-2012-01-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/13/the-day-2012-01-13-on-techczech/</guid><description>Definition of evil! http://t.co/eVNAHvZG # Congratulations to @ A_L_T on doing an # openaccess e-journal right! http://t.co/QB10UN19 # edtech #edtech # There&amp;#039;s little &quot;Next Generation&quot; about these new learning platforms. Important questions remain unanswered. http://t.co/h6HR8cml # bett2012 # @ penny_patterson A colleague of mine did pls email jflower@dyslexiaaction.org.uk # Powered by Twitter Tools</description><pubDate>Fri, 13 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-01-12</title><link>https://techczech.net/2012/01/12/twitter-weekly-updates-for-2012-01-12/</link><guid isPermaLink="true">https://techczech.net/2012/01/12/twitter-weekly-updates-for-2012-01-12/</guid><description>Why not change the way we create and use curriculum instead? Make it more open and agile! http://t.co/FoVSLsR3 # ukedchat # Getting ready for my # C84C session at # BETT2012 tomorrow on Text to speech and audio books. http://t.co/1nqpw0d4 # More Left Brain / Right Brain Nonsense http://t.co/KCzb3GWf # edtech # @ penny_patterson no…</description><pubDate>Thu, 12 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-11 on @techczech</title><link>https://techczech.net/2012/01/11/the-day-2012-01-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/11/the-day-2012-01-11-on-techczech/</guid><description>Why not change the way we create and use curriculum instead? Make it more open and agile! http://t.co/FoVSLsR3 # ukedchat # Getting ready for my # C84C session at # BETT2012 tomorrow on Text to speech and audio books. http://t.co/1nqpw0d4 # More Left Brain / Right Brain Nonsense http://t.co/KCzb3GWf # edtech # Powered by Twitter…</description><pubDate>Wed, 11 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-09 on @techczech</title><link>https://techczech.net/2012/01/09/the-day-2012-01-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/09/the-day-2012-01-09-on-techczech/</guid><description>@ penny_patterson no need, thanks in reply to penny_patterson # Powered by Twitter Tools</description><pubDate>Mon, 09 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2012-01-05</title><link>https://techczech.net/2012/01/05/twitter-weekly-updates-for-2012-01-05/</link><guid isPermaLink="true">https://techczech.net/2012/01/05/twitter-weekly-updates-for-2012-01-05/</guid><description>The Power of Mentioning http://t.co/Kkz3cAkW # Powered by Twitter Tools</description><pubDate>Thu, 05 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2012-01-03 on @techczech</title><link>https://techczech.net/2012/01/03/the-day-2012-01-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2012/01/03/the-day-2012-01-03-on-techczech/</guid><description>The Power of Mentioning http://t.co/Kkz3cAkW # Powered by Twitter Tools</description><pubDate>Tue, 03 Jan 2012 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-12-29</title><link>https://techczech.net/2011/12/29/twitter-weekly-updates-for-2011-12-29/</link><guid isPermaLink="true">https://techczech.net/2011/12/29/twitter-weekly-updates-for-2011-12-29/</guid><description>Penalties for passive misidentification are too weak http://t.co/khqXhTWE # Multilingual education is good: Educating Tibetans in Tibetan? http://t.co/R5NmO3xE # &amp;#039;Transitive &quot;disappear&quot;? Not in this country!&amp;#039; http://t.co/SrHQZIFD # Powered by Twitter Tools</description><pubDate>Thu, 29 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-28 on @techczech</title><link>https://techczech.net/2011/12/28/the-day-2011-12-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/28/the-day-2011-12-28-on-techczech/</guid><description>Penalties for passive misidentification are too weak http://t.co/khqXhTWE # Powered by Twitter Tools</description><pubDate>Wed, 28 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-24 on @techczech</title><link>https://techczech.net/2011/12/24/the-day-2011-12-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/24/the-day-2011-12-24-on-techczech/</guid><description>Multilingual education is good: Educating Tibetans in Tibetan? http://t.co/R5NmO3xE # Powered by Twitter Tools</description><pubDate>Sat, 24 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-23 on @techczech</title><link>https://techczech.net/2011/12/23/the-day-2011-12-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/23/the-day-2011-12-23-on-techczech/</guid><description>&amp;#039;Transitive &quot;disappear&quot;? Not in this country!&amp;#039; http://t.co/SrHQZIFD # Powered by Twitter Tools</description><pubDate>Fri, 23 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-22 on @techczech</title><link>https://techczech.net/2011/12/22/the-day-2011-12-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/22/the-day-2011-12-22-on-techczech/</guid><description>There is simply not just ONE way all children acquire languages: &quot;Two American Kids in a Small Swiss Village&quot; http://t.co/4Whjp4av # ellchat # Duolingo Teaches You A Language While Helping Translate The Web (And Could Be Google’s Next Purchase) http://t.co/ai8seE1s # Powered by Twitter Tools</description><pubDate>Thu, 22 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-12-22</title><link>https://techczech.net/2011/12/22/twitter-weekly-updates-for-2011-12-22/</link><guid isPermaLink="true">https://techczech.net/2011/12/22/twitter-weekly-updates-for-2011-12-22/</guid><description>There is simply not just ONE way all children acquire languages: &quot;Two American Kids in a Small Swiss Village&quot; http://t.co/4Whjp4av # ellchat # Duolingo Teaches You A Language While Helping Translate The Web (And Could Be Google’s Next Purchase) http://t.co/ai8seE1s # Visual Hashing Makes Sure You Never Mistype Your Passwords [Passwords] http://t.co/b4MFWw3X # Finally: Open…</description><pubDate>Thu, 22 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-20 on @techczech</title><link>https://techczech.net/2011/12/20/the-day-2011-12-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/20/the-day-2011-12-20-on-techczech/</guid><description>Visual Hashing Makes Sure You Never Mistype Your Passwords [Passwords] http://t.co/b4MFWw3X # Powered by Twitter Tools</description><pubDate>Tue, 20 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-16 on @techczech</title><link>https://techczech.net/2011/12/16/the-day-2011-12-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/16/the-day-2011-12-16-on-techczech/</guid><description>Finally: Open Source Challenger to Dropbox and http://t.co/ItiR1bhC : ownCloud http://t.co/hirIqDUu # edtech #foss # Code For America Receives $1.5M Grant From @ Google http://t.co/UFejQELp &amp;lt; Do we need things like Code for Education or Code for Dyslexia? # correlation != causation | D&amp;#039;Arcy Norman dot net http://t.co/EAu1CXis &amp;lt; duh! # There seems to be…</description><pubDate>Fri, 16 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-15 on @techczech</title><link>https://techczech.net/2011/12/15/the-day-2011-12-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/15/the-day-2011-12-15-on-techczech/</guid><description>&quot;the leading capitalist economies have failed to price public goods such as clean air and water effectively&quot; http://t.co/Zqij7C9i # occupy # Just got my review copy of &quot;Corpora and Language Education&quot; - can&amp;#039;t wait! http://t.co/TXeeDhha # eltchat #ellchat # corpus #linguistics # Powered by Twitter Tools</description><pubDate>Thu, 15 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-12-15</title><link>https://techczech.net/2011/12/15/twitter-weekly-updates-for-2011-12-15/</link><guid isPermaLink="true">https://techczech.net/2011/12/15/twitter-weekly-updates-for-2011-12-15/</guid><description>&quot;the leading capitalist economies have failed to price public goods such as clean air and water effectively&quot; http://t.co/Zqij7C9i # occupy # Just got my review copy of &quot;Corpora and Language Education&quot; - can&amp;#039;t wait! http://t.co/TXeeDhha # eltchat #ellchat # corpus #linguistics # I&amp;#039;m starting to loose my confidence in @ ASUS Webstorage. Poor interface, slow…</description><pubDate>Thu, 15 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-14 on @techczech</title><link>https://techczech.net/2011/12/14/the-day-2011-12-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/14/the-day-2011-12-14-on-techczech/</guid><description>I&amp;#039;m starting to loose my confidence in @ ASUS Webstorage. Poor interface, slow web service, confusing messages. This is my data! # edtech # They say history is written by the winners. But it&amp;#039;s really written by people who write history books. Nobody&amp;#039;s a winner for ever. # Powered by Twitter Tools</description><pubDate>Wed, 14 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-11 on @techczech</title><link>https://techczech.net/2011/12/11/the-day-2011-12-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/11/the-day-2011-12-11-on-techczech/</guid><description>Frustrated philosophers are a sad sight. If only we had more power, they complain. Thank God, you don&amp;#039;t, say I. http://t.co/bsq1otOj # stw # Professional competence is just as much social as cognitive. Professional standards pretend otherwise to the detriment of professionalism. # @ USMCShrink The solution is in complex systems of apprenticeships &amp; professional…</description><pubDate>Sun, 11 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-10 on @techczech</title><link>https://techczech.net/2011/12/10/the-day-2011-12-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/10/the-day-2011-12-10-on-techczech/</guid><description>@ USMCShrink So in effect we have exams preparing people for other exams. Learning something useful is at best a side effect. in reply to USMCShrink # If there ever was a 12-step program for policy makers, it should adopt the Serenity Prayer as its mantra! http://t.co/1qQQhPog # edchat # Slides from Berlin 9 Open…</description><pubDate>Sat, 10 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-09 on @techczech</title><link>https://techczech.net/2011/12/09/the-day-2011-12-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/09/the-day-2011-12-09-on-techczech/</guid><description>&quot;cannot force people to add design elements that don&amp;#039;t need to be there. You can trademark design, but not simplicity.&quot; http://t.co/XcELhWB8 # Beeb WebWise course on using the mouse is funny but seems hard to access without knowing how to use the mouse! http://t.co/dICPGFdI # edtech # Intrigued by the InLOC project for learning outcomes…</description><pubDate>Fri, 09 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-08 on @techczech</title><link>https://techczech.net/2011/12/08/the-day-2011-12-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/08/the-day-2011-12-08-on-techczech/</guid><description>Free webinar starting now: Literacy as a foreign language? What teachers should know about how English is used http://t.co/DQbEq86n # ellchat # @ thedyslexicpoet Yes, it&amp;#039;s being recorded. in reply to thedyslexicpoet # Free webinar at 7pm GMT: # Literacy as a foreign language? What teachers should know about how English is used http://t.co/5EzpMPz2 #…</description><pubDate>Thu, 08 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-12-08</title><link>https://techczech.net/2011/12/08/twitter-weekly-updates-for-2011-12-08/</link><guid isPermaLink="true">https://techczech.net/2011/12/08/twitter-weekly-updates-for-2011-12-08/</guid><description>Free webinar starting now: Literacy as a foreign language? What teachers should know about how English is used http://t.co/DQbEq86n # ellchat # @ thedyslexicpoet Yes, it&amp;#039;s being recorded. in reply to thedyslexicpoet # Free webinar at 7pm GMT: # Literacy as a foreign language? What teachers should know about how English is used http://t.co/5EzpMPz2 #…</description><pubDate>Thu, 08 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-07 on @techczech</title><link>https://techczech.net/2011/12/07/the-day-2011-12-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/07/the-day-2011-12-07-on-techczech/</guid><description>After The Regretsy and Diaspora Account Freezes, We’ve Lost Confidence In PayPal http://t.co/oRN2w9BF # Don&amp;#039;t trust ANY news reporting on academic issues. Journos ask experts &amp; ignore them when their prejudice is challenged http://t.co/iWbbgqNs # Political politeness should really be called political politeness. But then all politeness is political. # Powered by Twitter Tools</description><pubDate>Wed, 07 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-05 on @techczech</title><link>https://techczech.net/2011/12/05/the-day-2011-12-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/05/the-day-2011-12-05-on-techczech/</guid><description>&quot;Journalists either don&amp;#039;t know how to report speech acts accurately or they aren&amp;#039;t trying.&quot; http://t.co/8uubOGVn &amp;lt; Not trying! # Powered by Twitter Tools</description><pubDate>Mon, 05 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-04 on @techczech</title><link>https://techczech.net/2011/12/04/the-day-2011-12-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/04/the-day-2011-12-04-on-techczech/</guid><description>Find All is a great Firefox addon to supply a KWIC view for any page. Great for teaching. http://t.co/yffhTdZG # ellchat #eltchat # Powered by Twitter Tools</description><pubDate>Sun, 04 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-03 on @techczech</title><link>https://techczech.net/2011/12/03/the-day-2011-12-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/03/the-day-2011-12-03-on-techczech/</guid><description>Beware Good Theories http://t.co/OaspP1Q6 # Powered by Twitter Tools</description><pubDate>Sat, 03 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-02 on @techczech</title><link>https://techczech.net/2011/12/02/the-day-2011-12-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/02/the-day-2011-12-02-on-techczech/</guid><description>It&amp;#039;s remarkably easy for lots of little things to become one big thing: swarms of bees, termite colonies, European Union and my to-do list! # Webinar: What&amp;#039;s new in Access Arrangements: Extra time, transitional agreements and more http://t.co/u1iVuDLv # dyslexia #ukedchat # Powered by Twitter Tools</description><pubDate>Fri, 02 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-12-01 on @techczech</title><link>https://techczech.net/2011/12/01/the-day-2011-12-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/12/01/the-day-2011-12-01-on-techczech/</guid><description>Still too expensive and not flexible enough &amp;gt; Cambridge University Press to try renting academic articles http://t.co/rvZvcLvT # Powered by Twitter Tools</description><pubDate>Thu, 01 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-12-01</title><link>https://techczech.net/2011/12/01/twitter-weekly-updates-for-2011-12-01/</link><guid isPermaLink="true">https://techczech.net/2011/12/01/twitter-weekly-updates-for-2011-12-01/</guid><description>Still too expensive and not flexible enough &amp;gt; Cambridge University Press to try renting academic articles http://t.co/rvZvcLvT # BBC News - Coding - the new Latin http://t.co/n50KYHXz # How common: &quot;Social problems [in ASF] became political problems because ethos had to be enforced by the institution&quot; http://t.co/h18ZFIp2 # &quot;Institutions will try to preserve the problem…</description><pubDate>Thu, 01 Dec 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-30 on @techczech</title><link>https://techczech.net/2011/11/30/the-day-2011-11-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/30/the-day-2011-11-30-on-techczech/</guid><description>BBC News - Coding - the new Latin http://t.co/n50KYHXz # Powered by Twitter Tools</description><pubDate>Wed, 30 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-29 on @techczech</title><link>https://techczech.net/2011/11/29/the-day-2011-11-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/29/the-day-2011-11-29-on-techczech/</guid><description>How common: &quot;Social problems [in ASF] became political problems because ethos had to be enforced by the institution&quot; http://t.co/h18ZFIp2 # &quot;Institutions will try to preserve the problem to which they are the solution.&quot; -- Clay Shirky http://t.co/WAAzkRAk # &quot;the biggest problem in science today is that we&amp;#039;re doing too many comparisons and only reporting the…</description><pubDate>Tue, 29 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-28 on @techczech</title><link>https://techczech.net/2011/11/28/the-day-2011-11-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/28/the-day-2011-11-28-on-techczech/</guid><description>Coworker&amp;#039;s son sums up edu philosophy: &quot;Intelligence is knowing tomato is a fruit. Wisdom is not putting it into a fruit salad&quot;. # edchat # Powered by Twitter Tools</description><pubDate>Mon, 28 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-27 on @techczech</title><link>https://techczech.net/2011/11/27/the-day-2011-11-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/27/the-day-2011-11-27-on-techczech/</guid><description>A significant part of what we learn in school is about how to go to school and meet its goals. # edchat # Powered by Twitter Tools</description><pubDate>Sun, 27 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-26 on @techczech</title><link>https://techczech.net/2011/11/26/the-day-2011-11-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/26/the-day-2011-11-26-on-techczech/</guid><description>Adventures in Depression http://t.co/Ta0GdkMr # The Gene That&amp;#039;s &quot;For&quot; Nothing: &quot;there&amp;#039;s a long and winding road from gene to phenotype&quot; http://t.co/kMTPseun # Powered by Twitter Tools</description><pubDate>Sat, 26 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-25 on @techczech</title><link>https://techczech.net/2011/11/25/the-day-2011-11-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/25/the-day-2011-11-25-on-techczech/</guid><description>Most coherent slogan for the # occupy movement: &quot;we won&amp;#039;t pay for your crisis!&quot; http://t.co/adIirqnc # If you tried to propose the currentmedonomic model of academic publishing, people would think you are insane. http://t.co/cHUKf0sS # Powered by Twitter Tools</description><pubDate>Fri, 25 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-24 on @techczech</title><link>https://techczech.net/2011/11/24/the-day-2011-11-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/24/the-day-2011-11-24-on-techczech/</guid><description>It seems to me that a lot of what is presented as &quot;critical thinking&quot; is just propaganda for a particular axioms. # edchat # Mozilla Aims to &amp;#039;Iconize&amp;#039; Skills with Standardized &amp;#039;Merit Badges&amp;#039; http://t.co/MeNIa8yL # Powered by Twitter Tools</description><pubDate>Thu, 24 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-11-24</title><link>https://techczech.net/2011/11/24/twitter-weekly-updates-for-2011-11-24-2/</link><guid isPermaLink="true">https://techczech.net/2011/11/24/twitter-weekly-updates-for-2011-11-24-2/</guid><description>It seems to me that a lot of what is presented as &quot;critical thinking&quot; is just propaganda for a particular axioms. # edchat # Mozilla Aims to &amp;#039;Iconize&amp;#039; Skills with Standardized &amp;#039;Merit Badges&amp;#039; http://t.co/MeNIa8yL # Grandmothers learning about gaming before Christmas: &quot;Playstation!? Is that an Xbox?&quot; # games #xbox # playstation # Just read about…</description><pubDate>Thu, 24 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-11-24</title><link>https://techczech.net/2011/11/24/twitter-weekly-updates-for-2011-11-24/</link><guid isPermaLink="true">https://techczech.net/2011/11/24/twitter-weekly-updates-for-2011-11-24/</guid><description>It seems to me that a lot of what is presented as &quot;critical thinking&quot; is just propaganda for a particular axioms. # edchat # Mozilla Aims to &amp;#039;Iconize&amp;#039; Skills with Standardized &amp;#039;Merit Badges&amp;#039; http://t.co/MeNIa8yL # Grandmothers learning about gaming before Christmas: &quot;Playstation!? Is that an Xbox?&quot; # games #xbox # playstation # Just read about…</description><pubDate>Thu, 24 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-23 on @techczech</title><link>https://techczech.net/2011/11/23/the-day-2011-11-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/23/the-day-2011-11-23-on-techczech/</guid><description>Grandmothers learning about gaming before Christmas: &quot;Playstation!? Is that an Xbox?&quot; # games #xbox # playstation # Powered by Twitter Tools</description><pubDate>Wed, 23 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-19 on @techczech</title><link>https://techczech.net/2011/11/19/the-day-2011-11-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/19/the-day-2011-11-19-on-techczech/</guid><description>Just read about the Battle of # Stalingrad Shows this @ BBC # WWII History page to be laughably one sided. http://t.co/1Rvf5Pt9 # hischat # Powered by Twitter Tools</description><pubDate>Sat, 19 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-18 on @techczech</title><link>https://techczech.net/2011/11/18/the-day-2011-11-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/18/the-day-2011-11-18-on-techczech/</guid><description>Wow: 8.43 million Brits have never been online - PC Advisor http://t.co/taKNuaNt # 4 Social Media Rules Journalists Should Break http://t.co/2cWldpBJ # Powered by Twitter Tools</description><pubDate>Fri, 18 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-17 on @techczech</title><link>https://techczech.net/2011/11/17/the-day-2011-11-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/17/the-day-2011-11-17-on-techczech/</guid><description># c84c session on Open Source in education at table 6 starting soon # &quot;Primary ICT suites do not provide best value&quot; - they are not a proper learning environment. # c84c # Attending # c84c makes it seem that the world of education is filled with IT literate people. # edchatuk # The free…</description><pubDate>Thu, 17 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-11-17</title><link>https://techczech.net/2011/11/17/twitter-weekly-updates-for-2011-11-17/</link><guid isPermaLink="true">https://techczech.net/2011/11/17/twitter-weekly-updates-for-2011-11-17/</guid><description># c84c session on Open Source in education at table 6 starting soon # &quot;Primary ICT suites do not provide best value&quot; - they are not a proper learning environment. # c84c # Attending # c84c makes it seem that the world of education is filled with IT literate people. # edchatuk # The free…</description><pubDate>Thu, 17 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-16 on @techczech</title><link>https://techczech.net/2011/11/16/the-day-2011-11-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/16/the-day-2011-11-16-on-techczech/</guid><description>Just made $25 loan to a woman starting a bakery in Mongolia - feel strangely fulfilled! http://t.co/MnirVJpy Become a good banker with @ Kiva # Headline of the year: &quot;University gets $188 million AMD-based supercomputer, free copy of Norton&quot; http://t.co/963NzP8P # Evernote Clearly Knows How To Make Web Reading, Clipping Easier http://t.co/PEELiuCn # readability #dyslexia…</description><pubDate>Wed, 16 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-14 on @techczech</title><link>https://techczech.net/2011/11/14/the-day-2011-11-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/14/the-day-2011-11-14-on-techczech/</guid><description>10 Tools for Increasing Engagement in Online Courses http://t.co/G9YkCcJ7 # edtech # Book Review: # Moodle 2 Administration by Alex Büchner http://t.co/ewGpDDTC # If you&amp;#039;re buying a Kindle - try this link http://t.co/8cEgUgtS # Powered by Twitter Tools</description><pubDate>Mon, 14 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-13 on @techczech</title><link>https://techczech.net/2011/11/13/the-day-2011-11-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/13/the-day-2011-11-13-on-techczech/</guid><description>When will journalists start pointing out that a download != lost sale: Video Game Piracy in UK Costs £1 billion per year... # @ PetrSoukenik Vítej! in reply to PetrSoukenik # Words to Sound Smart by Using « Literal-Minded http://t.co/T4osRXWl # Powered by Twitter Tools</description><pubDate>Sun, 13 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-12 on @techczech</title><link>https://techczech.net/2011/11/12/the-day-2011-11-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/12/the-day-2011-11-12-on-techczech/</guid><description>Citizenship, Immigration, and the European Social Project: Rights and Obligations of Individuality http://t.co/Z4FuMXZH # lseBJS # The space age portal of sentence discovery (via @ languagehat @sentencefirst) http://t.co/lxlo2RuI # ellchat # Discuss: &quot;Does technology destroy more jobs than it creates?&quot; http://t.co/SvRsrQGH # edchat #edtech # Has education (schooling) been ever about learning? &amp;gt; RT @…</description><pubDate>Sat, 12 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-11 on @techczech</title><link>https://techczech.net/2011/11/11/the-day-2011-11-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/11/the-day-2011-11-11-on-techczech/</guid><description>Really want to go to the conference on &quot;Non-Canonically Case-Marked Subjects within and across Languages&quot; http://t.co/Z9ePXyRo # ellchat # Must listen: The Arab Uprisings: mass protest, border-crossing and history from below http://t.co/Crk9lIOi # Czech dissident icon, poet Magor Jirous, dies at 67 http://t.co/zckDAxZd # Powered by Twitter Tools</description><pubDate>Fri, 11 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-10 on @techczech</title><link>https://techczech.net/2011/11/10/the-day-2011-11-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/10/the-day-2011-11-10-on-techczech/</guid><description>RT @ InnovativeEdu : The game of school was designed around scarce resources but new tech offers abundance where scarcity once ruled # vss11 # Discuss: &quot;We all accept that it’s worth a number of children dying so that we can all get around more easily.&quot; http://t.co/nVHCs0ar # edchat # Finally, Newton&amp;#039;s legacy put to…</description><pubDate>Thu, 10 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-11-10</title><link>https://techczech.net/2011/11/10/twitter-weekly-updates-for-2011-11-10/</link><guid isPermaLink="true">https://techczech.net/2011/11/10/twitter-weekly-updates-for-2011-11-10/</guid><description>RT @ InnovativeEdu : The game of school was designed around scarce resources but new tech offers abundance where scarcity once ruled # vss11 # Discuss: &quot;We all accept that it’s worth a number of children dying so that we can all get around more easily.&quot; http://t.co/nVHCs0ar # edchat # Finally, Newton&amp;#039;s legacy put to…</description><pubDate>Thu, 10 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-09 on @techczech</title><link>https://techczech.net/2011/11/09/the-day-2011-11-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/09/the-day-2011-11-09-on-techczech/</guid><description>Great post on How to visually track student progress in a # Moodle course by @ 3rdwave_media http://t.co/6iGihwZs # edtech # Don&amp;#039;t forget to register for the Online Public Lecture: Text-to-speech - The Julia Debate http://t.co/CesC7fY8 # spld #dyslexia # text2speech # Powered by Twitter Tools</description><pubDate>Wed, 09 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-08 on @techczech</title><link>https://techczech.net/2011/11/08/the-day-2011-11-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/08/the-day-2011-11-08-on-techczech/</guid><description>Shame on @ Google . I relied on this function. How can we trust # SaaS &amp;gt; No More GoogleLookup in Google Spreadsheets http://t.co/2gbM7DAu # We are all perfectionist about something. How can we best harness this in education? # edchat # Powered by Twitter Tools</description><pubDate>Tue, 08 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-06 on @techczech</title><link>https://techczech.net/2011/11/06/the-day-2011-11-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/06/the-day-2011-11-06-on-techczech/</guid><description>It strikes me that the phrase &quot;I don&amp;#039;t have all the answers&quot; is suspiciously often employed by people who don&amp;#039;t have any of the answers. # Some Essential Moodle 2 Plugins – Moodleposium 2011 http://t.co/0c6D4D2N # moodle # Could the key to making millions be dropping out of college? http://t.co/oz0kTFpb # You Turned Out OK?…</description><pubDate>Sun, 06 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-05 on @techczech</title><link>https://techczech.net/2011/11/05/the-day-2011-11-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/05/the-day-2011-11-05-on-techczech/</guid><description>Sociology and her sisters often stick mundane things with exciting labels. But how often do we forget what the labels are really stuck on!? # How often do we claim that there are no right answers while hiding the &quot;one true answer&quot; in the back of our mind? # Of Bitcoin and Badges. | http://t.co/pV0YV2Zm…</description><pubDate>Sat, 05 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-04 on @techczech</title><link>https://techczech.net/2011/11/04/the-day-2011-11-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/04/the-day-2011-11-04-on-techczech/</guid><description>Announcify Reads Online Articles to You with One Click [Chrome Browser Extensions ] http://t.co/g1VAYBKm # Powered by Twitter Tools</description><pubDate>Fri, 04 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-03 on @techczech</title><link>https://techczech.net/2011/11/03/the-day-2011-11-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/03/the-day-2011-11-03-on-techczech/</guid><description>@ Owenllr See here for the presentation http://t.co/V9PynXCh in reply to Owenllr # Just uploaded &amp;#039;Collective feature purchasing for # CiviCRM and # FOSS #039; to SlideShare. http://t.co/4KZbu8ys # Challenging but important: &quot;6 Myths of Education Technology&quot; http://t.co/x5hLKQbe # edchat #edtech # Excited to be talking about Open Source in Education at Collabor8 4 Change…</description><pubDate>Thu, 03 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-11-03</title><link>https://techczech.net/2011/11/03/twitter-weekly-updates-for-2011-11-03/</link><guid isPermaLink="true">https://techczech.net/2011/11/03/twitter-weekly-updates-for-2011-11-03/</guid><description>@ Owenllr See here for the presentation http://t.co/V9PynXCh in reply to Owenllr # Just uploaded &amp;#039;Collective feature purchasing for # CiviCRM and # FOSS #039; to SlideShare. http://t.co/4KZbu8ys # Challenging but important: &quot;6 Myths of Education Technology&quot; http://t.co/x5hLKQbe # edchat #edtech # Excited to be talking about Open Source in Education at Collabor8 4 Change…</description><pubDate>Thu, 03 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-02 on @techczech</title><link>https://techczech.net/2011/11/02/the-day-2011-11-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/02/the-day-2011-11-02-on-techczech/</guid><description>@ firmstep You might be interested in Civi Email Wishlist (#CiviCRM) http://t.co/adsFq9aV # &quot;Proprietary tech was a limiting factor in hiring people who could work in it.&quot; Switch to # drupal as platform was the solution. # foss # Finding out how @ Firmstep use # civicrm as a CRM engine for a form building…</description><pubDate>Wed, 02 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-11-01 on @techczech</title><link>https://techczech.net/2011/11/01/the-day-2011-11-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/11/01/the-day-2011-11-01-on-techczech/</guid><description>A message to the world http://t.co/MHgWJIRV # dyslexia #sli # spld # @ stylianosm2 But if the darkest place in hell would be reserved for those who perpetuate moral panics, it would be overflowing. in reply to stylianosm2 # Powered by Twitter Tools</description><pubDate>Tue, 01 Nov 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-31 on @techczech</title><link>https://techczech.net/2011/10/31/the-day-2011-10-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/31/the-day-2011-10-31-on-techczech/</guid><description>@ ebodeux PC thus the bugginess. But the usability of iTunes is quite low on a Mac, too. in reply to ebodeux # Why does this book keep crashing my Kindle app on Android? Atrocitology: Humanity&amp;#039;s 100 Deadliest Achievements eBook http://t.co/J53gC5qJ # God, what a worthless unusable piece of garbage # iTunes is! Were it…</description><pubDate>Mon, 31 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-30 on @techczech</title><link>https://techczech.net/2011/10/30/the-day-2011-10-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/30/the-day-2011-10-30-on-techczech/</guid><description>I immediately fell in love with NexusFile when looking for alternatives for FreeCommander on W7 pro! http://t.co/rZngOHE0 # edtech # Atrocitology: &quot;wars kill more civilians than soldiers (in fact, the army is usually the safest place to be)&quot; http://t.co/B64mOMnb # til # &quot;tendency to attempt to solve all possible cases before there are any actual…</description><pubDate>Sun, 30 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-29 on @techczech</title><link>https://techczech.net/2011/10/29/the-day-2011-10-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/29/the-day-2011-10-29-on-techczech/</guid><description>Linguist Llama wisdom on the Schwa http://t.co/UJvU5ohH # ellchat # Can&amp;#039;t decide which is the better distraction-free editor: FocusWriter http://t.co/BLxZtibe or WriteMonkey http://t.co/4IpkDgNb # edtech # Peer review should be done based on introduction and methods sections only of research submitted for publication. http://t.co/fTHtavk7 # Powered by Twitter Tools</description><pubDate>Sat, 29 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-28 on @techczech</title><link>https://techczech.net/2011/10/28/the-day-2011-10-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/28/the-day-2011-10-28-on-techczech/</guid><description>Beautiful fugue on the complexity of noun countability in English by @ mgrammar . http://t.co/7vHEXDjp # ellchat #engchat # &quot;1 of the reasons that metric-centric systems can become so bad is that they almost always start out as something good&quot; http://t.co/uhbhwAPU # Agree: &quot;for teams that actually need to collaborate, Dropbox is still wanting&quot; &amp;lt…</description><pubDate>Fri, 28 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-27 on @techczech</title><link>https://techczech.net/2011/10/27/the-day-2011-10-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/27/the-day-2011-10-27-on-techczech/</guid><description>I&amp;#039;d say army is a safeguard of education &amp;gt; RT @ MyEdegree : &quot;Education is a better safeguard of liberty than a standing army.&quot; -Edward Everett # &quot;With # Ubuntu I wasn&amp;#039;t learning how to do things with my OS, I was learning to make the OS do what I wanted.&quot; http://t.co/KNZ3aEwO # edtech #…</description><pubDate>Thu, 27 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-10-27</title><link>https://techczech.net/2011/10/27/twitter-weekly-updates-for-2011-10-27/</link><guid isPermaLink="true">https://techczech.net/2011/10/27/twitter-weekly-updates-for-2011-10-27/</guid><description>I&amp;#039;d say army is a safeguard of education &amp;gt; RT @ MyEdegree : &quot;Education is a better safeguard of liberty than a standing army.&quot; -Edward Everett # &quot;With # Ubuntu I wasn&amp;#039;t learning how to do things with my OS, I was learning to make the OS do what I wanted.&quot; http://t.co/KNZ3aEwO # edtech #…</description><pubDate>Thu, 27 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-25 on @techczech</title><link>https://techczech.net/2011/10/25/the-day-2011-10-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/25/the-day-2011-10-25-on-techczech/</guid><description>Hope @ hypothes_is is going to inter-operate with @ mozilla &amp;#039;s # openbadges http://t.co/DKzUxtpg # We really need better trust management in # Drupal Lots of barely credible responses to a recent call for proposals on d.o @ learningdrupal # Just joined Einztein Knowledge Exchange @ http://t.co/jvcbieKL http://t.co/I9rwjiNk # Powered by Twitter Tools</description><pubDate>Tue, 25 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-24 on @techczech</title><link>https://techczech.net/2011/10/24/the-day-2011-10-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/24/the-day-2011-10-24-on-techczech/</guid><description>Call for Proposals: # Drupal 6 Theme # Accessibility Redesign http://t.co/LI5YB3eQ @ drupal_jobs # I hope someone @ microsoft is ashamed of how difficult it is to install .msi files on # windows7 How about learning from # Linux sudo FTW! # Powered by Twitter Tools</description><pubDate>Mon, 24 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-23 on @techczech</title><link>https://techczech.net/2011/10/23/the-day-2011-10-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/23/the-day-2011-10-23-on-techczech/</guid><description>Irony? A media controlling billionaire uses an everything controlling billionaire as an example for # edreform http://t.co/A389yk3z # edchat # Powered by Twitter Tools</description><pubDate>Sun, 23 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-22 on @techczech</title><link>https://techczech.net/2011/10/22/the-day-2011-10-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/22/the-day-2011-10-22-on-techczech/</guid><description>No! The future of education lies in education! &amp;gt; &quot;The future of education lies in technology&quot; http://t.co/oImmjZFB # edchat # Powered by Twitter Tools</description><pubDate>Sat, 22 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-21 on @techczech</title><link>https://techczech.net/2011/10/21/the-day-2011-10-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/21/the-day-2011-10-21-on-techczech/</guid><description>Just pledged to support Hypothes.is - Taking peer review to the Internet— Kickstarter http://t.co/KQRdyLBu # edchat # I just reserved my @ hypothes_is username. Get yours now. http://t.co/aKQ1In7m # Online Public Lecture: Introduction to Dyslexia for Parents http://t.co/B9oGslwg # dyslexia #webinar # Feeling the sudden urge to attend the workshop on Negation in Uralic Languages…</description><pubDate>Fri, 21 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-20 on @techczech</title><link>https://techczech.net/2011/10/20/the-day-2011-10-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/20/the-day-2011-10-20-on-techczech/</guid><description>What&amp;#039;s wrong with # music teachers? Just met another one who&amp;#039;d never heard of Tom Waits. How are we going to get the # edupunk movement going? # Wow, how sad to hear the Chief Rabbi performing voodoo with language and the brain without a challenge on # starttheweek ... # Powered by Twitter Tools</description><pubDate>Thu, 20 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-10-20</title><link>https://techczech.net/2011/10/20/twitter-weekly-updates-for-2011-10-20/</link><guid isPermaLink="true">https://techczech.net/2011/10/20/twitter-weekly-updates-for-2011-10-20/</guid><description>What&amp;#039;s wrong with # music teachers? Just met another one who&amp;#039;d never heard of Tom Waits. How are we going to get the # edupunk movement going? # Wow, how sad to hear the Chief Rabbi performing voodoo with language and the brain without a challenge on # starttheweek ... # They do already if…</description><pubDate>Thu, 20 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-19 on @techczech</title><link>https://techczech.net/2011/10/19/the-day-2011-10-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/19/the-day-2011-10-19-on-techczech/</guid><description>They do already if they care! RT @ marama # ulearn11 we need to teach learners to critically assess and question the information they consume. # How can we encourage some positive competition to PayPal? &quot;Diaspora Becomes PayPal&amp;#039;s Latest Victim&quot; http://t.co/r89qw324 # edtech # &quot;In an open educational environment, you can&amp;#039;t &amp;#039;ensure any educational outcomes&amp;#039…</description><pubDate>Wed, 19 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-17 on @techczech</title><link>https://techczech.net/2011/10/17/the-day-2011-10-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/17/the-day-2011-10-17-on-techczech/</guid><description>RT @ sarahhorrigan : http://t.co/XvoxaTgv - Students &amp; Technology 2011 ECAR National Study infographic # edtech # Powered by Twitter Tools</description><pubDate>Mon, 17 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-16 on @techczech</title><link>https://techczech.net/2011/10/16/the-day-2011-10-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/16/the-day-2011-10-16-on-techczech/</guid><description>Nice to see the improved # Moodle Plugins Directory, looking forward to the auto updates http://t.co/nnmvDSoI # edtech # Giving ASUS WebStorage a try over Syncplicity - benefit of a year&amp;#039;s free storage from Transformer. http://t.co/EQZlccDl # edtech # The only reliable thing about international education comparison studies is the lies told about them afterward…</description><pubDate>Sun, 16 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-15 on @techczech</title><link>https://techczech.net/2011/10/15/the-day-2011-10-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/15/the-day-2011-10-15-on-techczech/</guid><description>Thought experiment: What would happen to society if all test results were assigned randomly? Prediction: Not much! # edchat #edchatuk # History of linguistic purism and # prescriptivism is as long as the history of language: http://t.co/FCobKxfz # eltchat # Aif only # RDF were this simple: Half an Hour: DRN: Downes RDF Notation http://t.co/IVLfpYdY…</description><pubDate>Sat, 15 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-10-13</title><link>https://techczech.net/2011/10/13/twitter-weekly-updates-for-2011-10-13/</link><guid isPermaLink="true">https://techczech.net/2011/10/13/twitter-weekly-updates-for-2011-10-13/</guid><description>Important explanation of the power and limitations of the IPA (International Phonetic Alphabet) http://t.co/ocCj4hau # ellchat # God, I hate @ BBC TV documentaries. How sad to see @ stephenfry dumbing down a complex subject. http://t.co/bZ7mxIpE # frysplanetword #ellchat # It is amusing that one of the most plagiarized texts on the planet are anti-plagiarism…</description><pubDate>Thu, 13 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-12 on @techczech</title><link>https://techczech.net/2011/10/12/the-day-2011-10-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/12/the-day-2011-10-12-on-techczech/</guid><description>Important explanation of the power and limitations of the IPA (International Phonetic Alphabet) http://t.co/ocCj4hau # ellchat # God, I hate @ BBC TV documentaries. How sad to see @ stephenfry dumbing down a complex subject. http://t.co/bZ7mxIpE # frysplanetword #ellchat # It is amusing that one of the most plagiarized texts on the planet are anti-plagiarism…</description><pubDate>Wed, 12 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-11 on @techczech</title><link>https://techczech.net/2011/10/11/the-day-2011-10-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/11/the-day-2011-10-11-on-techczech/</guid><description>Disappointed to see how far behind # android is in term of # accessibility @ google should make this a priority to make inroads into education # Parttime Project Researcher position in # dyslexia #assistivetechnologies # printdisability http://t.co/zoeqnJpG # jobs Please RT # Powered by Twitter Tools</description><pubDate>Tue, 11 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-10 on @techczech</title><link>https://techczech.net/2011/10/10/the-day-2011-10-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/10/the-day-2011-10-10-on-techczech/</guid><description>Is speaking the language all it takes to be an expert? « Motivated Grammar http://t.co/inUR6EWM &amp;lt; No!!! # ellchat # Powered by Twitter Tools</description><pubDate>Mon, 10 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-09 on @techczech</title><link>https://techczech.net/2011/10/09/the-day-2011-10-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/09/the-day-2011-10-09-on-techczech/</guid><description>Finally, someone trying to get off Google for a reason I can get behind: as a way of artistic expression! http://ow.ly/6RKyY # google #edtech # Powered by Twitter Tools</description><pubDate>Sun, 09 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-08 on @techczech</title><link>https://techczech.net/2011/10/08/the-day-2011-10-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/08/the-day-2011-10-08-on-techczech/</guid><description>I&amp;#039;ve just personalized @ SwiftKey X for Android with my Twitter posts! # Why Education Startups Do Not Succeed (114 points) http://t.co/znLiYpRl # Powered by Twitter Tools</description><pubDate>Sat, 08 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-07 on @techczech</title><link>https://techczech.net/2011/10/07/the-day-2011-10-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/07/the-day-2011-10-07-on-techczech/</guid><description>Important and not at all inappropriate: What Everyone Is Too Polite to Say About Steve Jobs http://t.co/RxTTnR7R # Wow, a good post about open source on @ techcrunch : LibreOffice and OpenOffice.org: One Year After the Schism http://t.co/0PZLjoGe # Celebrated the legacy of # SteveJobs by buying an # Android tablet. Didn&amp;#039; t like the…</description><pubDate>Fri, 07 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-06 on @techczech</title><link>https://techczech.net/2011/10/06/the-day-2011-10-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/06/the-day-2011-10-06-on-techczech/</guid><description># Moodle 2.0 Theme # Accessibility Redesign - Call for Proposals http://ow.ly/6Pjo6 # moodlejobs # Wish # fote11 android app would support install to SD card. But otherwise it&amp;#039;s great to have it. # Powered by Twitter Tools</description><pubDate>Thu, 06 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-10-06</title><link>https://techczech.net/2011/10/06/twitter-weekly-updates-for-2011-10-06-2/</link><guid isPermaLink="true">https://techczech.net/2011/10/06/twitter-weekly-updates-for-2011-10-06-2/</guid><description># Moodle 2.0 Theme # Accessibility Redesign - Call for Proposals http://ow.ly/6Pjo6 # moodlejobs # Wish # fote11 android app would support install to SD card. But otherwise it&amp;#039;s great to have it. # End of a love affair with @ scribd &amp;gt;too many ads, no way for providers to pay, charging users high download…</description><pubDate>Thu, 06 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-10-06</title><link>https://techczech.net/2011/10/06/twitter-weekly-updates-for-2011-10-06/</link><guid isPermaLink="true">https://techczech.net/2011/10/06/twitter-weekly-updates-for-2011-10-06/</guid><description># Moodle 2.0 Theme # Accessibility Redesign - Call for Proposals http://ow.ly/6Pjo6 # moodlejobs # Wish # fote11 android app would support install to SD card. But otherwise it&amp;#039;s great to have it. # End of a love affair with @ scribd &amp;gt;too many ads, no way for providers to pay, charging users high download…</description><pubDate>Thu, 06 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-05 on @techczech</title><link>https://techczech.net/2011/10/05/the-day-2011-10-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/05/the-day-2011-10-05-on-techczech/</guid><description>End of a love affair with @ scribd &amp;gt;too many ads, no way for providers to pay, charging users high download fees. Alternatives? # edtech # Powered by Twitter Tools</description><pubDate>Wed, 05 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-10-04 on @techczech</title><link>https://techczech.net/2011/10/04/the-day-2011-10-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/10/04/the-day-2011-10-04-on-techczech/</guid><description>Wow! What a spectacularly underwhelming # Apple announcement!? Just about catching up to # Android on phones like Galaxy S2. # Powered by Twitter Tools</description><pubDate>Tue, 04 Oct 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-30 on @techczech</title><link>https://techczech.net/2011/09/30/the-day-2011-09-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/30/the-day-2011-09-30-on-techczech/</guid><description>Spent 2 hrs doing important productive things. Went eagerly to my todo list to check something off and 0! Need to get better at todo lists! # @ learningdrupal Love the # drupalskilmap I can easily place myself in it. Would add an evidence column for each skill set (and a badge). in reply to…</description><pubDate>Fri, 30 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-29 on @techczech</title><link>https://techczech.net/2011/09/29/the-day-2011-09-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/29/the-day-2011-09-29-on-techczech/</guid><description>Let down by # CiviCRM No way to export members based on payment type!?! Thus no way to mass extend membership w/o Excel magic! # Importing materials between courses in # Moodle is painful. Consequence of outdated structural design of course outline. # MoodleScrollofDeath # Powered by Twitter Tools</description><pubDate>Thu, 29 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-09-29</title><link>https://techczech.net/2011/09/29/twitter-weekly-updates-for-2011-09-29-2/</link><guid isPermaLink="true">https://techczech.net/2011/09/29/twitter-weekly-updates-for-2011-09-29-2/</guid><description>Let down by # CiviCRM No way to export members based on payment type!?! Thus no way to mass extend membership w/o Excel magic! # Importing materials between courses in # Moodle is painful. Consequence of outdated structural design of course outline. # MoodleScrollofDeath # Wow, @ amazon sure knows how to bilk their UK…</description><pubDate>Thu, 29 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-09-29</title><link>https://techczech.net/2011/09/29/twitter-weekly-updates-for-2011-09-29/</link><guid isPermaLink="true">https://techczech.net/2011/09/29/twitter-weekly-updates-for-2011-09-29/</guid><description>Let down by # CiviCRM No way to export members based on payment type!?! Thus no way to mass extend membership w/o Excel magic! # Importing materials between courses in # Moodle is painful. Consequence of outdated structural design of course outline. # MoodleScrollofDeath # Wow, @ amazon sure knows how to bilk their UK…</description><pubDate>Thu, 29 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-28 on @techczech</title><link>https://techczech.net/2011/09/28/the-day-2011-09-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/28/the-day-2011-09-28-on-techczech/</guid><description>Wow, @ amazon sure knows how to bilk their UK customers. http://ow.ly/6HAy3 # ripoffbritain # Powered by Twitter Tools</description><pubDate>Wed, 28 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-27 on @techczech</title><link>https://techczech.net/2011/09/27/the-day-2011-09-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/27/the-day-2011-09-27-on-techczech/</guid><description>Really wish I could go to the Open Science Summit http://ow.ly/6G4oL # Powered by Twitter Tools</description><pubDate>Tue, 27 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-26 on @techczech</title><link>https://techczech.net/2011/09/26/the-day-2011-09-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/26/the-day-2011-09-26-on-techczech/</guid><description>Too bad @ stephenfry chose to stick to superficial platitudes about language rather than explore the tricky bits http://ow.ly/6F8aA # ellchat # Powered by Twitter Tools</description><pubDate>Mon, 26 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-25 on @techczech</title><link>https://techczech.net/2011/09/25/the-day-2011-09-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/25/the-day-2011-09-25-on-techczech/</guid><description>This Groupon for schools is not a bad idea bu they would be better served by investing in # OER and # FOSS http://ow.ly/6EclG # edtech #edchat # Powered by Twitter Tools</description><pubDate>Sun, 25 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-24 on @techczech</title><link>https://techczech.net/2011/09/24/the-day-2011-09-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/24/the-day-2011-09-24-on-techczech/</guid><description>Prime example of education voodoo... http://ow.ly/6DS1h # Great post &quot;demonstrating that badges are a viable alternative to formal university education&quot; http://ow.ly/6DDlU # edchat #drupaledu # oer # &quot;To date the open education movement has focused almost exclusively on the production &amp; sharing of content&quot; http://ow.ly/6DDiE # oer #edchat # Thank you to The Education Optimists…</description><pubDate>Sat, 24 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-23 on @techczech</title><link>https://techczech.net/2011/09/23/the-day-2011-09-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/23/the-day-2011-09-23-on-techczech/</guid><description>Just signed up for the # C84C Collaborate for Change - proposed a table session on Open Source in education http://ow.ly/6CIco # edtech # Powered by Twitter Tools</description><pubDate>Fri, 23 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-22 on @techczech</title><link>https://techczech.net/2011/09/22/the-day-2011-09-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/22/the-day-2011-09-22-on-techczech/</guid><description>You had a hard day. You go to bed early and get woken up by lots of noise. You call the cops on the last Beatles concert. http://ow.ly/6Cc4z # Always have your stuff when you need it with @ Dropbox . 2GB account is free! http://t.co/ZbMfkbMb # Powered by Twitter Tools</description><pubDate>Thu, 22 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-09-22</title><link>https://techczech.net/2011/09/22/twitter-weekly-updates-for-2011-09-22/</link><guid isPermaLink="true">https://techczech.net/2011/09/22/twitter-weekly-updates-for-2011-09-22/</guid><description>You had a hard day. You go to bed early and get woken up by lots of noise. You call the cops on the last Beatles concert. http://ow.ly/6Cc4z # Always have your stuff when you need it with @ Dropbox . 2GB account is free! http://t.co/ZbMfkbMb # &quot;Success Comes Through Rapidly Fixing our Mistakes Rather…</description><pubDate>Thu, 22 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-21 on @techczech</title><link>https://techczech.net/2011/09/21/the-day-2011-09-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/21/the-day-2011-09-21-on-techczech/</guid><description>&quot;Success Comes Through Rapidly Fixing our Mistakes Rather than Getting Things Right the First Time&quot; http://t.co/Dcxbo7B4 # edchat # Big surprise! Poverty is more important to educational attainment than national educational system! http://ow.ly/6AmsK # edchat # Not sure &amp;gt; RT @ WarwickLanguage : &quot;We are impoverished by our inability to understand the languages of others&quot;…</description><pubDate>Wed, 21 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-20 on @techczech</title><link>https://techczech.net/2011/09/20/the-day-2011-09-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/20/the-day-2011-09-20-on-techczech/</guid><description>Does the pending acquisition of Blackboard pose a threat to its clients or the whole elearning space? http://ow.ly/6yWDs # edtech # Can we finally put the issue of mirror neurons to bed? Their existence is irrelevant to embodied theories of language. http://ow.ly/6yW4l # Powered by Twitter Tools</description><pubDate>Tue, 20 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-19 on @techczech</title><link>https://techczech.net/2011/09/19/the-day-2011-09-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/19/the-day-2011-09-19-on-techczech/</guid><description>Claims by neuroscience must be constantly reexamined: Does damage to Broca&amp;#039;s area cause speech perception deficits? http://ow.ly/6yRVc # Powered by Twitter Tools</description><pubDate>Mon, 19 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-18 on @techczech</title><link>https://techczech.net/2011/09/18/the-day-2011-09-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/18/the-day-2011-09-18-on-techczech/</guid><description>Agree with @ mweller that universities have been neglecting teaching for too long. Now they deserve their competition. http://ow.ly/6xzUP # Anthropology Major Fox: Firefox has encountered a problem with windows http://ow.ly/6xsBy # How can one not love: Anthropology Major Fox http://ow.ly/6xstD # Powered by Twitter Tools</description><pubDate>Sun, 18 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-17 on @techczech</title><link>https://techczech.net/2011/09/17/the-day-2011-09-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/17/the-day-2011-09-17-on-techczech/</guid><description>Finally, a fair non-hagiographic assessment of the impact of Steve Jobs on the Digital Campus podcast http://ow.ly/6xjoM # edtech #stevejobs # @ mricheynams Thanks. That&amp;#039;s good to know. in reply to mricheynams # Anybody has experience of TenMarks Online Math Programs? Any OpenSource alternatives? http://ow.ly/6xhG7 # edtech #mathchat (via @ techcrunch ) # @ NeilMilliken…</description><pubDate>Sat, 17 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-16 on @techczech</title><link>https://techczech.net/2011/09/16/the-day-2011-09-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/16/the-day-2011-09-16-on-techczech/</guid><description>&quot;The importance of style in academic writing&quot; - eg. &quot;ability to write articles that look like published economics papers&quot; http://ow.ly/6w2Hm # Powered by Twitter Tools</description><pubDate>Fri, 16 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-15 on @techczech</title><link>https://techczech.net/2011/09/15/the-day-2011-09-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/15/the-day-2011-09-15-on-techczech/</guid><description>Assessment revolution &amp;gt; RT @ donpresant : Mozilla # openbadges beta 1 released Sep 14 -key building block for # eportfolio http://t.co/yGBDXAEj # &quot;How to become a celebrity scientific expert&quot; http://ow.ly/6v1OR &amp;lt; the media hacks are just as much at fault as the scientific ones # scichat # Tell @ Jeremy_Hunt that sexualization of children…</description><pubDate>Thu, 15 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-09-15</title><link>https://techczech.net/2011/09/15/twitter-weekly-updates-for-2011-09-15/</link><guid isPermaLink="true">https://techczech.net/2011/09/15/twitter-weekly-updates-for-2011-09-15/</guid><description>Assessment revolution &amp;gt; RT @ donpresant : Mozilla # openbadges beta 1 released Sep 14 -key building block for # eportfolio http://t.co/yGBDXAEj # &quot;How to become a celebrity scientific expert&quot; http://ow.ly/6v1OR &amp;lt; the media hacks are just as much at fault as the scientific ones # scichat # Tell @ Jeremy_Hunt that sexualization of children…</description><pubDate>Thu, 15 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-14 on @techczech</title><link>https://techczech.net/2011/09/14/the-day-2011-09-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/14/the-day-2011-09-14-on-techczech/</guid><description>Has Box.net ditched their free plans? They only list one plan on their website. What are they trying to hide? # edtech # &quot;Vampirical&quot; (v empirical) arguments are those that are &quot;unable to be killed by mere evidence&quot; http://ow.ly/6tXHB # til # Powered by Twitter Tools</description><pubDate>Wed, 14 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-13 on @techczech</title><link>https://techczech.net/2011/09/13/the-day-2011-09-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/13/the-day-2011-09-13-on-techczech/</guid><description>Any experiences with using the Nisai platform? http://t.co/U9hlP96 # edtech #edchatuk # Not &amp;gt; &quot;The Most Effective Method for Learning a Language Alone&quot; &amp;lt; but not a bad one. http://t.co/1AiOODX # ellchat # RT @ Nevbar1 : Gaming can inform teaching http://t.co/MOUrfiV # education #edchat # ukedchat # Powered by Twitter Tools</description><pubDate>Tue, 13 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-12 on @techczech</title><link>https://techczech.net/2011/09/12/the-day-2011-09-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/12/the-day-2011-09-12-on-techczech/</guid><description>Don&amp;#039;t try to reform them &amp;gt; RT @ John_Pallister : How do we make our schools fit to face the 21st century? http://t.co/f6VOrm8 # ccc11 #edchat # I&amp;#039;m just as guilty as the whole profession by not giving enough room to intonation in TEFL. We should do better: http://ow.ly/6rLJS # ellchat # Neuroskeptic: Neuroscience Fails…</description><pubDate>Mon, 12 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-10 on @techczech</title><link>https://techczech.net/2011/09/10/the-day-2011-09-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/10/the-day-2011-09-10-on-techczech/</guid><description>Just found out that LDAP integration isn&amp;#039;t ready for # Drupal 7. In effect, Drupal 7 Product has still not been released. http://ow.ly/6qIrd # &quot;How good is published academic research?&quot; &amp;lt; Pretty dismal by all account. I for one am not surprised. http://ow.ly/6qDt2 # Interesting but not shocking&amp;gt; RT @ localization : Pahking the cah?…</description><pubDate>Sat, 10 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-09 on @techczech</title><link>https://techczech.net/2011/09/09/the-day-2011-09-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/09/the-day-2011-09-09-on-techczech/</guid><description>The most important thing is neither what, nor how, nor where we&amp;#039;re teaching. It is THAT we&amp;#039;re teaching! http://t.co/f6VOrm8 # edchat # It&amp;#039;s doubtful education reform can kickstart the economy. It&amp;#039;s certain a growing economy can kickstart education reform. # edchatuk #edchat # Comenius had a motto &quot;school by play&quot; that was on all our…</description><pubDate>Fri, 09 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-08 on @techczech</title><link>https://techczech.net/2011/09/08/the-day-2011-09-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/08/the-day-2011-09-08-on-techczech/</guid><description>Michael Hart, Project Gutenberg&amp;#039;s e-book loving founder, passes away http://ow.ly/6pms0 # Just had a chat with an enthusiastic non-techie # Android switcher who ditched # iPhone after Bonjour restarted her machine. # itunesisavirus # @ xtalkprogrammer No doubt. Not even western. School bus is a US-based metaphors. School buses are rare even in UK. in…</description><pubDate>Thu, 08 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-09-08</title><link>https://techczech.net/2011/09/08/twitter-weekly-updates-for-2011-09-08/</link><guid isPermaLink="true">https://techczech.net/2011/09/08/twitter-weekly-updates-for-2011-09-08/</guid><description>Michael Hart, Project Gutenberg&amp;#039;s e-book loving founder, passes away http://ow.ly/6pms0 # Just had a chat with an enthusiastic non-techie # Android switcher who ditched # iPhone after Bonjour restarted her machine. # itunesisavirus # @ xtalkprogrammer No doubt. Not even western. School bus is a US-based metaphors. School buses are rare even in UK. in…</description><pubDate>Thu, 08 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-07 on @techczech</title><link>https://techczech.net/2011/09/07/the-day-2011-09-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/07/the-day-2011-09-07-on-techczech/</guid><description>Maybe, but not in any meaningful sense! RT @ aboutworldlangs : Bilingual brain may start to fade by age 1 http://ow.ly/6o4pt # MPAA&amp;#039;s Bogus &amp;#039;Piracy&amp;#039; Numbers Mean It Thinks Downloaders Would Buy 200 More DVDs Per Year http://ow.ly/6o3Vg &amp;lt; How is this news!? # @ eucampaign Great. What software was used to do the recording…</description><pubDate>Wed, 07 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-06 on @techczech</title><link>https://techczech.net/2011/09/06/the-day-2011-09-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/06/the-day-2011-09-06-on-techczech/</guid><description>VLE&amp;#039;s not dead. It&amp;#039;s the hype around it. &amp;gt; RT @ DavidSWestwood : Is the vle dead? Someone check for a pulse # altc2011 #edtech # &quot;When communities in Higher Ed break down due to redundancy and casualisation of labour what happens to OERs?&quot; http://ow.ly/6mqPU # altc2011 # Agree &amp;gt; Managerialist models won&amp;#039;t work for…</description><pubDate>Tue, 06 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-05 on @techczech</title><link>https://techczech.net/2011/09/05/the-day-2011-09-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/05/the-day-2011-09-05-on-techczech/</guid><description>Checking out &quot;5th SLANGUAGES Annual Symposium&quot; on Virtual Round Table Conference: http://t.co/9Be6hj7 # Powered by Twitter Tools</description><pubDate>Mon, 05 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-04 on @techczech</title><link>https://techczech.net/2011/09/04/the-day-2011-09-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/04/the-day-2011-09-04-on-techczech/</guid><description>Anthropologist&amp;#039;s take on # stevejobs &quot;Forget Steve Jobs&quot; http://ow.ly/6lbdx # &quot;there is no education in social networking&quot; says a school principal, can he guarantee education in his school, though? # edchat .. # Open tweet @ adobe : Fire all your programmers &amp; replace them with ones who can update your buggy software without requiring…</description><pubDate>Sun, 04 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-03 on @techczech</title><link>https://techczech.net/2011/09/03/the-day-2011-09-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/03/the-day-2011-09-03-on-techczech/</guid><description>Much of IT training for teachers is counterproductive-by the time they get to use their knowledge, all they remember is complexity. # edchat # Powered by Twitter Tools</description><pubDate>Sat, 03 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-09-02 on @techczech</title><link>https://techczech.net/2011/09/02/the-day-2011-09-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/02/the-day-2011-09-02-on-techczech/</guid><description>@ Rackspace Just want to see what VPS services you offer at what prices. All I get is sales prattle. Came recommended, felt like wasted time. in reply to Rackspace # I cannot believe the lengths @ rackspace will go to on their UK website to prevent me from buying VPS services from them. #…</description><pubDate>Fri, 02 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>CiviEvent Wishlist (#CiviCRM)</title><link>https://techczech.net/2011/09/01/civievent-wishlist-civicrm/</link><guid isPermaLink="true">https://techczech.net/2011/09/01/civievent-wishlist-civicrm/</guid><description>We have been using CiviCRM for event management for over a year. This list covers the sort of things that might be needed by an organization running a wide range of events and courses of different types. Event management Easier search : There should be an equivalent of the quick search bar for contacts for…</description><pubDate>Thu, 01 Sep 2011 00:00:00 GMT</pubDate><category>CiviCRM</category><category>Business</category><category>CiviCRM</category><category>Event management</category></item><item><title>The day  2011-09-01 on @techczech</title><link>https://techczech.net/2011/09/01/the-day-2011-09-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/09/01/the-day-2011-09-01-on-techczech/</guid><description>Great idea - would fit in with open curriculum: &quot;Fixing the talent gap with # Drupal training for the masses&quot; http://ow.ly/6iTBS # drupaledu # Powered by Twitter Tools</description><pubDate>Thu, 01 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-09-01</title><link>https://techczech.net/2011/09/01/twitter-weekly-updates-for-2011-09-01/</link><guid isPermaLink="true">https://techczech.net/2011/09/01/twitter-weekly-updates-for-2011-09-01/</guid><description>Great idea - would fit in with open curriculum: &quot;Fixing the talent gap with # Drupal training for the masses&quot; http://ow.ly/6iTBS # drupaledu # &quot;Gender gap in spatial abilities depends on females&amp;#039; role in society&quot; http://ow.ly/6hqPb # edchat # Project Helps Get Teens Back into Education through Shooters http://ow.ly/6gFZW # edtech #edchat # Great write-up…</description><pubDate>Thu, 01 Sep 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Civi Email Wishlist (#CiviCRM)</title><link>https://techczech.net/2011/08/31/civi-email-wishlist-civicrm/</link><guid isPermaLink="true">https://techczech.net/2011/08/31/civi-email-wishlist-civicrm/</guid><description>I was only able to join the recent CiviCRM book sprint for 2 days but I did spend most of that time working on documenting email in Civi (both CiviMail and core email functionality). As part of that process I discovered a lot of things about email in Civi and hopefully made those features explicit…</description><pubDate>Wed, 31 Aug 2011 00:00:00 GMT</pubDate><category>Misc</category></item><item><title>The day  2011-08-31 on @techczech</title><link>https://techczech.net/2011/08/31/the-day-2011-08-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/31/the-day-2011-08-31-on-techczech/</guid><description>&quot;Gender gap in spatial abilities depends on females&amp;#039; role in society&quot; http://ow.ly/6hqPb # edchat # Powered by Twitter Tools</description><pubDate>Wed, 31 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-30 on @techczech</title><link>https://techczech.net/2011/08/30/the-day-2011-08-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/30/the-day-2011-08-30-on-techczech/</guid><description>Project Helps Get Teens Back into Education through Shooters http://ow.ly/6gFZW # edtech #edchat # Great write-up of the open space on # Drupal and education. http://ow.ly/6gH7l # drupaledu # &quot;Superior Alternatives to Crappy Windows Software&quot; http://ow.ly/6gFLb # edtech # Ads on Slideshare ads are getting more and more intrusive. Now they are covering content. Is…</description><pubDate>Tue, 30 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-29 on @techczech</title><link>https://techczech.net/2011/08/29/the-day-2011-08-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/29/the-day-2011-08-29-on-techczech/</guid><description>It&amp;#039;s been a joy using Booki.cc for the # CiviCRM book sprint. What a great way to collaborate on large books. http://ow.ly/6fykx # edtech # Emerging Asynchronous Conversation Models http://ow.ly/6f1RT # edchat #edtech # More conferences in more fields should emphasize code sprint-like mentality: http://ow.ly/6f1J9 # drupal #codesprint # edchat # Powered by Twitter Tools</description><pubDate>Mon, 29 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-28 on @techczech</title><link>https://techczech.net/2011/08/28/the-day-2011-08-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/28/the-day-2011-08-28-on-techczech/</guid><description>Just joined the # CiviCRM documentation sprint in the English countryside. Some great work going on. # RT @ learningdrupal : Listen to @ techczech and I share some models for potential # drupalcertification http://t.co/8rLryGi - # drupal #drupaledu # Powered by Twitter Tools</description><pubDate>Sun, 28 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-27 on @techczech</title><link>https://techczech.net/2011/08/27/the-day-2011-08-27-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2011/08/27/the-day-2011-08-27-on-techczech-2/</guid><description>Just uploaded &amp;#039;How Do You Know that Gal Knows Drupal? Towards an Open Source...&amp;#039; to SlideShare. http://t.co/n6ZLih1 # Powered by Twitter Tools</description><pubDate>Sat, 27 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-27 on @techczech</title><link>https://techczech.net/2011/08/27/the-day-2011-08-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/27/the-day-2011-08-27-on-techczech/</guid><description>Just uploaded &amp;#039;How Do You Know that Gal Knows Drupal? Towards an Open Source...&amp;#039; to SlideShare. http://t.co/n6ZLih1 # Powered by Twitter Tools</description><pubDate>Sat, 27 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-26 on @techczech</title><link>https://techczech.net/2011/08/26/the-day-2011-08-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/26/the-day-2011-08-26-on-techczech/</guid><description>Lesson for us all: &quot;When Students Run the Help Desk&quot; http://ow.ly/6dqfA # edchat #edtech # Blackboard Collaborate launches, does not list prices. Is anyone surprised? http://ow.ly/6dn2S # edtech # More ideas for community-based certification: &quot;Using...Open Badge project with young learners&quot; http://ow.ly/6d7Jm # drupalcon #drupaledu # Powered by Twitter Tools</description><pubDate>Fri, 26 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-25 on @techczech</title><link>https://techczech.net/2011/08/25/the-day-2011-08-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/25/the-day-2011-08-25-on-techczech/</guid><description>RT @ kattekrab : http://t.co/434qn8v # drupaledu From yesterdays session on an open curriculum. How might we define the competencies of # drupal # @ tomstandage Loved the # DrupalCon keynote. Hope the new book will address issues of prestige and credibility formation in the past v now. # &quot;Before the rise of mass media…</description><pubDate>Thu, 25 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-08-25</title><link>https://techczech.net/2011/08/25/twitter-weekly-updates-for-2011-08-25/</link><guid isPermaLink="true">https://techczech.net/2011/08/25/twitter-weekly-updates-for-2011-08-25/</guid><description>RT @ kattekrab : http://t.co/434qn8v # drupaledu From yesterdays session on an open curriculum. How might we define the competencies of # drupal # @ tomstandage Loved the # DrupalCon keynote. Hope the new book will address issues of prestige and credibility formation in the past v now. # &quot;Before the rise of mass media…</description><pubDate>Thu, 25 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-23 on @techczech</title><link>https://techczech.net/2011/08/23/the-day-2011-08-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/23/the-day-2011-08-23-on-techczech/</guid><description>Join the online conversation on Drupal Certification here: http://t.co/jfniIR8 # DrupalCon #DrupalEdu # Join us for a # Drupal Curriculum and Certification BoF at 3.15 in Room 332 http://t.co/HPkR1EH # DrupalCon #DrupalEdu # # Drupal Curriculum and Certification session starting at 2.15 in Maple Room at # DrupalCon #DrupalEdu # Just arrived at # DrupalCon…</description><pubDate>Tue, 23 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-22 on @techczech</title><link>https://techczech.net/2011/08/22/the-day-2011-08-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/22/the-day-2011-08-22-on-techczech/</guid><description>Just uploaded &amp;#039;CiviCRM: The Community Advantage&amp;#039; to SlideShare. http://t.co/qZco3w3 # Ajax session brings up exciting possibilities for # CiviCRM at # CiviCon # Association for Learning Technology chose # Drupal and # CiviCRM for their new web design with good results. # civicon # # nginx a more efficient alternative to Apache for hosting #…</description><pubDate>Mon, 22 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-21 on @techczech</title><link>https://techczech.net/2011/08/21/the-day-2011-08-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/21/the-day-2011-08-21-on-techczech/</guid><description>Emotions in More than One Language &amp;lt; another stellar blog post on # bilingualism http://ow.ly/68bZw # ellchat # Powered by Twitter Tools</description><pubDate>Sun, 21 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-20 on @techczech</title><link>https://techczech.net/2011/08/20/the-day-2011-08-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/20/the-day-2011-08-20-on-techczech/</guid><description>@ Dj3bbZ Could you post more about your ideas on http://t.co/rFKM7vp? Cc @ learningdrupal # @ Dj3bbZ @learningdrupal @ dries With complexity it is hard to identify even the &quot;basics&quot;. A comprehensive curriculum is needed. # drupal in reply to Dj3bbZ # A most accurate assessment of David Starkey by GPK on Language Log: &quot;What…</description><pubDate>Sat, 20 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-08-11</title><link>https://techczech.net/2011/08/11/twitter-weekly-updates-for-2011-08-11/</link><guid isPermaLink="true">https://techczech.net/2011/08/11/twitter-weekly-updates-for-2011-08-11/</guid><description>&quot;Is it time to fork Drupal?&quot; &amp;lt; No, but a better separation between framework and product would be good. http://ow.ly/5XeJ6 # More academics should be called out for spouting garbage about areas where they don&amp;#039;t do research. Like this: http://ow.ly/5Xgl5 # Just completed State of Drupal 2011 survey. Top recommendation - interoperability of distributions! http://ow.ly/5XecS…</description><pubDate>Thu, 11 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-08 on @techczech</title><link>https://techczech.net/2011/08/08/the-day-2011-08-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/08/the-day-2011-08-08-on-techczech/</guid><description>&quot;Is it time to fork Drupal?&quot; &amp;lt; No, but a better separation between framework and product would be good. http://ow.ly/5XeJ6 # Powered by Twitter Tools</description><pubDate>Mon, 08 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-07 on @techczech</title><link>https://techczech.net/2011/08/07/the-day-2011-08-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/07/the-day-2011-08-07-on-techczech/</guid><description>More academics should be called out for spouting garbage about areas where they don&amp;#039;t do research. Like this: http://ow.ly/5Xgl5 # Just completed State of Drupal 2011 survey. Top recommendation - interoperability of distributions! http://ow.ly/5XecS # drupal # Powered by Twitter Tools</description><pubDate>Sun, 07 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-08-04</title><link>https://techczech.net/2011/08/04/twitter-weekly-updates-for-2011-08-04/</link><guid isPermaLink="true">https://techczech.net/2011/08/04/twitter-weekly-updates-for-2011-08-04/</guid><description>Good news: Google Chrome is UK&amp;#039;s second most-used web browser http://ow.ly/5RWL4 # edtech # Follow the exploits of @ millionmetreman who will row his 7th marathon later today with 19 to go for # dyslexiaitsme # dyslexia # Great idea: Forming a Drupal in Higher Edu Consortium http://ow.ly/5RBTL # drupal #edtech # The Innovative Educator…</description><pubDate>Thu, 04 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-08-01 on @techczech</title><link>https://techczech.net/2011/08/01/the-day-2011-08-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/08/01/the-day-2011-08-01-on-techczech/</guid><description>Good news: Google Chrome is UK&amp;#039;s second most-used web browser http://ow.ly/5RWL4 # edtech # Follow the exploits of @ millionmetreman who will row his 7th marathon later today with 19 to go for # dyslexiaitsme # dyslexia # Powered by Twitter Tools</description><pubDate>Mon, 01 Aug 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-31 on @techczech</title><link>https://techczech.net/2011/07/31/the-day-2011-07-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/31/the-day-2011-07-31-on-techczech/</guid><description>Great idea: Forming a Drupal in Higher Edu Consortium http://ow.ly/5RBTL # drupal #edtech # Powered by Twitter Tools</description><pubDate>Sun, 31 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-30 on @techczech</title><link>https://techczech.net/2011/07/30/the-day-2011-07-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/30/the-day-2011-07-30-on-techczech/</guid><description>The Innovative Educator: Is College Really for All? http://ow.ly/5Retv # edchat # @ lousylinguist Children respond generically even to questions like &amp;#039;How did you do on the test?&amp;#039; School and the world are separate domains. in reply to lousylinguist # @ lousylinguist Not sure &amp;#039;What did you learn&amp;#039; is generic as opposed to &amp;#039;How was…</description><pubDate>Sat, 30 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-29 on @techczech</title><link>https://techczech.net/2011/07/29/the-day-2011-07-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/29/the-day-2011-07-29-on-techczech/</guid><description>Google Books gets redesign still useless without notes and bookmarks. What is Google thinking?! http://ow.ly/5QNqc # googlebooks # Microsoft up to its old trick of spreading # FUD about competition. This is lying by implication! http://ow.ly/5QAfb # toil # @ subcide Thanks. So I discovered. But it actually is better this way. I don&amp;#039;t have…</description><pubDate>Fri, 29 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-07-28</title><link>https://techczech.net/2011/07/28/twitter-weekly-updates-for-2011-07-28/</link><guid isPermaLink="true">https://techczech.net/2011/07/28/twitter-weekly-updates-for-2011-07-28/</guid><description>Every developer should spend 30 minutes with a blind person browsing their site with a screen reader to get what # accessibility is about! # Just found out that my computer is 4.4 second behind using http://Time.is . Am slightly disappointed even if unsure behind what. # til # Test Your Website at Different Screen…</description><pubDate>Thu, 28 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-27 on @techczech</title><link>https://techczech.net/2011/07/27/the-day-2011-07-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/27/the-day-2011-07-27-on-techczech/</guid><description>Every developer should spend 30 minutes with a blind person browsing their site with a screen reader to get what # accessibility is about! # Just found out that my computer is 4.4 second behind using http://Time.is . Am slightly disappointed even if unsure behind what. # til # Powered by Twitter Tools</description><pubDate>Wed, 27 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-26 on @techczech</title><link>https://techczech.net/2011/07/26/the-day-2011-07-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/26/the-day-2011-07-26-on-techczech/</guid><description>Test Your Website at Different Screen Resolutions with Screenfly by QuirkTools http://ow.ly/5NVLA # edtech # Powered by Twitter Tools</description><pubDate>Tue, 26 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-25 on @techczech</title><link>https://techczech.net/2011/07/25/the-day-2011-07-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/25/the-day-2011-07-25-on-techczech/</guid><description>@ IamKalai I didn&amp;#039;t actually mean to teach Dothraki but to have students make up their own languages to help with structure. # ellchat in reply to IamKalai # Online # Kindle clippings converter is a godsend for anyone with &amp;#039;My Clippings.txt&amp;#039; file nearing half a megabyte! http://ow.ly/5MjH1 # edtech # There are far too…</description><pubDate>Mon, 25 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-24 on @techczech</title><link>https://techczech.net/2011/07/24/the-day-2011-07-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/24/the-day-2011-07-24-on-techczech/</guid><description>Funny about the iPhone appeal to women! Three women recently independently thanked me for recommending an Android phone. # iphone #edtech # &quot;What would a post-test era look like for our schools?&quot; &amp;lt; Pretty much the same as the pre-test era. http://t.co/KoIyW04 # edchat # Does memorable learning lead to memories of what is learned…</description><pubDate>Sun, 24 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-23 on @techczech</title><link>https://techczech.net/2011/07/23/the-day-2011-07-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/23/the-day-2011-07-23-on-techczech/</guid><description>I liked a @ YouTube video http://youtu.be/6VCdJyOAQYM?a Arrested Development - Tennessee # It was fun joining 2 customer service reps at a phone company outlet in persuading a woman to buy Galaxy S2 instead of iPhone 4. # android # Don&amp;#039;t neglect VirtualBoxes if you want to try out different Linux flavors. http://ow.ly/5LvRh # edtech…</description><pubDate>Sat, 23 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-22 on @techczech</title><link>https://techczech.net/2011/07/22/the-day-2011-07-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/22/the-day-2011-07-22-on-techczech/</guid><description>Relieved I only didn&amp;#039;t know 2 of these 12 must know # Zotero tips and techniques by The Ideophone http://ow.ly/5JIlM # edtech # Webinar recording now available: Dyslexia and Co-occurring Difficulties http://ow.ly/5KdXX # dyslexia #edchat # edchatuk # Not surprised BBC awful at science reporting... http://ow.ly/1uRk2u # Powered by Twitter Tools</description><pubDate>Fri, 22 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-21 on @techczech</title><link>https://techczech.net/2011/07/21/the-day-2011-07-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/21/the-day-2011-07-21-on-techczech/</guid><description>Tim Harford: &quot;It&amp;#039;s hard to make good mistakes.&quot; http://ow.ly/5JQfr # ted #edchat # edchatuk # Finally I can use Zotero in Chrome thanks to this tip by The Ideophone http://ow.ly/5JIfg # zotero #edtech # How language lies: &quot;You don’t need no stinkin’ passive&quot; http://ow.ly/5JHSQ # engchat # Powered by Twitter Tools</description><pubDate>Thu, 21 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-07-21</title><link>https://techczech.net/2011/07/21/twitter-weekly-updates-for-2011-07-21/</link><guid isPermaLink="true">https://techczech.net/2011/07/21/twitter-weekly-updates-for-2011-07-21/</guid><description>Tim Harford: &quot;It&amp;#039;s hard to make good mistakes.&quot; http://ow.ly/5JQfr # ted #edchat # edchatuk # Finally I can use Zotero in Chrome thanks to this tip by The Ideophone http://ow.ly/5JIfg # zotero #edtech # How language lies: &quot;You don’t need no stinkin’ passive&quot; http://ow.ly/5JHSQ # engchat # Pledged a bit on Kickstarter for Nataly Dawn&amp;#039;s…</description><pubDate>Thu, 21 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-19 on @techczech</title><link>https://techczech.net/2011/07/19/the-day-2011-07-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/19/the-day-2011-07-19-on-techczech/</guid><description>Pledged a bit on Kickstarter for Nataly Dawn&amp;#039;s first solo album: http://t.co/WhNDx4h # Just listening to a presentation by @ 11johnnyd11 on https://www.goqsoftware.com # dyslexia # Powered by Twitter Tools</description><pubDate>Tue, 19 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-17 on @techczech</title><link>https://techczech.net/2011/07/17/the-day-2011-07-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/17/the-day-2011-07-17-on-techczech/</guid><description>New on MetaphorHacket.net: The death of a memory: Missing metaphors of remembering and forgetting? http://ow.ly/5Gutw # memory # Powered by Twitter Tools</description><pubDate>Sun, 17 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-15 on @techczech</title><link>https://techczech.net/2011/07/15/the-day-2011-07-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/15/the-day-2011-07-15-on-techczech/</guid><description>Just had my first hangout on Google+. Impressed &amp; can&amp;#039;t wait for the business version - could replace Skype for meetings http://ow.ly/5FfFj # Powered by Twitter Tools</description><pubDate>Fri, 15 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-07-14</title><link>https://techczech.net/2011/07/14/twitter-weekly-updates-for-2011-07-14/</link><guid isPermaLink="true">https://techczech.net/2011/07/14/twitter-weekly-updates-for-2011-07-14/</guid><description>The death of a memory: Missing metaphors of remembering and forgetting? http://ow.ly/5Df1i # memory # How To Run Multiple Skype Accounts With Multi Skype Launcher [Windows] http://ow.ly/5DdaF # edtech # &quot;There is a long standing myth that bilinguals are born translators.&quot; http://ow.ly/5ARJi # ellchat #engchat # Interesting experiment in community-based open academic publishing - PressForward…</description><pubDate>Thu, 14 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-13 on @techczech</title><link>https://techczech.net/2011/07/13/the-day-2011-07-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/13/the-day-2011-07-13-on-techczech/</guid><description>The death of a memory: Missing metaphors of remembering and forgetting? http://ow.ly/5Df1i # memory # How To Run Multiple Skype Accounts With Multi Skype Launcher [Windows] http://ow.ly/5DdaF # edtech # Powered by Twitter Tools</description><pubDate>Wed, 13 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-10 on @techczech</title><link>https://techczech.net/2011/07/10/the-day-2011-07-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/10/the-day-2011-07-10-on-techczech/</guid><description>&quot;There is a long standing myth that bilinguals are born translators.&quot; http://ow.ly/5ARJi # ellchat #engchat # Interesting experiment in community-based open academic publishing - PressForward http://ow.ly/5AKQR # Powered by Twitter Tools</description><pubDate>Sun, 10 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-09 on @techczech</title><link>https://techczech.net/2011/07/09/the-day-2011-07-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/09/the-day-2011-07-09-on-techczech/</guid><description>Illusion of statistical induction... http://amzn.com/k/1JV54O6C9VO4Y # Kindle # Powered by Twitter Tools</description><pubDate>Sat, 09 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-07 on @techczech</title><link>https://techczech.net/2011/07/07/the-day-2011-07-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/07/the-day-2011-07-07-on-techczech/</guid><description>Who knew cups playing was its own little genre: http://ow.ly/5zivb and http://ow.ly/5zitb and more # til # I liked a @ YouTube video http://youtu.be/XKcChGsDqnU?a You&amp;#039;re Gonna Miss Me- Lulu and the Lampshades (Cover) # Don&amp;#039;t Forget to Join the free webinar today: Can studying the brain help us understand dyslexia? http://ow.ly/5yyyY # dyslexia #til #…</description><pubDate>Thu, 07 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-07-07</title><link>https://techczech.net/2011/07/07/twitter-weekly-updates-for-2011-07-07-2/</link><guid isPermaLink="true">https://techczech.net/2011/07/07/twitter-weekly-updates-for-2011-07-07-2/</guid><description>Who knew cups playing was its own little genre: http://ow.ly/5zivb and http://ow.ly/5zitb and more # til # I liked a @ YouTube video http://youtu.be/XKcChGsDqnU?a You&amp;#039;re Gonna Miss Me- Lulu and the Lampshades (Cover) # Don&amp;#039;t Forget to Join the free webinar today: Can studying the brain help us understand dyslexia? http://ow.ly/5yyyY # dyslexia #til #…</description><pubDate>Thu, 07 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-07-07</title><link>https://techczech.net/2011/07/07/twitter-weekly-updates-for-2011-07-07/</link><guid isPermaLink="true">https://techczech.net/2011/07/07/twitter-weekly-updates-for-2011-07-07/</guid><description>Who knew cups playing was its own little genre: http://ow.ly/5zivb and http://ow.ly/5zitb and more # til # I liked a @ YouTube video http://youtu.be/XKcChGsDqnU?a You&amp;#039;re Gonna Miss Me- Lulu and the Lampshades (Cover) # Don&amp;#039;t Forget to Join the free webinar today: Can studying the brain help us understand dyslexia? http://ow.ly/5yyyY # dyslexia #til #…</description><pubDate>Thu, 07 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-05 on @techczech</title><link>https://techczech.net/2011/07/05/the-day-2011-07-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/05/the-day-2011-07-05-on-techczech/</guid><description>Video now available of &quot;Online Corpus: Literacy Teachers&amp;#039; Best Friend‏&quot; http://ow.ly/5vPNO # literacy #edchat # edtech #ellchat # engchat # Starting now: Free webinar: Intro to CiviCRM: Open Source Constituent Relationship Manager http://ow.ly/5wUrg # civicrm #edtech # drupal # That actually sounds low: 34% of adults are &amp;#039;overwhelmed&amp;#039; by technology http://ow.ly/5wOmx # edtech # Powered…</description><pubDate>Tue, 05 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-04 on @techczech</title><link>https://techczech.net/2011/07/04/the-day-2011-07-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/04/the-day-2011-07-04-on-techczech/</guid><description>Moodle 2.1 has been released! http://ow.ly/5wjQu # moodle &amp;lt; shocked it&amp;#039;s actually on time but excited to see the changes # Presentation now available: &quot;Online corpus: Literacy teacher for literacy teachers&quot; http://ow.ly/5v8mt # ellchat #engchat # literacy #dyslexia # Free Public Lecture on 7 July: Can studying the brain help us understand dyslexia? http://ow.ly/5vjtV #…</description><pubDate>Mon, 04 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-03 on @techczech</title><link>https://techczech.net/2011/07/03/the-day-2011-07-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/03/the-day-2011-07-03-on-techczech/</guid><description>A heartwarming Linguist&amp;#039;s tale from the Sofia airport. The only airport where I ever missed a plane (15 yrs ago)! http://ow.ly/5vONK # &quot;However one judges the US waging of the war ....we should know what each of those wars has been like.&quot; http://ow.ly/5vK6P # til # Just favorited &amp;#039;Language corpora and the language classroom.&amp;#039; on…</description><pubDate>Sun, 03 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-02 on @techczech</title><link>https://techczech.net/2011/07/02/the-day-2011-07-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/02/the-day-2011-07-02-on-techczech/</guid><description>On medical analogies... http://amzn.com/k/2WYXILK2L3BLG # Kindle # Powered by Twitter Tools</description><pubDate>Sat, 02 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-07-01 on @techczech</title><link>https://techczech.net/2011/07/01/the-day-2011-07-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/07/01/the-day-2011-07-01-on-techczech/</guid><description>Just uploaded &amp;#039;Online corpus: Literacy teacher for literacy teachers&amp;#039; to SlideShare. http://slidesha.re/mgT5VB # Powered by Twitter Tools</description><pubDate>Fri, 01 Jul 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-30 on @techczech</title><link>https://techczech.net/2011/06/30/the-day-2011-06-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/30/the-day-2011-06-30-on-techczech/</guid><description>Attending: Focus on the Practitioner, Dyslexia Guild Conference 2011 | Dyslexia Action http://ow.ly/1ucTGA # dyslexia # Powered by Twitter Tools</description><pubDate>Thu, 30 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-06-30</title><link>https://techczech.net/2011/06/30/twitter-weekly-updates-for-2011-06-30/</link><guid isPermaLink="true">https://techczech.net/2011/06/30/twitter-weekly-updates-for-2011-06-30/</guid><description>Attending: Focus on the Practitioner, Dyslexia Guild Conference 2011 | Dyslexia Action http://ow.ly/1ucTGA # dyslexia # Language Log » What we believe in (evolution 12th most common thing) http://ow.ly/5taDZ # til # xkcd as always spot on - this time on University Website Design http://ow.ly/5q7P1 # edtech # Geeks to educators &amp; designers on learning…</description><pubDate>Thu, 30 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-29 on @techczech</title><link>https://techczech.net/2011/06/29/the-day-2011-06-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/29/the-day-2011-06-29-on-techczech/</guid><description>Language Log » What we believe in (evolution 12th most common thing) http://ow.ly/5taDZ # til # Powered by Twitter Tools</description><pubDate>Wed, 29 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-28 on @techczech</title><link>https://techczech.net/2011/06/28/the-day-2011-06-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/28/the-day-2011-06-28-on-techczech/</guid><description>xkcd as always spot on - this time on University Website Design http://ow.ly/5q7P1 # edtech # Powered by Twitter Tools</description><pubDate>Tue, 28 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-27 on @techczech</title><link>https://techczech.net/2011/06/27/the-day-2011-06-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/27/the-day-2011-06-27-on-techczech/</guid><description>Geeks to educators &amp; designers on learning &amp;gt; take into account &quot;people who have different drives and priorities&quot; http://ow.ly/5q7TX # edchat # Powered by Twitter Tools</description><pubDate>Mon, 27 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-26 on @techczech</title><link>https://techczech.net/2011/06/26/the-day-2011-06-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/26/the-day-2011-06-26-on-techczech/</guid><description>How do you tell great music? It sounds as powerful in 8-bit as on an LP. Listen to Kind of Bloop now! http://ow.ly/5q8Nt # Today I Learned about Today I Learned on Reddit http://ow.ly/5q7Wg # til #edchat # Powered by Twitter Tools</description><pubDate>Sun, 26 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-25 on @techczech</title><link>https://techczech.net/2011/06/25/the-day-2011-06-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/25/the-day-2011-06-25-on-techczech/</guid><description>@ crazywizdom Very easy. Crashplan just runs in the background and does a back up every few hours. One online and one to an external HDD. in reply to crazywizdom # 6 months and 10 days later all my files are backed up to @ crashplan ! Being backed up in a cloud is a…</description><pubDate>Sat, 25 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-16 on @techczech</title><link>https://techczech.net/2011/06/16/the-day-2011-06-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/16/the-day-2011-06-16-on-techczech/</guid><description>Free Online Public Lecture: Dyslexia and Co-occurring Difficulties on 16 June http://ow.ly/3QdGX # edchat #dyslexia # I had to go to Belgium to meet someone who reads my blog on http://t.co/wRElgtu # Powered by Twitter Tools</description><pubDate>Thu, 16 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-06-16</title><link>https://techczech.net/2011/06/16/twitter-weekly-updates-for-2011-06-16/</link><guid isPermaLink="true">https://techczech.net/2011/06/16/twitter-weekly-updates-for-2011-06-16/</guid><description>Free Online Public Lecture: Dyslexia and Co-occurring Difficulties on 16 June http://ow.ly/3QdGX # edchat #dyslexia # I had to go to Belgium to meet someone who reads my blog on http://t.co/wRElgtu # Language is like chess in that speaking it fluently is not relying on the underlying rules but on larger patterns and shapes. #…</description><pubDate>Thu, 16 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-13 on @techczech</title><link>https://techczech.net/2011/06/13/the-day-2011-06-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/13/the-day-2011-06-13-on-techczech/</guid><description>Language is like chess in that speaking it fluently is not relying on the underlying rules but on larger patterns and shapes. # Powered by Twitter Tools</description><pubDate>Mon, 13 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-11 on @techczech</title><link>https://techczech.net/2011/06/11/the-day-2011-06-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/11/the-day-2011-06-11-on-techczech/</guid><description>We need more of: &quot;an environment where the goal was to give intensely practical answers to basic theoretical questions&quot; http://ow.ly/5foP5 # Clouds do the darnedest things. There&amp;#039;s a dinosaur eating a rhino outside my window! # Getting ready to travel to the land of # Drupal to do some # Linguistics Know no better way…</description><pubDate>Sat, 11 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-10 on @techczech</title><link>https://techczech.net/2011/06/10/the-day-2011-06-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/10/the-day-2011-06-10-on-techczech/</guid><description>Can&amp;#039;t see any legacy of Elluminate in Collabor8 - is it more than a repackaged Adobe Connect? http://ow.ly/5eCAI # edchat #edtech # Medicine only stopped killing more people than it cured in about the 1920s. &amp;lt; I learned from &amp;gt; http://ow.ly/5eAWa # Powered by Twitter Tools</description><pubDate>Fri, 10 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-09 on @techczech</title><link>https://techczech.net/2011/06/09/the-day-2011-06-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/09/the-day-2011-06-09-on-techczech/</guid><description>Can&amp;#039;t believe how old this is... http://amzn.com/k/S6C071S0NO01 # Kindle # @ jakubsuchy Actually, it was my Amazon (BoA) Credit Card. Not on the phone yet. in reply to jakubsuchy # Dyslexia Online Summer School 2011for non-specialist teachers now available http://ow.ly/5dKjx # dyslexia #edchatuk # cpd # Made my first purchase with # NFC today. Passion…</description><pubDate>Thu, 09 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-06-09</title><link>https://techczech.net/2011/06/09/twitter-weekly-updates-for-2011-06-09/</link><guid isPermaLink="true">https://techczech.net/2011/06/09/twitter-weekly-updates-for-2011-06-09/</guid><description>Can&amp;#039;t believe how old this is... http://amzn.com/k/S6C071S0NO01 # Kindle # @ jakubsuchy Actually, it was my Amazon (BoA) Credit Card. Not on the phone yet. in reply to jakubsuchy # Dyslexia Online Summer School 2011for non-specialist teachers now available http://ow.ly/5dKjx # dyslexia #edchatuk # cpd # Made my first purchase with # NFC today. Passion…</description><pubDate>Thu, 09 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-07 on @techczech</title><link>https://techczech.net/2011/06/07/the-day-2011-06-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/07/the-day-2011-06-07-on-techczech/</guid><description>Doing a webinar on how to do webinars. Feel free to join in: http://ow.ly/5chlk # edtech # Exciting news about CiviCRM and integration with Drupal&amp;#039;s Webform http://ow.ly/5bRXI # civicrm #drupal # Powered by Twitter Tools</description><pubDate>Tue, 07 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-05 on @techczech</title><link>https://techczech.net/2011/06/05/the-day-2011-06-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/05/the-day-2011-06-05-on-techczech/</guid><description>Not surprisingly Kindle&amp;#039;s Most Highlighted Passages of All Time are about marriage, happiness and weight loss. http://ow.ly/5anr6 # kindle # Powered by Twitter Tools</description><pubDate>Sun, 05 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-03 on @techczech</title><link>https://techczech.net/2011/06/03/the-day-2011-06-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/03/the-day-2011-06-03-on-techczech/</guid><description>&quot;contrary to popular opinion parental behaviour does not seem to play an important role [in children&amp;#039;s lang difficlts]&quot; http://j.mp/mHRclp # Powered by Twitter Tools</description><pubDate>Fri, 03 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-02 on @techczech</title><link>https://techczech.net/2011/06/02/the-day-2011-06-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/02/the-day-2011-06-02-on-techczech/</guid><description>We need to remember speaking languages is complicated on just so many levels: &quot;Refusing to speak a language&quot; http://ow.ly/58niX # engchat # &quot;Every time someone says, “I know what I saw” or “I have a clear memory” they are being profoundly naive.&quot; http://ow.ly/58n82 # edchat # Powered by Twitter Tools</description><pubDate>Thu, 02 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-06-02</title><link>https://techczech.net/2011/06/02/twitter-weekly-updates-for-2011-06-02-2/</link><guid isPermaLink="true">https://techczech.net/2011/06/02/twitter-weekly-updates-for-2011-06-02-2/</guid><description>We need to remember speaking languages is complicated on just so many levels: &quot;Refusing to speak a language&quot; http://ow.ly/58niX # engchat # &quot;Every time someone says, “I know what I saw” or “I have a clear memory” they are being profoundly naive.&quot; http://ow.ly/58n82 # edchat # Important linguistics read: &quot;On Chomsky and the Two Cultures…</description><pubDate>Thu, 02 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-06-02</title><link>https://techczech.net/2011/06/02/twitter-weekly-updates-for-2011-06-02/</link><guid isPermaLink="true">https://techczech.net/2011/06/02/twitter-weekly-updates-for-2011-06-02/</guid><description>We need to remember speaking languages is complicated on just so many levels: &quot;Refusing to speak a language&quot; http://ow.ly/58niX # engchat # &quot;Every time someone says, “I know what I saw” or “I have a clear memory” they are being profoundly naive.&quot; http://ow.ly/58n82 # edchat # Important linguistics read: &quot;On Chomsky and the Two Cultures…</description><pubDate>Thu, 02 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-06-01 on @techczech</title><link>https://techczech.net/2011/06/01/the-day-2011-06-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/06/01/the-day-2011-06-01-on-techczech/</guid><description>Important linguistics read: &quot;On Chomsky and the Two Cultures of Statistical Learning&quot; http://ow.ly/57M5c # Drupal and Education Open Space: Call for Participation http://ow.ly/57JpY # drupalcon #drupal # edtech # Language learning in literature as a source domain for generative metaphors http://j.mp/lU9vCT # ellchat #engchat # Powered by Twitter Tools</description><pubDate>Wed, 01 Jun 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-31 on @techczech</title><link>https://techczech.net/2011/05/31/the-day-2011-05-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/31/the-day-2011-05-31-on-techczech/</guid><description>RT @ StanCarey : Chav: the vile word at the heart of fractured Britain, by Polly Toynbee: http://bit.ly/jJvGJR # Powered by Twitter Tools</description><pubDate>Tue, 31 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-30 on @techczech</title><link>https://techczech.net/2011/05/30/the-day-2011-05-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/30/the-day-2011-05-30-on-techczech/</guid><description>YouTube - Hold On -Tom Waitresses http://ow.ly/55PW1 # bestprobableworld # Powered by Twitter Tools</description><pubDate>Mon, 30 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-29 on @techczech</title><link>https://techczech.net/2011/05/29/the-day-2011-05-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/29/the-day-2011-05-29-on-techczech/</guid><description>Seems that # Drupal versions have an &quot;official&quot; release and a &quot;unofficial&quot; release with Views and CCK upgrade path... http://ow.ly/55w4Y # RIP Gil Scott-Heron: 5 YouTube Videos To Remember Him By http://ow.ly/55gRh # Powered by Twitter Tools</description><pubDate>Sun, 29 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-28 on @techczech</title><link>https://techczech.net/2011/05/28/the-day-2011-05-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/28/the-day-2011-05-28-on-techczech/</guid><description>Rare truly exceptional TED talk: Bruce Aylward: How we&amp;#039;ll stop polio for good http://ow.ly/551mt # endpolio # &quot;...we&amp;#039;ve seen less interest in the necessity [of intellectual property] and more emphasis on the evil.&quot; http://ow.ly/5518C # copyright # Powered by Twitter Tools</description><pubDate>Sat, 28 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-27 on @techczech</title><link>https://techczech.net/2011/05/27/the-day-2011-05-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/27/the-day-2011-05-27-on-techczech/</guid><description>Not all elearning has to be online. Skill Share is a great example. http://ow.ly/1te55u # edchat # Powered by Twitter Tools</description><pubDate>Fri, 27 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-26 on @techczech</title><link>https://techczech.net/2011/05/26/the-day-2011-05-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/26/the-day-2011-05-26-on-techczech/</guid><description>Wow: &quot;The average age of the Top 20 software vendor companies is 31 years. None younger than 22 years!&quot; http://ow.ly/53ro6 # edtech # By 2050 most higher/further ed will be online. Prim/sec schools will continue as pastoral but not teaching institutions. # edchat #distanceed # Powered by Twitter Tools</description><pubDate>Thu, 26 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-05-26</title><link>https://techczech.net/2011/05/26/twitter-weekly-updates-for-2011-05-26/</link><guid isPermaLink="true">https://techczech.net/2011/05/26/twitter-weekly-updates-for-2011-05-26/</guid><description>Wow: &quot;The average age of the Top 20 software vendor companies is 31 years. None younger than 22 years!&quot; http://ow.ly/53ro6 # edtech # By 2050 most higher/further ed will be online. Prim/sec schools will continue as pastoral but not teaching institutions. # edchat #distanceed # Whitehead: &quot;Civilization advances by extending the number of operations we…</description><pubDate>Thu, 26 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-25 on @techczech</title><link>https://techczech.net/2011/05/25/the-day-2011-05-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/25/the-day-2011-05-25-on-techczech/</guid><description>Whitehead: &quot;Civilization advances by extending the number of operations we can perform without thinking about them.&quot; http://ow.ly/1taiLG # A # DrupalCon ecosystem session that could use a few votes: How can Drupal succeed in education and academia? http://ow.ly/52omH # Powered by Twitter Tools</description><pubDate>Wed, 25 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-24 on @techczech</title><link>https://techczech.net/2011/05/24/the-day-2011-05-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/24/the-day-2011-05-24-on-techczech/</guid><description>We must not forget about the underlying politics of computers in the classroom: http://ow.ly/51Hyn (via @ Downes ) # edchat #edtech # @ Mr_Casal My recommendation is to start on DrupalGardens which lets you move whole site later if needed. D7 much easier to maintain than D6. in reply to Mr_Casal # @ mr_casal Have…</description><pubDate>Tue, 24 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-23 on @techczech</title><link>https://techczech.net/2011/05/23/the-day-2011-05-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/23/the-day-2011-05-23-on-techczech/</guid><description>The things one hears on the internet: A Chinese heavy metal band playing The Internationale http://ow.ly/518wL # bestprobableworld # Vote for Drupal in Education and Education in Drupal Sessions at # DrupalCon London 2011 | groups.drupal.org http://ow.ly/4YtCL # Drupal # Being a language teacher is a special form of bilingualism. http://ow.ly/4ZDff # ellchat # Powered…</description><pubDate>Mon, 23 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-22 on @techczech</title><link>https://techczech.net/2011/05/22/the-day-2011-05-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/22/the-day-2011-05-22-on-techczech/</guid><description>You don’t have to be a xenophobe to think Britain being an island matters, but it helps! http://ow.ly/50fQi # &quot;Adults ask little kids what they want to be when they grow up because they&amp;#039;re looking for ideas.&quot; http://ow.ly/50dRI # edchat # Powered by Twitter Tools</description><pubDate>Sun, 22 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-21 on @techczech</title><link>https://techczech.net/2011/05/21/the-day-2011-05-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/21/the-day-2011-05-21-on-techczech/</guid><description>@ tim_hunt Thus my preference for OpenSource. Although historically, lock mechanism obscurity was a big part of security: http://j.mp/iZRWrZ in reply to tim_hunt # Powered by Twitter Tools</description><pubDate>Sat, 21 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-20 on @techczech</title><link>https://techczech.net/2011/05/20/the-day-2011-05-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/20/the-day-2011-05-20-on-techczech/</guid><description>Interesting to see that &quot;The business of Drupal&quot; applies to the economics of any software (open or not). http://ow.ly/4YWyj # Drupal #edtech # @ tim_hunt Still believe security benefits of OpenSource outweigh any advantage code obscurity might provide. But obscurity can play a role. in reply to tim_hunt # @ tim_hunt Absolutely. But of two…</description><pubDate>Fri, 20 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-19 on @techczech</title><link>https://techczech.net/2011/05/19/the-day-2011-05-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/19/the-day-2011-05-19-on-techczech/</guid><description>Wonder why # Drupal hasn&amp;#039;t made more of an impact on education and academia? Vot for this # DrupalCon London session: http://ow.ly/4WQGS # Great post on the evil of &quot;leadership&quot; training. Not sure &quot;management&quot; training is better. @ DonaldClark http://ow.ly/4YjoD # edchat # RT @ ostephens : V interesting - Zotero able to take advantage…</description><pubDate>Thu, 19 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-05-19</title><link>https://techczech.net/2011/05/19/twitter-weekly-updates-for-2011-05-19/</link><guid isPermaLink="true">https://techczech.net/2011/05/19/twitter-weekly-updates-for-2011-05-19/</guid><description>Wonder why # Drupal hasn&amp;#039;t made more of an impact on education and academia? Vot for this # DrupalCon London session: http://ow.ly/4WQGS # Great post on the evil of &quot;leadership&quot; training. Not sure &quot;management&quot; training is better. @ DonaldClark http://ow.ly/4YjoD # edchat # RT @ ostephens : V interesting - Zotero able to take advantage…</description><pubDate>Thu, 19 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-18 on @techczech</title><link>https://techczech.net/2011/05/18/the-day-2011-05-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/18/the-day-2011-05-18-on-techczech/</guid><description>Not sure @ echo360 is showing its product in the best light with # mootuk11 vids http://bit.ly/kOWvsW . Have yet to watch a session w/o timeout in reply to echo360 # Want to talk # Drupal curriculum and certification? Vote for this # DrupalCon London 2011 session: http://ow.ly/4WQqr # No kidding! 300 year-old intellectual property…</description><pubDate>Wed, 18 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-17 on @techczech</title><link>https://techczech.net/2011/05/17/the-day-2011-05-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/17/the-day-2011-05-17-on-techczech/</guid><description>Compulsory reading: Language Log » “Linguistic norms” vs. “groundless peeves” http://ow.ly/4Wc6s # edchat #engchat # What point to education? &quot;nearly all students educated in the US report having gotten anti-passive instruction&quot; http://ow.ly/4Wc30 # ellchat # &quot;we need to provide roles in our communities for pepole with autism&quot; &amp;lt; Autism diagnosis in cultural context http://ow.ly/4WbTI #…</description><pubDate>Tue, 17 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-16 on @techczech</title><link>https://techczech.net/2011/05/16/the-day-2011-05-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/16/the-day-2011-05-16-on-techczech/</guid><description>RT @ OpenSesameNow : Curation v. creation. RT @ zecool Seth Godin says the future of the library is the librarian http://bit.ly/lI6LwD # edchat # Excited to have @ learningdrupal as co-presenter for the # Drupal curriculum proposed session http://ow.ly/4VjjV for # DrupalCon in reply to learningdrupal # @ learningdrupal Wouldn&amp;#039;t you know it, I…</description><pubDate>Mon, 16 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-15 on @techczech</title><link>https://techczech.net/2011/05/15/the-day-2011-05-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/15/the-day-2011-05-15-on-techczech/</guid><description>Submitted # DrupalCon session: Towards an Open Source curriculum and a community-based accreditation scheme for # Drupal http://ow.ly/4UPvc # Just submitted a session proposal for # drupalcon on How can # Drupal succeed in education and academia? http://ow.ly/4UPuj # The problem with all the presentation packages available today is that you have to work around…</description><pubDate>Sun, 15 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-14 on @techczech</title><link>https://techczech.net/2011/05/14/the-day-2011-05-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/14/the-day-2011-05-14-on-techczech/</guid><description>Observational Epidemiology: Why companies do the things that they do -- sports sponsorship edition http://ow.ly/1sRuHk # Losos = salmon in Czech AFP: Salmon swim again in Czech Elbe river http://ow.ly/1sVZgJ # Best definition of culture... http://amzn.com/k/M7NLEM8ZTD8X # Kindle # Great insight into the first stages of the lexicographic process on John Wells’s phonetic blog on…</description><pubDate>Sat, 14 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-13 on @techczech</title><link>https://techczech.net/2011/05/13/the-day-2011-05-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/13/the-day-2011-05-13-on-techczech/</guid><description>Love the new Get Books feature on Calibre 0.8 - the quintessential software for e-reader owners! http://calibre-ebook.com # edtech # essential http://amzn.com/k/9A5VIUA7MKAH # Kindle # Glad to see the # Moodle Course Menu Block is back for 2.0 with additional features http://ow.ly/4TG9V Will be installing it soon. # Impressive # Moodle course format from Sussex…</description><pubDate>Fri, 13 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-12 on @techczech</title><link>https://techczech.net/2011/05/12/the-day-2011-05-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/12/the-day-2011-05-12-on-techczech/</guid><description>Personally I think Optimality Theory is just plain crazy but I still wish I could attend the symposium: http://ow.ly/4TjM4 # Great new interface to Google Books n-gram search now available: http://googlebooks.byu.edu courtesy of COCA&amp;#039;s creator Mark Davies # ellchat # Attending @ Acquia &amp;#039;s webinar on &quot;Evolving from Ubercart to Drupal Commerce&quot; http://ow.ly/4SWIy # drupal…</description><pubDate>Thu, 12 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-05-12</title><link>https://techczech.net/2011/05/12/twitter-weekly-updates-for-2011-05-12/</link><guid isPermaLink="true">https://techczech.net/2011/05/12/twitter-weekly-updates-for-2011-05-12/</guid><description>Personally I think Optimality Theory is just plain crazy but I still wish I could attend the symposium: http://ow.ly/4TjM4 # Great new interface to Google Books n-gram search now available: http://googlebooks.byu.edu courtesy of COCA&amp;#039;s creator Mark Davies # ellchat # Attending @ Acquia &amp;#039;s webinar on &quot;Evolving from Ubercart to Drupal Commerce&quot; http://ow.ly/4SWIy # drupal…</description><pubDate>Thu, 12 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-11 on @techczech</title><link>https://techczech.net/2011/05/11/the-day-2011-05-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/11/the-day-2011-05-11-on-techczech/</guid><description>I love infographics - wonder what http://visual.ly/98m47 will have to add to the genre. # edtech # RT @ philoquotes : A prince never lacks legitimate reasons to break his promise. ~ Machiavelli # &quot;[Pseudoteaching] is bad teaching disguised as great teaching.&quot; http://ow.ly/4RZ0a # edchat &amp;lt; Late to the party? # Powered by Twitter Tools</description><pubDate>Wed, 11 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-09 on @techczech</title><link>https://techczech.net/2011/05/09/the-day-2011-05-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/09/the-day-2011-05-09-on-techczech/</guid><description>Education panics have existed since there was education: RT @ classroomtools : Civics illiteracy is nothing new. http://bit.ly/jB8xcj # sschat # Very exciting and much needed: Open Academy: A Higher Education Drupal Product for Departmental Websites http://ow.ly/4QFkt # edtech #drupal # Please sponsor # TheMillionMetreChallenge by @ millionmetreman fundraising for It&amp;#039;s ME Learning Fund http://ow.ly/4Q7k2…</description><pubDate>Mon, 09 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-07 on @techczech</title><link>https://techczech.net/2011/05/07/the-day-2011-05-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/07/the-day-2011-05-07-on-techczech/</guid><description>RT @ metaphorhacker : New on MetaphorHacker.net: The natural logistics of life: The Internet really changes almost nothing http://j.mp/iKH3VI # &quot;What Happens After the Honeymoon?: Social Media Pedagogy in the Real World&quot; http://ow.ly/4Pj4z # edtech # Powered by Twitter Tools</description><pubDate>Sat, 07 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-06 on @techczech</title><link>https://techczech.net/2011/05/06/the-day-2011-05-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/06/the-day-2011-05-06-on-techczech/</guid><description>Great intro video from @ learningdrupal for complete Web Building beginners wanting to create a # Drupal site: http://ow.ly/4P1mh # edtech # Powered by Twitter Tools</description><pubDate>Fri, 06 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-05 on @techczech</title><link>https://techczech.net/2011/05/05/the-day-2011-05-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/05/the-day-2011-05-05-on-techczech/</guid><description>What are your top computer # accessibility tips for literacy teachers? # edtech #edchat # dyslexia # Powered by Twitter Tools</description><pubDate>Thu, 05 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-05-05</title><link>https://techczech.net/2011/05/05/twitter-weekly-updates-for-2011-05-05/</link><guid isPermaLink="true">https://techczech.net/2011/05/05/twitter-weekly-updates-for-2011-05-05/</guid><description>What are your top computer # accessibility tips for literacy teachers? # edtech #edchat # dyslexia # I must say @ greplin makes searching through Twitter and Gmail history a real joy again. http://t.co/FgjXf0n # RT @ geoffliving : 10 reasons to support women in tech today, plus $1000 in matching donations frm Network Solutions!…</description><pubDate>Thu, 05 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-04 on @techczech</title><link>https://techczech.net/2011/05/04/the-day-2011-05-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/04/the-day-2011-05-04-on-techczech/</guid><description>I must say @ greplin makes searching through Twitter and Gmail history a real joy again. http://t.co/FgjXf0n # RT @ geoffliving : 10 reasons to support women in tech today, plus $1000 in matching donations frm Network Solutions! http://lnkd.in/ySz7vt # UK outsourcing 8% of UK economy with over £200bn revenue - does this correspond to…</description><pubDate>Wed, 04 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-03 on @techczech</title><link>https://techczech.net/2011/05/03/the-day-2011-05-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/03/the-day-2011-05-03-on-techczech/</guid><description>In mice! RT @ Frankwspencer : Scientists discover brain structures associated with learning http://t.co/2szhg6D via @ physorg_com # Powered by Twitter Tools</description><pubDate>Tue, 03 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-02 on @techczech</title><link>https://techczech.net/2011/05/02/the-day-2011-05-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/02/the-day-2011-05-02-on-techczech/</guid><description>How not to measure scientific productivity http://ow.ly/1sMnHj # The Daily Mail imagines a bizarre future - a mixture of futurist cliches and prejudice. http://ow.ly/1sMGIa # Powered by Twitter Tools</description><pubDate>Mon, 02 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-05-01 on @techczech</title><link>https://techczech.net/2011/05/01/the-day-2011-05-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/05/01/the-day-2011-05-01-on-techczech/</guid><description>Love idea 9 of Fix the School Not the Child. Surefire education reform: let kids sleep in, do less, learn more! http://ow.ly/4KHnn # edchat # RT @ General_Tech : RT @ Atomic_Kristi : This is cool-Alabama school has an e-day, completing projects online: http://bit.ly/hSR235 # edchat # Language peeves are not different from vain complaints…</description><pubDate>Sun, 01 May 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2011-04-29</title><link>https://techczech.net/2011/04/30/links-for-2011-04-29/</link><guid isPermaLink="true">https://techczech.net/2011/04/30/links-for-2011-04-29/</guid><description>Free Technology for Teachers: 7 Simple To-do List Services for Students (tags: education socialmedia accessibility )</description><pubDate>Sat, 30 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-30 on @techczech</title><link>https://techczech.net/2011/04/30/the-day-2011-04-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/30/the-day-2011-04-30-on-techczech/</guid><description>Please watch this and make everyone else watch it: &quot;Larry Lessig on Scientific Publishing&quot; http://ow.ly/4Kr7p # edtech #edchat # copyright # @ DonaldClark BTW: I&amp;#039;m mostly playing devil&amp;#039;s advocate here. This sort of conversation is hard over Twitter. in reply to DonaldClark # @ DonaldClark Agreed. But why have a unity just for the convenience…</description><pubDate>Sat, 30 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-29 on @techczech</title><link>https://techczech.net/2011/04/29/the-day-2011-04-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/29/the-day-2011-04-29-on-techczech/</guid><description>A male feminist&amp;#039;s view on the # royalwedding and the # weddingdress Possibly quite ill-informed. http://j.mp/lFUah1 # feminism # Myths of Chinese historical unity http://amzn.com/k/253P8ST3LQDDI # Kindle # RT @ mrsebiology : How Standardized Testing Damages Education: http://bit.ly/lPPvRv # edchat #edadmin # cpchat # &quot;while college applicants’ faith in the value of higher education has…</description><pubDate>Fri, 29 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-28 on @techczech</title><link>https://techczech.net/2011/04/28/the-day-2011-04-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/28/the-day-2011-04-28-on-techczech/</guid><description>Crackdowns on monasteries as popular in 9th century China as early modern Europe. http://amzn.com/k/OPHBJ28S1CGD # Kindle # @ InnovativeEdu Thanks. Just something I wrote today inspired by your tweet about uncollege. in reply to InnovativeEdu # Ian Morris talks about his thesis of geography driven # history (and more). http://ow.ly/4Jdpl A good summary of his…</description><pubDate>Thu, 28 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-04-28</title><link>https://techczech.net/2011/04/28/twitter-weekly-updates-for-2011-04-28/</link><guid isPermaLink="true">https://techczech.net/2011/04/28/twitter-weekly-updates-for-2011-04-28/</guid><description>Crackdowns on monasteries as popular in 9th century China as early modern Europe. http://amzn.com/k/OPHBJ28S1CGD # Kindle # @ InnovativeEdu Thanks. Just something I wrote today inspired by your tweet about uncollege. in reply to InnovativeEdu # Ian Morris talks about his thesis of geography driven # history (and more). http://ow.ly/4Jdpl A good summary of his…</description><pubDate>Thu, 28 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-27 on @techczech</title><link>https://techczech.net/2011/04/27/the-day-2011-04-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/27/the-day-2011-04-27-on-techczech/</guid><description>Daoism and religion in China not straightforward analogs to Western concepts http://amzn.com/k/319LQOJJXEQ9V # Kindle # @ InnovativeEdu Haven&amp;#039;t used TimetoKnow-their samples look fine. But skeptical of learning programs in general unless learner has SpLD. in reply to InnovativeEdu # @ InnovativeEdu In language development, buzz-word compliant learning programs matter less than motivation, opportunity and time…</description><pubDate>Wed, 27 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-26 on @techczech</title><link>https://techczech.net/2011/04/26/the-day-2011-04-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/26/the-day-2011-04-26-on-techczech/</guid><description>@ birklearns There are just too many ways students can be clients. Some good, some bad. Have had students ask for better grades as clients! in reply to birklearns # @ birklearns Not inevitably. But often enough. See here for examples of consequences of market metaphor in education: http://j.mp/apqcO3 in reply to birklearns # I…</description><pubDate>Tue, 26 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-25 on @techczech</title><link>https://techczech.net/2011/04/25/the-day-2011-04-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/25/the-day-2011-04-25-on-techczech/</guid><description>Great annotation of Cognitive Linguistics by Prof Vyv Evans http://ow.ly/4F7Or # linguistics # There&amp;#039;s nothing natural about the North being synonymous with up... http://amzn.com/k/47QB0P94MJM3 # Kindle # @ KristianStill IMHO Repurposing # Moodle for what it wasn&amp;#039;t designed for (class-based teaching) probably not a good idea. Other tools better! in reply to KristianStill # Only…</description><pubDate>Mon, 25 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2011-04-23</title><link>https://techczech.net/2011/04/24/links-for-2011-04-23/</link><guid isPermaLink="true">https://techczech.net/2011/04/24/links-for-2011-04-23/</guid><description>Rdd.me: A URL Shortener With Readability Built-In (tags: accessibility inset2011 )</description><pubDate>Sun, 24 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-24 on @techczech</title><link>https://techczech.net/2011/04/24/the-day-2011-04-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/24/the-day-2011-04-24-on-techczech/</guid><description>Looking forward to reading more: RT @ ianaddison : children made websites about the village, now we&amp;#039;re putting QR codes up around the place... # Essential # Easter entertainment: &quot;Household Items that Make Great Cat Toys&quot; http://ow.ly/1sEsQe # Powered by Twitter Tools</description><pubDate>Sun, 24 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-23 on @techczech</title><link>https://techczech.net/2011/04/23/the-day-2011-04-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/23/the-day-2011-04-23-on-techczech/</guid><description>&quot;How cn we learn from someone else when we’re absorbed in conversations tht only confirm our already-held biases&quot; http://ow.ly/4FJA3 # edchat # &quot;percentiles are good for communicating test scores of individuals but bad for doing statistical analyses of group data&quot; http://ow.ly/4FxIo # ShowMe does look like an interesting idea for teachers: http://www.showmeapp.com/6a4q # edtech #…</description><pubDate>Sat, 23 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-22 on @techczech</title><link>https://techczech.net/2011/04/22/the-day-2011-04-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/22/the-day-2011-04-22-on-techczech/</guid><description>@ claire7179 Moodle Surgery: session where experts answer user questions about particular topics and users answer each others&amp;#039; questions. in reply to claire7179 # Well put: &quot;[Scholars] try to plug gaps but often first must create the gaps by cutting holes in the existing scholarship&quot; http://ow.ly/4FkHq # Essential: &quot;Scholarship only *sounds* polite on paper, but…</description><pubDate>Fri, 22 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-21 on @techczech</title><link>https://techczech.net/2011/04/21/the-day-2011-04-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/21/the-day-2011-04-21-on-techczech/</guid><description>Don&amp;#039;t know what I like more. That someone made this video: http://j.mp/hb0Z8h or that 16,000 people watched. # gamingpassion # @ jwwweb Agree. The problem remains who decides what evidence is meaningful in ed research. Thus epistemology as ethics: http://j.mp/gm1Q2W in reply to jwwweb # Why relational databases are not good at storing relationships (but…</description><pubDate>Thu, 21 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-04-21</title><link>https://techczech.net/2011/04/21/twitter-weekly-updates-for-2011-04-21/</link><guid isPermaLink="true">https://techczech.net/2011/04/21/twitter-weekly-updates-for-2011-04-21/</guid><description>Don&amp;#039;t know what I like more. That someone made this video: http://j.mp/hb0Z8h or that 16,000 people watched. # gamingpassion # @ jwwweb Agree. The problem remains who decides what evidence is meaningful in ed research. Thus epistemology as ethics: http://j.mp/gm1Q2W in reply to jwwweb # Why relational databases are not good at storing relationships (but…</description><pubDate>Thu, 21 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Integrating Learning Technology Support into Moodle #mootuk11</title><link>https://techczech.net/2011/04/20/integrating-learning-technology-support-into-moodle-mootuk11/</link><guid isPermaLink="true">https://techczech.net/2011/04/20/integrating-learning-technology-support-into-moodle-mootuk11/</guid><description>This is a sneak peak at the slides on Slideshare (subject to small changes) of a talk I&apos;ll be giving at Moodle Moot UK 2011. I&apos;ll be sharing our experiences with using various (mostly cloud-based ) tools to provide Moodle support in a purely e-learning environment with no face-to-face training available. The full text of…</description><pubDate>Wed, 20 Apr 2011 00:00:00 GMT</pubDate><category>Events</category><category>Misc</category><category>Tips and Guides</category><category>Using ICT</category></item><item><title>#mootuk11 Day 2  on @techczech</title><link>https://techczech.net/2011/04/20/the-day-2011-04-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/20/the-day-2011-04-20-on-techczech/</guid><description>Good list but understates effort involved: RT @ onlinecourse : Who Takes Online Classes? Not Just College Students - http://dedu.org/cp4rTC # @ jwwweb Absolutely edu research is vulnerable to overinterpretation. I&apos;m planning a blogging project on the subject at http://eduvoodoo.net in reply to jwwweb # Hmm?! RT @ pauledgar1 : ...Chomsky&apos;s linguistics in under 2…</description><pubDate>Wed, 20 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>#mootuk11 Day 1 on @techczech</title><link>https://techczech.net/2011/04/19/the-day-2011-04-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/19/the-day-2011-04-19-on-techczech/</guid><description>@ Presidentm Sure, but Accordion or LAMS course formats are not part of the default install. The heart of Moodle is still linear. # mootuk11 in reply to Presidentm # @ elswedgio # Moodlescrollofdeath is (almost) entirely due to # Moodle making bad design easy and good design difficult. # mootuk11 in reply to elswedgio…</description><pubDate>Tue, 19 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2011-04-17</title><link>https://techczech.net/2011/04/18/links-for-2011-04-17/</link><guid isPermaLink="true">https://techczech.net/2011/04/18/links-for-2011-04-17/</guid><description>How Technology Can Assist Students with Dyslexia Siobhán (tags: assistive-technologies dyslexia )</description><pubDate>Mon, 18 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-18 on @techczech</title><link>https://techczech.net/2011/04/18/the-day-2011-04-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/18/the-day-2011-04-18-on-techczech/</guid><description>Talking to &quot;your customers&quot; may not be best in mature industries with shrinking customer base (eg publishing) http://ow.ly/4CmuE # libraries # Powered by Twitter Tools</description><pubDate>Mon, 18 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-17 on @techczech</title><link>https://techczech.net/2011/04/17/the-day-2011-04-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/17/the-day-2011-04-17-on-techczech/</guid><description>Why did only 32 people read this post on Metaphorhacker? I was so sure &quot;Epistemology as ethics&quot; was a winner! http://ow.ly/4BQ5U # philosophy # There are amazing snippets of educational theory in these Jazz Tutorials. And a teacher just bursting to teach! http://ow.ly/4BUIY # edchat # Just favorited &amp;#039;Thinking outside the square with moodle egem…</description><pubDate>Sun, 17 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-16 on @techczech</title><link>https://techczech.net/2011/04/16/the-day-2011-04-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/16/the-day-2011-04-16-on-techczech/</guid><description>Shame on @ microsoft for all the activation runarounds. Why do I need to crawl on the floor for product keys just to keep your billions safe! # Thanks to @ crashplan , @ dropbox &amp; @ google for making moving to a new computer a seamless experience. # edtech #backup # cloud # Powered…</description><pubDate>Sat, 16 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-15 on @techczech</title><link>https://techczech.net/2011/04/15/the-day-2011-04-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/15/the-day-2011-04-15-on-techczech/</guid><description>Impressive. &quot;Instructure Raises $8M&quot; http://ow.ly/4BbFv Barely out of the gate and already a challenge to established VLEs like # Moodle # Powered by Twitter Tools</description><pubDate>Fri, 15 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-14 on @techczech</title><link>https://techczech.net/2011/04/14/the-day-2011-04-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/14/the-day-2011-04-14-on-techczech/</guid><description>No kidding: &quot;Chomsky was wrong: evolutionary analysis shows languages obey few rules&quot; http://ow.ly/4zMTs # ellchat # Powered by Twitter Tools</description><pubDate>Thu, 14 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-04-14</title><link>https://techczech.net/2011/04/14/twitter-weekly-updates-for-2011-04-14/</link><guid isPermaLink="true">https://techczech.net/2011/04/14/twitter-weekly-updates-for-2011-04-14/</guid><description>No kidding: &quot;Chomsky was wrong: evolutionary analysis shows languages obey few rules&quot; http://ow.ly/4zMTs # ellchat # RT @ MultiLingLiving : At what age did you learn your languages? http://ow.ly/4z3jq # bilingual #multilingual # languages # Stupid headline, outdated research. Not angry, just disappointed @ Guardian http://ow.ly/1srkBS # edchat # New on MetaphorHacker.net: Religion, if it…</description><pubDate>Thu, 14 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-13 on @techczech</title><link>https://techczech.net/2011/04/13/the-day-2011-04-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/13/the-day-2011-04-13-on-techczech/</guid><description>RT @ MultiLingLiving : At what age did you learn your languages? http://ow.ly/4z3jq # bilingual #multilingual # languages # Powered by Twitter Tools</description><pubDate>Wed, 13 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-10 on @techczech</title><link>https://techczech.net/2011/04/10/the-day-2011-04-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/10/the-day-2011-04-10-on-techczech/</guid><description>Stupid headline, outdated research. Not angry, just disappointed @ Guardian http://ow.ly/1srkBS # edchat # Powered by Twitter Tools</description><pubDate>Sun, 10 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-09 on @techczech</title><link>https://techczech.net/2011/04/09/the-day-2011-04-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/09/the-day-2011-04-09-on-techczech/</guid><description>New on MetaphorHacker.net: Religion, if it exists, is negotiation of underdetermined metaphoric cognition http://j.mp/h9ioAr # Biased scholarship on China? No, really?! http://amzn.com/k/PPF1IOXITU3K # Kindle # I for one welcome our future Chinese overlords... http://amzn.com/k/14SYIGM7PYHBV # Kindle # Chinese history rewarding in its difficulty http://amzn.com/k/3ECYDSOJT2IGB # Kindle # How did I not know about @ Pomplamoose…</description><pubDate>Sat, 09 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-08 on @techczech</title><link>https://techczech.net/2011/04/08/the-day-2011-04-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/08/the-day-2011-04-08-on-techczech/</guid><description>I wish someone had taught me about electricity using Squishy Circuits http://ow.ly/4woMC # edchat # Wish # Moodle would make it easy to build similarly impressive learning and teaching interfaces as http://learnable.com # edtech # An great lecture on skill acquisition (ok on memory). Well worth a listen to teachers &amp; learners alike. http://ow.ly/4wiCV #…</description><pubDate>Fri, 08 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-07 on @techczech</title><link>https://techczech.net/2011/04/07/the-day-2011-04-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/07/the-day-2011-04-07-on-techczech/</guid><description>I&amp;#039;m so happy to be one of the people to find this xkcd comic uproaringly hilarious http://j.mp/h7tSRf Wish more people did, too. # RT @ ADDitudeMag : reader quote that made us LOL: Does anyone else interrupt themselves when they are doing the talking? # Powered by Twitter Tools</description><pubDate>Thu, 07 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-04-07</title><link>https://techczech.net/2011/04/07/twitter-weekly-updates-for-2011-04-07/</link><guid isPermaLink="true">https://techczech.net/2011/04/07/twitter-weekly-updates-for-2011-04-07/</guid><description>I&amp;#039;m so happy to be one of the people to find this xkcd comic uproaringly hilarious http://j.mp/h7tSRf Wish more people did, too. # RT @ ADDitudeMag : reader quote that made us LOL: Does anyone else interrupt themselves when they are doing the talking? # Development Seed &quot;We have no plans to grow bigger!&quot; &amp;lt…</description><pubDate>Thu, 07 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-06 on @techczech</title><link>https://techczech.net/2011/04/06/the-day-2011-04-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/06/the-day-2011-04-06-on-techczech/</guid><description>Development Seed &quot;We have no plans to grow bigger!&quot; &amp;lt; If only more tech companies were like this! http://ow.ly/4uCW5 # drupal #edtech # edchat # &quot;When you train employees to be risk averse&amp;gt;you&amp;#039;re preparing your whole company [school] to be reward challenged&quot; http://ow.ly/4uB2i # edchat # @ glynnmark You should contact MoodleMoot organisers @ ulcc…</description><pubDate>Wed, 06 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-05 on @techczech</title><link>https://techczech.net/2011/04/05/the-day-2011-04-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/05/the-day-2011-04-05-on-techczech/</guid><description>Can&amp;#039;t believe @ mashable still peddles this nonsense about open source CMSs! http://ow.ly/1snsmd # edtech # Anyone surprised?: &quot;..there never was a Texas miracle. At best, it was wishful thinking. At worst, it was a lie.&quot; http://ow.ly/4tRXY # edchat # In other words, what else is new... # history #china http://amzn.com/k/374OA9A0O4UWN # Kindle # http://amzn.com/k/276ENXXM1HU21…</description><pubDate>Tue, 05 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-04 on @techczech</title><link>https://techczech.net/2011/04/04/the-day-2011-04-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/04/the-day-2011-04-04-on-techczech/</guid><description>So many people don&amp;#039;t know to: Start Typing to Skip Scrolling Through Drop-Down Menu http://ow.ly/4sGDN # edtech # Quora: How could Moodle&amp;#039;s course design framework be made more modern and user friendly? Answer: http://qr.ae/Upbr # moodle #mootuk11 # Powered by Twitter Tools</description><pubDate>Mon, 04 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-03 on @techczech</title><link>https://techczech.net/2011/04/03/the-day-2011-04-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/03/the-day-2011-04-03-on-techczech/</guid><description>Why is it easy to buy a bottle of beer and impossible to buy a loaf of bread at 9pm on a Sunday in my neighbourhood? # policy #bracknell # &quot;World’s simplest online safety policy&quot; is so great I have to tweet again Too many quotables Please read and act! http://ow.ly/4s41q # edchat # World…</description><pubDate>Sun, 03 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-02 on @techczech</title><link>https://techczech.net/2011/04/02/the-day-2011-04-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/02/the-day-2011-04-02-on-techczech/</guid><description>RT @ sharmanedit Brilliant piece (pdf) on everything that&amp;#039;s wrong with science today. The latest from Peter Lawrence http://bit.ly/dObFuQ # Powered by Twitter Tools</description><pubDate>Sat, 02 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-04-01 on @techczech</title><link>https://techczech.net/2011/04/01/the-day-2011-04-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/04/01/the-day-2011-04-01-on-techczech/</guid><description>ASUS Eee Pad Transformer # ipadkiller #wantnow http://ow.ly/1sjOwa # 5-Year-Old Critics Agree: Movie ‘Cars’ Only Gets Better After 40th Viewing http://feedly.com/k/ig1gfM # Clay Shirky : &quot;No one user model in large participatory systems.&quot; http://ow.ly/4rkek # edtech #drupal # @ jmspool : &quot;Meeting users is a Jane Goodall experience&quot; for designers. Call it: &quot;Users in the…</description><pubDate>Fri, 01 Apr 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-31 on @techczech</title><link>https://techczech.net/2011/03/31/the-day-2011-03-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/31/the-day-2011-03-31-on-techczech/</guid><description>New on Researchity: Is OpenIDEO a good model for a research community? http://j.mp/gbaXjs # Turns out there&amp;#039;s more to language and its acquisition than just words and rules: http://ow.ly/4qqgQ # lad #chomsky # Powered by Twitter Tools</description><pubDate>Thu, 31 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-03-31</title><link>https://techczech.net/2011/03/31/twitter-weekly-updates-for-2011-03-31/</link><guid isPermaLink="true">https://techczech.net/2011/03/31/twitter-weekly-updates-for-2011-03-31/</guid><description>New on Researchity: Is OpenIDEO a good model for a research community? http://j.mp/gbaXjs # Turns out there&amp;#039;s more to language and its acquisition than just words and rules: http://ow.ly/4qqgQ # lad #chomsky # @ edtechsteve For me the goal should be for students to continue a conversation started in class. Almost never happens, as research…</description><pubDate>Thu, 31 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-30 on @techczech</title><link>https://techczech.net/2011/03/30/the-day-2011-03-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/30/the-day-2011-03-30-on-techczech/</guid><description>@ edtechsteve For me the goal should be for students to continue a conversation started in class. Almost never happens, as research shows. # @ edtechsteve Not sure. I think school should provide quite a few answers. Students should then build on these to ask further questions. in reply to edtechsteve # RT @ opencontent…</description><pubDate>Wed, 30 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-29 on @techczech</title><link>https://techczech.net/2011/03/29/the-day-2011-03-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/29/the-day-2011-03-29-on-techczech/</guid><description>RT @ idarknight : RT @ 0boy Are “Digital Natives” Better Suited For Mobile Learning? http://bit.ly/ehRNwT # edtech #edchat # If the Social Architecture Project for Drupal.org comes off, I might be more active again in the # Drupal issue queues http://ow.ly/4oMZG # RT @ briankotts : Wikipedia wants more contributions from academics http://bit.ly/gDMxDs /via…</description><pubDate>Tue, 29 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-28 on @techczech</title><link>https://techczech.net/2011/03/28/the-day-2011-03-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/28/the-day-2011-03-28-on-techczech/</guid><description>Never make fun of geography... http://amzn.com/k/A58X3MMYJ5L1 # Kindle # http://amzn.com/k/ICHMW6858317 # Kindle # http://amzn.com/k/3H839DGHFSNI5 # Kindle # http://amzn.com/k/1VOMPW5Z22MV5 # Kindle # Why isn&amp;#039;t anybody talking about the Long Tail anymore? http://ow.ly/4mtT9 # edtech #edchat # Powered by Twitter Tools</description><pubDate>Mon, 28 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-27 on @techczech</title><link>https://techczech.net/2011/03/27/the-day-2011-03-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/27/the-day-2011-03-27-on-techczech/</guid><description>People get hooked on webinars. http://ow.ly/4nhA1 True we get ~40% return rate on our public online lectures: http://ow.ly/4nhAR # edchatuk # I just did nothing for 2 minutes. Can you? http://t.co/2gxG61S # If all the podcasts of New Books Network are as good as New Books in History, I&amp;#039;ll probably listen to little else http://ow.ly/4ncvq…</description><pubDate>Sun, 27 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-26 on @techczech</title><link>https://techczech.net/2011/03/26/the-day-2011-03-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/26/the-day-2011-03-26-on-techczech/</guid><description>New on MetaphorHacker.net: Are we the masters of our morality? Yes! http://j.mp/g5PWrl # Looking for a good non-orientalist book on the history of China and its culture. Any suggestions welcome! # Why does @ google hate people with poor eyesight? New # GoogleDocs editor pretty much unusable without text zoom! # accessibility #edtech # Powered…</description><pubDate>Sat, 26 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-25 on @techczech</title><link>https://techczech.net/2011/03/25/the-day-2011-03-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/25/the-day-2011-03-25-on-techczech/</guid><description>@ cognitivepolicy My own contribution to the debate: Cognition &amp; frame negotiation go hand in hand http://ow.ly/4mtYL and http://ow.ly/4mu7Z in reply to cognitivepolicy # @ cognitivepolicy Perhaps, but recipients of propaganda have been keeping up with its improvements. Read Gamson&amp;#039;s Talking Politics. in reply to cognitivepolicy # DrupalCon Chicago 2011 - Dries Buayert keynote at…</description><pubDate>Fri, 25 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-24 on @techczech</title><link>https://techczech.net/2011/03/24/the-day-2011-03-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/24/the-day-2011-03-24-on-techczech/</guid><description>Free webinar: Introduction to Dyslexia for Parents http://ow.ly/4lIdm Starting in 1 hour! # edchat #edchatuk # dyslexia # @ pickledtreats I try to work in elements of # PBL into all courses I design. But doesn&amp;#039;t always fit with the overall curriculum. in reply to pickledtreats # RT @ pickledtreats : The more I study…</description><pubDate>Thu, 24 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-03-24</title><link>https://techczech.net/2011/03/24/twitter-weekly-updates-for-2011-03-24/</link><guid isPermaLink="true">https://techczech.net/2011/03/24/twitter-weekly-updates-for-2011-03-24/</guid><description>&amp;lt;Would love to attend&amp;gt; &quot;Open Source Junction: cross-platform mobile apps&quot; http://ow.ly/4lV8a &amp;lt;/Have neither time nor money&amp;gt; # Why not do peer review as a web of trust? http://ow.ly/4lV0s # Free webinar: Introduction to Dyslexia for Parents http://ow.ly/4lIdm Starting in 1 hour! # edchat #edchatuk # dyslexia # @ pickledtreats I try to work in elements…</description><pubDate>Thu, 24 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-23 on @techczech</title><link>https://techczech.net/2011/03/23/the-day-2011-03-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/23/the-day-2011-03-23-on-techczech/</guid><description>@ TechSmith Thx. Why not add a simple auto replacement filter? It takes up to 10 mins to cleanup some power points. Baffles nonIT users. in reply to TechSmith # @ techsmith Screencast.com plugin outdated on Win7 64bit. Was fine y-day. But sometimes it just crashes. Also the excluded characters = pain. in reply to…</description><pubDate>Wed, 23 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-22 on @techczech</title><link>https://techczech.net/2011/03/22/the-day-2011-03-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/22/the-day-2011-03-22-on-techczech/</guid><description>&quot;Epistemology as ethics: Decisions and judgments not methods and solutions for evidence-based practice&quot; http://ow.ly/4k887 # I thought they already did: &quot;Academics to &amp;#039;embrace Wikipedia&amp;#039;&quot; &amp;lt;still welcome news http://ow.ly/4jlsF # edchatuk #edtech # Powered by Twitter Tools</description><pubDate>Tue, 22 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-21 on @techczech</title><link>https://techczech.net/2011/03/21/the-day-2011-03-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/21/the-day-2011-03-21-on-techczech/</guid><description>@ moreolives VLEs are just like schools, great if home to exciting things. But mostly home to drudgery and walled off learning. # edchat #vle in reply to moreolives # “You can’t understand Google,” VP Marissa M says “unless you know that both Larry &amp; Sergey were Montessori kids.&quot; http://ow.ly/4iHmw # edchat # Registration now…</description><pubDate>Mon, 21 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-20 on @techczech</title><link>https://techczech.net/2011/03/20/the-day-2011-03-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/20/the-day-2011-03-20-on-techczech/</guid><description>Not a single contrib Question Type upgraded to work with # Moodle2 Please, need drag and drop matching urgently. http://ow.ly/4iiZj # Powered by Twitter Tools</description><pubDate>Sun, 20 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-18 on @techczech</title><link>https://techczech.net/2011/03/18/the-day-2011-03-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/18/the-day-2011-03-18-on-techczech/</guid><description>RT @ mweller : Looking at scholarship thru a Marxist lens is apparently a crime in the US http://bit.ly/dWNEnA (the @ chronicle via @ edwebb ) # Spaces available on webinar &quot;Introduction to Dyslexia for Parents&quot;, 24 March http://ow.ly/4gF69 , # edchat #edchatuk # dyslexia # Powered by Twitter Tools</description><pubDate>Fri, 18 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-17 on @techczech</title><link>https://techczech.net/2011/03/17/the-day-2011-03-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/17/the-day-2011-03-17-on-techczech/</guid><description>I&amp;#039;m speaking at CPD: Focus on the Practitioner, Dyslexia Guild Conference 2011, 30th June 2011 in Oxford http://t.co/uefZZkk via @ lanyrd # The Corpus linguistics linguistics entry on Wikipedia is far too inadequate. Will somebody help make it better? http://ow.ly/4ghsC # ellchat # Is # Coursekit what # Moodle with it&amp;#039;s constructionist philosophy would have…</description><pubDate>Thu, 17 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-03-17</title><link>https://techczech.net/2011/03/17/twitter-weekly-updates-for-2011-03-17/</link><guid isPermaLink="true">https://techczech.net/2011/03/17/twitter-weekly-updates-for-2011-03-17/</guid><description>I&amp;#039;m speaking at CPD: Focus on the Practitioner, Dyslexia Guild Conference 2011, 30th June 2011 in Oxford http://t.co/uefZZkk via @ lanyrd # The Corpus linguistics linguistics entry on Wikipedia is far too inadequate. Will somebody help make it better? http://ow.ly/4ghsC # ellchat # Is # Coursekit what # Moodle with it&amp;#039;s constructionist philosophy would have…</description><pubDate>Thu, 17 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-16 on @techczech</title><link>https://techczech.net/2011/03/16/the-day-2011-03-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/16/the-day-2011-03-16-on-techczech/</guid><description>@ Microsoft has no excuse for not making # IE9 available on XP except greed. Made XP a mess, won&amp;#039;t clean it up! http://ow.ly/4fvgM # Powered by Twitter Tools</description><pubDate>Wed, 16 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-15 on @techczech</title><link>https://techczech.net/2011/03/15/the-day-2011-03-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/15/the-day-2011-03-15-on-techczech/</guid><description>@ PMMcG http://W3Schools.com is where I send people new to HTML/CSS. Comprehensive and interactive. Play a bit, then just do it! # edtech in reply to PMMcG # Cohorts in # Moodle2 have turned out to be pretty much useless. Hard to use and not solving the problems they were meant for. # moodle #edtech…</description><pubDate>Tue, 15 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-14 on @techczech</title><link>https://techczech.net/2011/03/14/the-day-2011-03-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/14/the-day-2011-03-14-on-techczech/</guid><description>RT @ techsavvyteach : Tom Vander Ark: Textbook market is almost certain to shrink with open education resource availability # nroc2011 # Powered by Twitter Tools</description><pubDate>Mon, 14 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-13 on @techczech</title><link>https://techczech.net/2011/03/13/the-day-2011-03-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/13/the-day-2011-03-13-on-techczech/</guid><description>New on MetaphorHacker.net: Do science fiction writers dream of fascist dictatorships? http://j.mp/fk46sK # Help! @ shelfari is extorting information from me before it lets me export my book list! They call it community building I call it evil! # Powered by Twitter Tools</description><pubDate>Sun, 13 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-12 on @techczech</title><link>https://techczech.net/2011/03/12/the-day-2011-03-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/12/the-day-2011-03-12-on-techczech/</guid><description>@ MultiLingLiving Took me a while but here&amp;#039;s my take on Kuhl&amp;#039;s disastrous TED talk, brain and language learning http://ow.ly/4d11i # ellchat in reply to MultiLingLiving # Powered by Twitter Tools</description><pubDate>Sat, 12 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-10 on @techczech</title><link>https://techczech.net/2011/03/10/the-day-2011-03-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/10/the-day-2011-03-10-on-techczech/</guid><description>Crime Writer Makes a Killing With 99 Cent E-Books - Slashdot http://ow.ly/4c4fX # Beautiful visualizations but overstated implications by Deb Roy on The birth of a word at # TED http://ow.ly/4bZic # Paul Krugman: &quot;what everyone knows is wrong.&quot; http://ow.ly/4bLoW # edchat # Powered by Twitter Tools</description><pubDate>Thu, 10 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-03-10</title><link>https://techczech.net/2011/03/10/twitter-weekly-updates-for-2011-03-10/</link><guid isPermaLink="true">https://techczech.net/2011/03/10/twitter-weekly-updates-for-2011-03-10/</guid><description>Crime Writer Makes a Killing With 99 Cent E-Books - Slashdot http://ow.ly/4c4fX # Beautiful visualizations but overstated implications by Deb Roy on The birth of a word at # TED http://ow.ly/4bZic # Paul Krugman: &quot;what everyone knows is wrong.&quot; http://ow.ly/4bLoW # edchat # &quot;meanings and dictionary senses aren’t the same thing at all&quot; http://ow.ly/4bgGr #…</description><pubDate>Thu, 10 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>#mootuk11 session proposal: Integrating Learning Technology Support into Moodle</title><link>https://techczech.net/2011/03/09/mootuk11-session-proposal-integrating-learning-technology-support-into-moodle/</link><guid isPermaLink="true">https://techczech.net/2011/03/09/mootuk11-session-proposal-integrating-learning-technology-support-into-moodle/</guid><description>My proposal for Moodle Moot UK 2011 has been accepted. Here it is in case anyone wants to suggest things. This presentation will share various experiences with providing technology support to Moodle users with varied ICT skills (teachers enrolled on fully online Postgraduate Courses). It will evaluate various approaches that can be used independently or…</description><pubDate>Wed, 09 Mar 2011 00:00:00 GMT</pubDate><category>Events</category><category>Tips and Guides</category><category>e-learning</category><category>Educational software</category><category>Educational technology</category><category>learning technology support</category></item><item><title>The day  2011-03-09 on @techczech</title><link>https://techczech.net/2011/03/09/the-day-2011-03-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/09/the-day-2011-03-09-on-techczech/</guid><description>Finally, # literally is getting some corpus love: &quot;Two Breakfast Experiments™: Literally&quot; http://ow.ly/4aVBo # engchat # RT @ ShellTerrell : via @ profesortbaker Can Kids Teach Themselves? Self-Organising Systems in Education http://bit.ly/dEMyN9 # edchat # HootSuite launches social analytics. http://ow.ly/4aMiD HootStats # New on MetaphorHacker.net: The brain is a bad metaphor for language http://j.mp/gPMUc6 #…</description><pubDate>Wed, 09 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-08 on @techczech</title><link>https://techczech.net/2011/03/08/the-day-2011-03-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/08/the-day-2011-03-08-on-techczech/</guid><description>Views 3 with a gorgeous new user-interface puts # Drupal Gardens far ahead of competition on day of 1.0 release http://ow.ly/4adPY # edtech # Powered by Twitter Tools</description><pubDate>Tue, 08 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-07 on @techczech</title><link>https://techczech.net/2011/03/07/the-day-2011-03-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/07/the-day-2011-03-07-on-techczech/</guid><description>Most Organizations Now Use Open Source Software According to Gartner http://ow.ly/1s89vh # edtech #foss # What&amp;#039;s missing from this? &quot;The Art of Education: Thoughts about knowing how to teach&quot; http://ow.ly/49p57 # edchat # Please, please! Before you say anything about evidence-based policy, listen to this tour-de-force by Mark Kleiman http://ow.ly/48cAO # edchat # How little…</description><pubDate>Mon, 07 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-06 on @techczech</title><link>https://techczech.net/2011/03/06/the-day-2011-03-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/06/the-day-2011-03-06-on-techczech/</guid><description>Belated but important reading: A closer look at Diane Ravitch&amp;#039;s &amp;#039;Death and Life...&amp;#039; - Substance News http://ow.ly/48SR6 # edchat # I&amp;#039;m ready to forgive @ DianeRavitch for stuff like http://ow.ly/48S9g after reading this excellent post http://t.co/3doEq2b # edchat #edreform # 10 Ways Technology Supports 21st Century Learners in Being Self Directed by Lisa Nielsen http://ow.ly/48RN6…</description><pubDate>Sun, 06 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-05 on @techczech</title><link>https://techczech.net/2011/03/05/the-day-2011-03-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/05/the-day-2011-03-05-on-techczech/</guid><description>There are staggeringly many questions NOT being asked by Jamie&amp;#039;s Dream School http://ow.ly/48BNP # edchat # Language Log on Prejudiced linguists: &quot;Linguists themselves are not immune from moronicity.&quot; http://ow.ly/1s7yX9 &amp;lt; Sad but true! # engchat # RT @ hjarche : &quot;The plural of anecdote is data&quot; http://ur1.ca/3e7f1 interesting history of this phrase &amp; how it…</description><pubDate>Sat, 05 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-04 on @techczech</title><link>https://techczech.net/2011/03/04/the-day-2011-03-04-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2011/03/04/the-day-2011-03-04-on-techczech-2/</guid><description>According to @ klout , I&amp;#039;m influenced by: @ pgsimoes @tomwhitby @ mberry @GuardianEdu @ gsiemens . http://bit.ly/bMI4xX Thanks! # ff # @ ileducprof Thanks for the kudos but the post was by @ mgrammar I was just passing it on. It&amp;#039;s so damn hard to give proper credit on Twitter. in reply to ileducprof…</description><pubDate>Fri, 04 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-04 on @techczech</title><link>https://techczech.net/2011/03/04/the-day-2011-03-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/04/the-day-2011-03-04-on-techczech/</guid><description>According to @ klout , I&amp;#039;m influenced by: @ pgsimoes @tomwhitby @ mberry @GuardianEdu @ gsiemens . http://bit.ly/bMI4xX Thanks! # ff # @ ileducprof Thanks for the kudos but the post was by @ mgrammar I was just passing it on. It&amp;#039;s so damn hard to give proper credit on Twitter. in reply to ileducprof…</description><pubDate>Fri, 04 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-03 on @techczech</title><link>https://techczech.net/2011/03/03/the-day-2011-03-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/03/the-day-2011-03-03-on-techczech/</guid><description>Quora: How could Moodle&amp;#039;s course design framework be made more modern and user friendly? Answer: http://qr.ae/Upbr # edchat #edtech # moodle # What should the Royal Society do to bring researchers and practitioners closer together: http://ow.ly/46K8u # RT @ mweller : New blog post: 5 things I think about Learning Analytics http://bit.ly/dUGagP (thoughts on #…</description><pubDate>Thu, 03 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-03-03</title><link>https://techczech.net/2011/03/03/twitter-weekly-updates-for-2011-03-03/</link><guid isPermaLink="true">https://techczech.net/2011/03/03/twitter-weekly-updates-for-2011-03-03/</guid><description>Quora: How could Moodle&amp;#039;s course design framework be made more modern and user friendly? Answer: http://qr.ae/Upbr # edchat #edtech # moodle # What should the Royal Society do to bring researchers and practitioners closer together: http://ow.ly/46K8u # RT @ mweller : New blog post: 5 things I think about Learning Analytics http://bit.ly/dUGagP (thoughts on #…</description><pubDate>Thu, 03 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-02 on @techczech</title><link>https://techczech.net/2011/03/02/the-day-2011-03-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/02/the-day-2011-03-02-on-techczech/</guid><description>&quot;all popular culture today...accepts and goes to great lengths to promote the idea that it’s cool to be stupid&quot; http://ow.ly/46K2a # edchat # &quot;We&amp;#039;ve become addicted to experts..trading our discomfort w uncertainty for the illusion of certainty that they provide&quot; http://ow.ly/46Jof # 50 Years Ago Today: JFK Authorizes Peace Corps | Open Culture http://ow.ly/46GVK #…</description><pubDate>Wed, 02 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-03-01 on @techczech</title><link>https://techczech.net/2011/03/01/the-day-2011-03-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/03/01/the-day-2011-03-01-on-techczech/</guid><description>My answer on Quora to: Which were the greatest educational reforms and revolutions in human hi... http://qr.ae/UTJW # # Dyslexia and # assistive technology webinar by @ iansmythe is now online at http://tiny.cc/isswebinar0211 # Powered by Twitter Tools</description><pubDate>Tue, 01 Mar 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-28 on @techczech</title><link>https://techczech.net/2011/02/28/the-day-2011-02-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/28/the-day-2011-02-28-on-techczech/</guid><description>&quot;no matter how many good people there&amp;#039;re @ a company that has a tool at its disposal that is as dangerous &amp; awful as DRM&quot; http://ow.ly/455dO # Interesting idea: &amp;#039;Embedded Librarian&amp;#039; on Twitter Served as Information Concierge for Class - Wired Campus - http://ow.ly/44WpE # edtech # Another example of a good writer being completely…</description><pubDate>Mon, 28 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-27 on @techczech</title><link>https://techczech.net/2011/02/27/the-day-2011-02-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/27/the-day-2011-02-27-on-techczech/</guid><description>Nussbaum: &quot;There Is No Values-Free Form Of Education&quot; http://ow.ly/43ZNU &amp;lt; But do we truly understand the consequences of values? # edchat # Powered by Twitter Tools</description><pubDate>Sun, 27 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-26 on @techczech</title><link>https://techczech.net/2011/02/26/the-day-2011-02-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/26/the-day-2011-02-26-on-techczech/</guid><description>Conflating language preservation with early brain development is pure fantasy! Languages die for sociopolitical reasons! http://ow.ly/43ZkZ # @ MultiLingLiving Also lots of scholars don&amp;#039;t buy the critical period hypothesis and reducing it to 2 months for sound is just ridiculous. in reply to MultiLingLiving # @ MultiLingLiving We know empirically 0-12 months (and far beyond)…</description><pubDate>Sat, 26 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-25 on @techczech</title><link>https://techczech.net/2011/02/25/the-day-2011-02-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/25/the-day-2011-02-25-on-techczech/</guid><description>Great update. Love Ninite! &quot;Ninite Adds Shareable Links, Makes Setting Up Your Friends&amp;#039; Computers Insanely Easy&quot; http://ow.ly/43tSq # edtech # @ thedyslexicpoet See http://training.dyslexiaaction.org.uk/webinars in reply to thedyslexicpoet # Most &quot;How to&quot; queries on # google still feature content from eHow in top 10. Not sure it&amp;#039;s a bad thing, though. http://ow.ly/43hk9 # Perhaps a…</description><pubDate>Fri, 25 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2011-02-23</title><link>https://techczech.net/2011/02/24/links-for-2011-02-23/</link><guid isPermaLink="true">https://techczech.net/2011/02/24/links-for-2011-02-23/</guid><description>OSQA | The Open Source Q&amp;A System (tags: opensource community collaboration faq software )</description><pubDate>Thu, 24 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-24 on @techczech</title><link>https://techczech.net/2011/02/24/the-day-2011-02-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/24/the-day-2011-02-24-on-techczech/</guid><description>Finally! Google Cloud Connect for Microsoft Office http://ow.ly/42UeX # edtech # Powered by Twitter Tools</description><pubDate>Thu, 24 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-02-24</title><link>https://techczech.net/2011/02/24/twitter-weekly-updates-for-2011-02-24/</link><guid isPermaLink="true">https://techczech.net/2011/02/24/twitter-weekly-updates-for-2011-02-24/</guid><description>Finally! Google Cloud Connect for Microsoft Office http://ow.ly/42UeX # edtech # Just registered for free: &quot;Virtual Worlds Best Practices in Education 2011&quot; # VWBPE11 http://t.co/NCfuSta via @ eventbrite # edtech #edchat # Libyan leader shows us what it was like to write and read in Elizabethan times http://ow.ly/41JNR # engchat # We need more research…</description><pubDate>Thu, 24 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-23 on @techczech</title><link>https://techczech.net/2011/02/23/the-day-2011-02-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/23/the-day-2011-02-23-on-techczech/</guid><description>Just registered for free: &quot;Virtual Worlds Best Practices in Education 2011&quot; # VWBPE11 http://t.co/NCfuSta via @ eventbrite # edtech #edchat # Libyan leader shows us what it was like to write and read in Elizabethan times http://ow.ly/41JNR # engchat # We need more research like this: Amount of profanity in git commit messages per programming…</description><pubDate>Wed, 23 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-22 on @techczech</title><link>https://techczech.net/2011/02/22/the-day-2011-02-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/22/the-day-2011-02-22-on-techczech/</guid><description>Just trying out Zendesk. So far, not impressed with prices or functionality. OS Ticket or HESK seem better solutions. Any others? # edtech # Why schools are not like restaurants: The most ridiculous metaphor courtesy of an economics professor http://ow.ly/3ZUcM # edchat # Religion is a recent invention - great analysis on http://ow.ly/410NP # The…</description><pubDate>Tue, 22 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-21 on @techczech</title><link>https://techczech.net/2011/02/21/the-day-2011-02-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/21/the-day-2011-02-21-on-techczech/</guid><description>Must read for Chrome lovers: 7 Chrome Annoyances and How to Fix Them http://ow.ly/40y3m # edtech # Hilarious pictures on http://literal.ly (even if lots are figurative). Adobe Photoshop one of the best: http://ow.ly/40xBV . # engchat # Is new technology going to make lectures obsolete? http://ow.ly/3ZWks &amp;lt; No, but it can make the great ones…</description><pubDate>Mon, 21 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-20 on @techczech</title><link>https://techczech.net/2011/02/20/the-day-2011-02-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/20/the-day-2011-02-20-on-techczech/</guid><description>New on MetaphorHacker.net: The most ridiculous metaphor of education courtesy of an economics professor # edchat http://j.mp/fQq2mY # Neil Gaiman on copyright: &quot;Nobody who would have bought your book is not buying it because they can find it for free.&quot; http://ow.ly/3ZQUz # Powered by Twitter Tools</description><pubDate>Sun, 20 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-19 on @techczech</title><link>https://techczech.net/2011/02/19/the-day-2011-02-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/19/the-day-2011-02-19-on-techczech/</guid><description>&quot;humans are often surprisingly bad at [speech recognition] http://ow.ly/3ZCI8 &amp;lt; Language is not a perfect amazing tool! It just gets us by! # &quot;Maybe we should have listened to Cliff [Geertz]...when he kept emphasizing that humans don&amp;#039;t look like goats&quot; http://ow.ly/3ZCzF # funny # Powered by Twitter Tools</description><pubDate>Sat, 19 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-18 on @techczech</title><link>https://techczech.net/2011/02/18/the-day-2011-02-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/18/the-day-2011-02-18-on-techczech/</guid><description>Don&amp;#039;t forget to register for free webinar next Thursday: Assistive Technologies: Why pay? by Ian Smythe http://ow.ly/3YoO6 # edchat #dyslexia # Just tried to transfer a single MP3 file to iPhone, Blackberry and Android from a new computer? Android wins by hours! # android #edtech # Powered by Twitter Tools</description><pubDate>Fri, 18 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-17 on @techczech</title><link>https://techczech.net/2011/02/17/the-day-2011-02-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/17/the-day-2011-02-17-on-techczech/</guid><description>RT @ briankotts : Studies Find Language Is Key to Learning Math http://bit.ly/gcWd0S /via @ educationweek # edchat #ukedchat # esl #efl # Don&amp;#039;t forget to register for free webinar next Thursday: Assistive Technologies: Why pay? by Ian Smythe http://ow.ly/3YoIn # edchat #dyslexia # Provision CiviCRM support &amp;gt; # CiviCRM coming to# Aegir? http://ow.ly/3Ye1I #…</description><pubDate>Thu, 17 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-02-17</title><link>https://techczech.net/2011/02/17/twitter-weekly-updates-for-2011-02-17/</link><guid isPermaLink="true">https://techczech.net/2011/02/17/twitter-weekly-updates-for-2011-02-17/</guid><description>RT @ briankotts : Studies Find Language Is Key to Learning Math http://bit.ly/gcWd0S /via @ educationweek # edchat #ukedchat # esl #efl # Don&amp;#039;t forget to register for free webinar next Thursday: Assistive Technologies: Why pay? by Ian Smythe http://ow.ly/3YoIn # edchat #dyslexia # Provision CiviCRM support &amp;gt; # CiviCRM coming to# Aegir? http://ow.ly/3Ye1I #…</description><pubDate>Thu, 17 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-16 on @techczech</title><link>https://techczech.net/2011/02/16/the-day-2011-02-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/16/the-day-2011-02-16-on-techczech/</guid><description>Balabolka Free Text-To-Speech Software http://ow.ly/3WU9N # edtech #dyslexia # Didn&amp;#039;t know Skype supported these great chat commands: http://ow.ly/3Xo9u Definitely be using those! # edtech #skype # Powered by Twitter Tools</description><pubDate>Wed, 16 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-15 on @techczech</title><link>https://techczech.net/2011/02/15/the-day-2011-02-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/15/the-day-2011-02-15-on-techczech/</guid><description>New on Researchity: Get the Data: Community for Quantitative research http://j.mp/hZuQsc # SnapEngage looks like the perfect companion service to e-learning http://ow.ly/3WTPi # edtech # Excellent Steven Pinker talk on pragmatics and knowledge. Wish he&amp;#039;d lay off the evolutionary bits elsewhere. http://ow.ly/3WRZT # engchat # Powered by Twitter Tools</description><pubDate>Tue, 15 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-14 on @techczech</title><link>https://techczech.net/2011/02/14/the-day-2011-02-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/14/the-day-2011-02-14-on-techczech/</guid><description>White House Using Open Atrium http://ow.ly/3W569 Another win for # FOSS and # Drupal ! Any uses of # openatrium in education? # edtech # Drupal&amp;#039;s Ladder of Engagement http://ow.ly/3VXUm &amp;lt; relevant for all # FOSS not just # Drupal Often missing in education. # edtech # Powered by Twitter Tools</description><pubDate>Mon, 14 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-11 on @techczech</title><link>https://techczech.net/2011/02/11/the-day-2011-02-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/11/the-day-2011-02-11-on-techczech/</guid><description>A great new resource for research on world&amp;#039;s languages: Open Language Archives Community http://ow.ly/3UFCw # engchat # Either brilliant or stupid, check back in 2014: Nokia Confirms Microsoft Partnership http://ow.ly/3UvXt # New on Researchity: Towards Community-based Research for Education http://j.mp/erEV7N # Powered by Twitter Tools</description><pubDate>Fri, 11 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-10 on @techczech</title><link>https://techczech.net/2011/02/10/the-day-2011-02-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/10/the-day-2011-02-10-on-techczech/</guid><description>Attending # CiviCRM user group meetup in Bristol. Talking about why more charities should use CiviCRM and FOSS in general. # Powered by Twitter Tools</description><pubDate>Thu, 10 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-02-10</title><link>https://techczech.net/2011/02/10/twitter-weekly-updates-for-2011-02-10/</link><guid isPermaLink="true">https://techczech.net/2011/02/10/twitter-weekly-updates-for-2011-02-10/</guid><description>Attending # CiviCRM user group meetup in Bristol. Talking about why more charities should use CiviCRM and FOSS in general. # WordSeer: Exploring Language Use in Slave Narratives « Text Mining and the Digital Humanities http://ow.ly/3TkJN # Finally - works great on Chrome: &quot;Flash 10.2 Allows Full Screen on Separate Monitors&quot; http://ow.ly/3TjXh # edtech #…</description><pubDate>Thu, 10 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-09 on @techczech</title><link>https://techczech.net/2011/02/09/the-day-2011-02-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/09/the-day-2011-02-09-on-techczech/</guid><description>WordSeer: Exploring Language Use in Slave Narratives « Text Mining and the Digital Humanities http://ow.ly/3TkJN # Finally - works great on Chrome: &quot;Flash 10.2 Allows Full Screen on Separate Monitors&quot; http://ow.ly/3TjXh # edtech # Amazing how much goes into the pronunciation of a single word: John Wells’s phonetic blog: quarks http://ow.ly/3TiPh # engchat # Powered…</description><pubDate>Wed, 09 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-08 on @techczech</title><link>https://techczech.net/2011/02/08/the-day-2011-02-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/08/the-day-2011-02-08-on-techczech/</guid><description>RT @ kaelle76 : @ robertcastelo pizzza goood :D thx for sponsoring # drupal_ldn # Nice Draggable Views/Flags presentation presented at http://ow.ly/3SD0Q # drupal_ldn #drupal # Excited about Flags and Flag Weights # Drupal modules at # drupal_ldn # Microsoft WebMatrix being presented at # drupal_ldn http://ow.ly/3SCf6 Could be useful for prototyping on Windows. #…</description><pubDate>Tue, 08 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-07 on @techczech</title><link>https://techczech.net/2011/02/07/the-day-2011-02-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/07/the-day-2011-02-07-on-techczech/</guid><description>Almost bought this for Kindle: http://ow.ly/3RZPt . Was stopped by rip off price. Will buy used paperback and gift it on. Sorry author! # &quot;University cloud services get £12.5m injection&quot; http://ow.ly/3RWRl &amp;lt; I hope they have the good sense to build on Open Source # Free Online Public Lecture: Assistive Technologies: Why pay? by Ian…</description><pubDate>Mon, 07 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-05 on @techczech</title><link>https://techczech.net/2011/02/05/the-day-2011-02-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/05/the-day-2011-02-05-on-techczech/</guid><description>The Future is OpenSaaS: &quot;the option to leave has to be more valuable than actually leaving&quot; http://ow.ly/3QRBD # edtech #drupal # Powered by Twitter Tools</description><pubDate>Sat, 05 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-04 on @techczech</title><link>https://techczech.net/2011/02/04/the-day-2011-02-04-on-techczech-2/</link><guid isPermaLink="true">https://techczech.net/2011/02/04/the-day-2011-02-04-on-techczech-2/</guid><description>Amazing, Lynx (my long lost browser love) ranks 6 among Top 10 # Linux browsers: http://ow.ly/3Qef5 # edtech # New issue of: Language Learning &amp; Technology http://ow.ly/3Q7Er # engchat # Powered by Twitter Tools</description><pubDate>Fri, 04 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-04 on @techczech</title><link>https://techczech.net/2011/02/04/the-day-2011-02-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/04/the-day-2011-02-04-on-techczech/</guid><description>Amazing, Lynx (my long lost browser love) ranks 6 among Top 10 # Linux browsers: http://ow.ly/3Qef5 # edtech # New issue of: Language Learning &amp; Technology http://ow.ly/3Q7Er # engchat # Powered by Twitter Tools</description><pubDate>Fri, 04 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-02-03</title><link>https://techczech.net/2011/02/03/twitter-weekly-updates-for-2011-02-03/</link><guid isPermaLink="true">https://techczech.net/2011/02/03/twitter-weekly-updates-for-2011-02-03/</guid><description>Isn&amp;#039;t this what # Moodle should be doing? &quot;Instructure Launches To Root Blackboard Out Of Universities&quot; http://ow.ly/3NTfr # edtech # Wikipedia Ponders Its Gender-Skewed Contributions - NYTimes.com http://ow.ly/3NTe1 # Powered by Twitter Tools</description><pubDate>Thu, 03 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-02-01 on @techczech</title><link>https://techczech.net/2011/02/01/the-day-2011-02-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/02/01/the-day-2011-02-01-on-techczech/</guid><description>Isn&amp;#039;t this what # Moodle should be doing? &quot;Instructure Launches To Root Blackboard Out Of Universities&quot; http://ow.ly/3NTfr # edtech # Wikipedia Ponders Its Gender-Skewed Contributions - NYTimes.com http://ow.ly/3NTe1 # Powered by Twitter Tools</description><pubDate>Tue, 01 Feb 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-01-27</title><link>https://techczech.net/2011/01/27/twitter-weekly-updates-for-2011-01-27/</link><guid isPermaLink="true">https://techczech.net/2011/01/27/twitter-weekly-updates-for-2011-01-27/</guid><description>Watch this to see how hard language is for computers. http://ow.ly/3Ku1f # &quot;We don&amp;#039;t know what causes word frequencies&quot; &amp; &quot;We don&amp;#039;t know what the effects of word frequencies are.&quot; http://ow.ly/3Kt53 # engchat # &quot;There is a longstanding myth that real bilinguals have no accent in their different languages&quot; http://ow.ly/3JN8k # engchat # @ moximer…</description><pubDate>Thu, 27 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-26 on @techczech</title><link>https://techczech.net/2011/01/26/the-day-2011-01-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/26/the-day-2011-01-26-on-techczech/</guid><description>Watch this to see how hard language is for computers. http://ow.ly/3Ku1f # &quot;We don&amp;#039;t know what causes word frequencies&quot; &amp; &quot;We don&amp;#039;t know what the effects of word frequencies are.&quot; http://ow.ly/3Kt53 # engchat # Powered by Twitter Tools</description><pubDate>Wed, 26 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-25 on @techczech</title><link>https://techczech.net/2011/01/25/the-day-2011-01-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/25/the-day-2011-01-25-on-techczech/</guid><description>&quot;There is a longstanding myth that real bilinguals have no accent in their different languages&quot; http://ow.ly/3JN8k # engchat # Powered by Twitter Tools</description><pubDate>Tue, 25 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-24 on @techczech</title><link>https://techczech.net/2011/01/24/the-day-2011-01-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/24/the-day-2011-01-24-on-techczech/</guid><description>@ moximer @lousylinguist Enjoyed your discussion. Many first principles in linguistics but they look more like RMW Dixon&amp;#039;s than Chomsky&amp;#039;s. # Powered by Twitter Tools</description><pubDate>Mon, 24 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-22 on @techczech</title><link>https://techczech.net/2011/01/22/the-day-2011-01-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/22/the-day-2011-01-22-on-techczech/</guid><description>Should we ration research grant applications? http://ow.ly/3IfSY Is the current system of research funding contributing to knowledge? # Powered by Twitter Tools</description><pubDate>Sat, 22 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-01-20</title><link>https://techczech.net/2011/01/20/twitter-weekly-updates-for-2011-01-20/</link><guid isPermaLink="true">https://techczech.net/2011/01/20/twitter-weekly-updates-for-2011-01-20/</guid><description>Open Source: we are buying, but are we engaging? at OSS Watch team blog http://ow.ly/3GqLm &amp;lt; should be built into project budgets # edtech # A new must subscribe to online journal: Popular Linguistics http://ow.ly/3EMvB # engchat # Amazing to see # Drupal &amp; # Wikipedia to have their 10th birthday within days. http://ow.ly/3EE0s They…</description><pubDate>Thu, 20 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-19 on @techczech</title><link>https://techczech.net/2011/01/19/the-day-2011-01-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/19/the-day-2011-01-19-on-techczech/</guid><description>Open Source: we are buying, but are we engaging? at OSS Watch team blog http://ow.ly/3GqLm &amp;lt; should be built into project budgets # edtech # Powered by Twitter Tools</description><pubDate>Wed, 19 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-17 on @techczech</title><link>https://techczech.net/2011/01/17/the-day-2011-01-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/17/the-day-2011-01-17-on-techczech/</guid><description>A new must subscribe to online journal: Popular Linguistics http://ow.ly/3EMvB # engchat # Powered by Twitter Tools</description><pubDate>Mon, 17 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-16 on @techczech</title><link>https://techczech.net/2011/01/16/the-day-2011-01-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/16/the-day-2011-01-16-on-techczech/</guid><description>Amazing to see # Drupal &amp; # Wikipedia to have their 10th birthday within days. http://ow.ly/3EE0s They both seem to have been around forever. # Powered by Twitter Tools</description><pubDate>Sun, 16 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-15 on @techczech</title><link>https://techczech.net/2011/01/15/the-day-2011-01-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/15/the-day-2011-01-15-on-techczech/</guid><description>Lot&amp;#039;s of 3D at # BETT11 - I preferred the 3D printers over 3D TVs. Can&amp;#039;t wait to have a 3D printer at home in a few years. # edtech # Overwhelming impression from # BETT11 - fragmentation and lock-in. Too much selling, too little sharing. # edtech # Powered by Twitter Tools</description><pubDate>Sat, 15 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2011-01-13</title><link>https://techczech.net/2011/01/13/twitter-weekly-updates-for-2011-01-13/</link><guid isPermaLink="true">https://techczech.net/2011/01/13/twitter-weekly-updates-for-2011-01-13/</guid><description>7 times 7 new things in Drupal 7 | Krimson http://ow.ly/3AmYy # drupal #drupal7 # &quot;bubble of hyper-optimism that surrounds debates about the Internet’s role in advancing human freedom or civic causes&quot; http://ow.ly/3AmRR # Powered by Twitter Tools</description><pubDate>Thu, 13 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2011-01-08 on @techczech</title><link>https://techczech.net/2011/01/08/the-day-2011-01-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2011/01/08/the-day-2011-01-08-on-techczech/</guid><description>7 times 7 new things in Drupal 7 | Krimson http://ow.ly/3AmYy # drupal #drupal7 # &quot;bubble of hyper-optimism that surrounds debates about the Internet’s role in advancing human freedom or civic causes&quot; http://ow.ly/3AmRR # Powered by Twitter Tools</description><pubDate>Sat, 08 Jan 2011 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-12-16</title><link>https://techczech.net/2010/12/16/twitter-weekly-updates-for-2010-12-16/</link><guid isPermaLink="true">https://techczech.net/2010/12/16/twitter-weekly-updates-for-2010-12-16/</guid><description>@ NeilMilliken Agree. The text level measures are all problematic. They can even mark an easy text as difficult. Better than nothing, thought in reply to NeilMilliken # &quot;Google Shows Reading Levels for Search Results&quot; great for readers with literacy difficulties http://ow.ly/3nthF # dyslexia # Great news. # Moodle HQ changing development to SCRUM. More…</description><pubDate>Thu, 16 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-14 on @techczech</title><link>https://techczech.net/2010/12/14/the-day-2010-12-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/14/the-day-2010-12-14-on-techczech/</guid><description>@ NeilMilliken Agree. The text level measures are all problematic. They can even mark an easy text as difficult. Better than nothing, thought in reply to NeilMilliken # Powered by Twitter Tools</description><pubDate>Tue, 14 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-12-12</title><link>https://techczech.net/2010/12/13/links-for-2010-12-12/</link><guid isPermaLink="true">https://techczech.net/2010/12/13/links-for-2010-12-12/</guid><description>Learn Out Loud - Audio Books, Podcasts, Videos, and Free Downloads to Learn From (tags: audiobooks learning podcasts education multimedia )</description><pubDate>Mon, 13 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-13 on @techczech</title><link>https://techczech.net/2010/12/13/the-day-2010-12-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/13/the-day-2010-12-13-on-techczech/</guid><description>&quot;Google Shows Reading Levels for Search Results&quot; great for readers with literacy difficulties http://ow.ly/3nthF # dyslexia # Great news. # Moodle HQ changing development to SCRUM. More frequent major release should help Moodle become more &amp;#039;agile&amp;#039;! http://ow.ly/3o5Nk # Powered by Twitter Tools</description><pubDate>Mon, 13 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-11 on @techczech</title><link>https://techczech.net/2010/12/11/the-day-2010-12-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/11/the-day-2010-12-11-on-techczech/</guid><description># BBC #039;s Start The Week, In Our Time, Thinking Aloud and # NPR #039;s On The Media are must listen podcasts. Never shy away from complex topics! # @ Amazon charging more for Kindle books than paperbacks is immoral. Bad for readers, bad for environment. http://j.mp/g2N2lu # Powered by Twitter Tools</description><pubDate>Sat, 11 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-12-09</title><link>https://techczech.net/2010/12/10/links-for-2010-12-09/</link><guid isPermaLink="true">https://techczech.net/2010/12/10/links-for-2010-12-09/</guid><description>NounProject (tags: resources free online teaching icons reference )</description><pubDate>Fri, 10 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-10 on @techczech</title><link>https://techczech.net/2010/12/10/the-day-2010-12-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/10/the-day-2010-12-10-on-techczech/</guid><description>The case of the shockingly unsplit infinitive: &quot;...for example, federal seems usually to be...&quot; http://ow.ly/3n0yW # engchat # Powered by Twitter Tools</description><pubDate>Fri, 10 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-09 on @techczech</title><link>https://techczech.net/2010/12/09/the-day-2010-12-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/09/the-day-2010-12-09-on-techczech/</guid><description>What will they think of next? Well, I want one! USB Typewriter http://ow.ly/3mJDS # edtech # Frankly, I can&amp;#039;t see myself building a # Drupal 7 site without using http://www.drupalgardens.com to prototype the basic features. # Attending a great webinar by @ aquia on quick roll out of # Drupal (micro)sites using # DrupalGardens http://j.mp/15M0So…</description><pubDate>Thu, 09 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-12-09</title><link>https://techczech.net/2010/12/09/twitter-weekly-updates-for-2010-12-09/</link><guid isPermaLink="true">https://techczech.net/2010/12/09/twitter-weekly-updates-for-2010-12-09/</guid><description>What will they think of next? Well, I want one! USB Typewriter http://ow.ly/3mJDS # edtech # Frankly, I can&amp;#039;t see myself building a # Drupal 7 site without using http://www.drupalgardens.com to prototype the basic features. # Attending a great webinar by @ aquia on quick roll out of # Drupal (micro)sites using # DrupalGardens http://j.mp/15M0So…</description><pubDate>Thu, 09 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-08 on @techczech</title><link>https://techczech.net/2010/12/08/the-day-2010-12-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/08/the-day-2010-12-08-on-techczech/</guid><description>Competence concepts and competence transfer: &quot;there is a risk that competence concepts could proliferate wildly&quot; http://ow.ly/3m7KF # edchat # Powered by Twitter Tools</description><pubDate>Wed, 08 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-07 on @techczech</title><link>https://techczech.net/2010/12/07/the-day-2010-12-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/07/the-day-2010-12-07-on-techczech/</guid><description>&quot;Notes on Parenting: Is My Child Behind in His Development?&quot; http://ow.ly/3lr2i # edchat # Another Gender Gap Closed by a Well-Timed Bit of Encouragement | Mind Matters | Big Think http://ow.ly/3l579 # edchat # Powered by Twitter Tools</description><pubDate>Tue, 07 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-06 on @techczech</title><link>https://techczech.net/2010/12/06/the-day-2010-12-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/06/the-day-2010-12-06-on-techczech/</guid><description>Happy to finally see Dropbox to move to RC on 1.0 but their pace of innovation is snail-like compared with rivals. http://ow.ly/3kwYG # &quot;...small effects are difficult to study, no matter how interesting that they are.&quot; http://ow.ly/3kitr # edchat # Powered by Twitter Tools</description><pubDate>Mon, 06 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-05 on @techczech</title><link>https://techczech.net/2010/12/05/the-day-2010-12-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/05/the-day-2010-12-05-on-techczech/</guid><description>I was just going to scan this post on Rap scholarship but it raises fundamental issues of authorship, evidence and more: http://ow.ly/3kfXO # Why can&amp;#039;t all CSS be like LESS - Leaner CSS? http://ow.ly/3kf6Y # Powered by Twitter Tools</description><pubDate>Sun, 05 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-04 on @techczech</title><link>https://techczech.net/2010/12/04/the-day-2010-12-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/04/the-day-2010-12-04-on-techczech/</guid><description>OMG (Oh My Gnome) now I know what I want for Christmas: Gnome Chomsky from JustSay Gnome! http://ow.ly/3k0fh # First time I clicked on an in-video YouYube ad and I got this great story: Ironic Business Card Becomes Accidental Viral http://ow.ly/3jURZ # Powered by Twitter Tools</description><pubDate>Sat, 04 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-03 on @techczech</title><link>https://techczech.net/2010/12/03/the-day-2010-12-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/03/the-day-2010-12-03-on-techczech/</guid><description>@ letscrate Love the drag and drop features on drop.io replacement # Crate # edtech in reply to letscrate # Plus add http://ge.tt RT @ pgsimoes : # edtech 10+ Alternatives to Drop.io http://dlvr.it/9gdnL (@rmbyrne) # Language Log » Radiation risk from flying dwarfs http://ow.ly/3jxFF # Powered by Twitter Tools</description><pubDate>Fri, 03 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-12-02 on @techczech</title><link>https://techczech.net/2010/12/02/the-day-2010-12-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/02/the-day-2010-12-02-on-techczech/</guid><description>The Lousy Linguist: how to spot an academic con artist http://ow.ly/3iXkF # &quot;Bilinguals usually acquire &amp; use their languages for different purposes, in different domains.., with different people.&quot; http://ow.ly/3iNcJ # Powered by Twitter Tools</description><pubDate>Thu, 02 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-12-02</title><link>https://techczech.net/2010/12/02/twitter-weekly-updates-for-2010-12-02/</link><guid isPermaLink="true">https://techczech.net/2010/12/02/twitter-weekly-updates-for-2010-12-02/</guid><description>The Lousy Linguist: how to spot an academic con artist http://ow.ly/3iXkF # &quot;Bilinguals usually acquire &amp; use their languages for different purposes, in different domains.., with different people.&quot; http://ow.ly/3iNcJ # &quot;trying to discover facts about usage by consciously reflecting on your own behavior is a deeply flawed process&quot; http://ow.ly/3i02V # engchat # Can http://ge.tt be…</description><pubDate>Thu, 02 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>How do you find reusable content for teaching</title><link>https://techczech.net/2010/12/01/how-do-you-find-reusable-content-for-teaching/</link><guid isPermaLink="true">https://techczech.net/2010/12/01/how-do-you-find-reusable-content-for-teaching/</guid><description>I just gave the following answer to this question from a student. Perhaps somebody can find this useful. Comments welcome: does anyone know the rules about using images from the internet for teaching resources in terms of copyright? I have been copying pictures willy nilly but not sure if that is legal.... Please don&apos;t take…</description><pubDate>Wed, 01 Dec 2010 00:00:00 GMT</pubDate><category>Tips and Guides</category><category>Using ICT</category><category>Copyright</category><category>Copyright law</category><category>Creative Commons</category><category>creator/author</category><category>Derivative work</category><category>Fair use</category><category>Public domain</category></item><item><title>The day  2010-12-01 on @techczech</title><link>https://techczech.net/2010/12/01/the-day-2010-12-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/12/01/the-day-2010-12-01-on-techczech/</guid><description>&quot;trying to discover facts about usage by consciously reflecting on your own behavior is a deeply flawed process&quot; http://ow.ly/3i02V # engchat # Powered by Twitter Tools</description><pubDate>Wed, 01 Dec 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-30 on @techczech</title><link>https://techczech.net/2010/11/30/the-day-2010-11-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/30/the-day-2010-11-30-on-techczech/</guid><description>Can http://ge.tt be the true successor to the traitorous Drop.io? Looks very very close! Password protection would help. # edtech # Powered by Twitter Tools</description><pubDate>Tue, 30 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-29 on @techczech</title><link>https://techczech.net/2010/11/29/the-day-2010-11-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/29/the-day-2010-11-29-on-techczech/</guid><description>RT @ briankotts : “I want my 5 hours back”. No evidence that homework leads 2better learning. http://bit.ly/gejPl5 # edchat &amp;gt; me &amp; my kids 2 :( # Powered by Twitter Tools</description><pubDate>Mon, 29 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-28 on @techczech</title><link>https://techczech.net/2010/11/28/the-day-2010-11-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/28/the-day-2010-11-28-on-techczech/</guid><description>Does teacher freedom from &quot;bureaucratic control&quot; mean less freedom for students with special needs? http://ow.ly/3gq7G # edchat #senchat # Powered by Twitter Tools</description><pubDate>Sun, 28 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-11-26</title><link>https://techczech.net/2010/11/27/links-for-2010-11-26/</link><guid isPermaLink="true">https://techczech.net/2010/11/27/links-for-2010-11-26/</guid><description>E-Learning Journals (tags: elearning research )</description><pubDate>Sat, 27 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-27 on @techczech</title><link>https://techczech.net/2010/11/27/the-day-2010-11-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/27/the-day-2010-11-27-on-techczech/</guid><description>I finally understand why Krugman got his Nobel. This deserves to be a book: &quot;The Instability of Moderation&quot; http://ow.ly/3ghOf # E-Learning Journals http://ow.ly/3g3e5 # edtech # Powered by Twitter Tools</description><pubDate>Sat, 27 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-26 on @techczech</title><link>https://techczech.net/2010/11/26/the-day-2010-11-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/26/the-day-2010-11-26-on-techczech/</guid><description># moodle2 is out with radical under-the-hood changes. Looking forward to # moodle3 that redesigns the hood. # Powered by Twitter Tools</description><pubDate>Fri, 26 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-25 on @techczech</title><link>https://techczech.net/2010/11/25/the-day-2010-11-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/25/the-day-2010-11-25-on-techczech/</guid><description>I don&amp;#039;t get it! How on Earth can it cost $3,000 to publish a single academic article if you don&amp;#039;t pay for peer review http://ow.ly/3flzm # Powered by Twitter Tools</description><pubDate>Thu, 25 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-11-25</title><link>https://techczech.net/2010/11/25/twitter-weekly-updates-for-2010-11-25/</link><guid isPermaLink="true">https://techczech.net/2010/11/25/twitter-weekly-updates-for-2010-11-25/</guid><description>I don&amp;#039;t get it! How on Earth can it cost $3,000 to publish a single academic article if you don&amp;#039;t pay for peer review http://ow.ly/3flzm # # Moodle 2.0 finally released! Been running test site on RC and the upgrade&amp;#039;s worth it. Still a way to go, though. http://ow.ly/3f7Rx # edtech # &quot;constant ostinato of…</description><pubDate>Thu, 25 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-24 on @techczech</title><link>https://techczech.net/2010/11/24/the-day-2010-11-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/24/the-day-2010-11-24-on-techczech/</guid><description># Moodle 2.0 finally released! Been running test site on RC and the upgrade&amp;#039;s worth it. Still a way to go, though. http://ow.ly/3f7Rx # edtech # &quot;constant ostinato of Viewing With Alarm somehow never translates into serious large-scale studies of causes and effects&quot; http://ow.ly/3eWTx # Powered by Twitter Tools</description><pubDate>Wed, 24 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-23 on @techczech</title><link>https://techczech.net/2010/11/23/the-day-2010-11-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/23/the-day-2010-11-23-on-techczech/</guid><description>Genitivizing the ungenitivizable &quot;...faced with a set of terrible choices, people will make terrible decisions.&quot; http://ow.ly/3em7b # engchat # RT @ PreKlanguages : Foreign Language for Foreign Policy? http://bit.ly/fEz26c # languages #edchat # mfl #ellchat # Powered by Twitter Tools</description><pubDate>Tue, 23 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-21 on @techczech</title><link>https://techczech.net/2010/11/21/the-day-2010-11-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/21/the-day-2010-11-21-on-techczech/</guid><description>&quot;Heffer cannot tell his participle from a hole in the ground.&quot; http://ow.ly/3dbRK &amp;lt; Or should it be gerund? # engchat # Powered by Twitter Tools</description><pubDate>Sun, 21 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-19 on @techczech</title><link>https://techczech.net/2010/11/19/the-day-2010-11-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/19/the-day-2010-11-19-on-techczech/</guid><description>Not sure the value metaphor holds for long. RT @ JR_Haugen : ... We give education away, how much do your students value it? # edchat # RT @ mbusicoflight : Does education change slowly? http://www.elearners.com/articles/education-innovations/ # edchat #globaled10 # Putting QuickTime on a PC is a traumatic experience. Kind of like installing a virus…</description><pubDate>Fri, 19 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-18 on @techczech</title><link>https://techczech.net/2010/11/18/the-day-2010-11-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/18/the-day-2010-11-18-on-techczech/</guid><description>@ MoodleDan Got me thinking about an # Android app for # Moodle Only one I could find: http://bit.ly/9Y0rpy doesn&amp;#039;t work with our install. in reply to MoodleDan # Powered by Twitter Tools</description><pubDate>Thu, 18 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-11-18</title><link>https://techczech.net/2010/11/18/twitter-weekly-updates-for-2010-11-18/</link><guid isPermaLink="true">https://techczech.net/2010/11/18/twitter-weekly-updates-for-2010-11-18/</guid><description>@ MoodleDan Got me thinking about an # Android app for # Moodle Only one I could find: http://bit.ly/9Y0rpy doesn&amp;#039;t work with our install. in reply to MoodleDan # I wonder if any of the student protesters could take lessons from Velvet Revolution of 21 year&amp;#039;s ago? http://ow.ly/3bh2B # edchat # On &quot;Strictly incompetent: pompous…</description><pubDate>Thu, 18 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-17 on @techczech</title><link>https://techczech.net/2010/11/17/the-day-2010-11-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/17/the-day-2010-11-17-on-techczech/</guid><description>I wonder if any of the student protesters could take lessons from Velvet Revolution of 21 year&amp;#039;s ago? http://ow.ly/3bh2B # edchat # Powered by Twitter Tools</description><pubDate>Wed, 17 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-15 on @techczech</title><link>https://techczech.net/2010/11/15/the-day-2010-11-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/15/the-day-2010-11-15-on-techczech/</guid><description>On &quot;Strictly incompetent: pompous garbage from Simon Heffer&quot;: &quot;Consistency isn&amp;#039;t quite enough to excuse grammar fascism.&quot; http://ow.ly/3acpX # On ignorance: &quot;[It is the fact...] you know many things deeply and thoroughly that can prevent your learning.&quot; http://ow.ly/39Vn5 # edchat # Powered by Twitter Tools</description><pubDate>Mon, 15 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-13 on @techczech</title><link>https://techczech.net/2010/11/13/the-day-2010-11-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/13/the-day-2010-11-13-on-techczech/</guid><description>Central v. Local control that old education see-saw: &quot;Gove proposes direct management of state schools funding&quot; http://ow.ly/39df7 # edchat # Powered by Twitter Tools</description><pubDate>Sat, 13 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-12 on @techczech</title><link>https://techczech.net/2010/11/12/the-day-2010-11-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/12/the-day-2010-11-12-on-techczech/</guid><description>&quot;women [in] sexist work-place [...can] bolster ties to other women or [distance themselves] from their feminine identity&quot; http://ow.ly/383CS # Just pre-registered for UK Moodlemoot 2010: http://ow.ly/38MRB # mootuk11 # RT @ Anthropologies : Universities Reform, crisis and the absence of a language of protest: http://bit.ly/dCMdNo # RT @ hjarche : The myth of the inevitability…</description><pubDate>Fri, 12 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-11 on @techczech</title><link>https://techczech.net/2010/11/11/the-day-2010-11-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/11/the-day-2010-11-11-on-techczech/</guid><description>@ andymee Try http://commons.acquia.com in reply to andymee # Love the title: RT @ langwitches : In session called &quot;just more (technology)stuff or truly more education&quot; at # fcis10 # Amazing to see how # Drupal site building has changed in the last year with Context and Features. See # drupalcommons 4 sample implementation. #…</description><pubDate>Thu, 11 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-11-11</title><link>https://techczech.net/2010/11/11/twitter-weekly-updates-for-2010-11-11/</link><guid isPermaLink="true">https://techczech.net/2010/11/11/twitter-weekly-updates-for-2010-11-11/</guid><description>@ andymee Try http://commons.acquia.com in reply to andymee # Love the title: RT @ langwitches : In session called &quot;just more (technology)stuff or truly more education&quot; at # fcis10 # Amazing to see how # Drupal site building has changed in the last year with Context and Features. See # drupalcommons 4 sample implementation. #…</description><pubDate>Thu, 11 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-10 on @techczech</title><link>https://techczech.net/2010/11/10/the-day-2010-11-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/10/the-day-2010-11-10-on-techczech/</guid><description>Love the # drupal Active Tags module presented at # drupal_ldn http://ow.ly/1rsWzB # Pronouncing it by the book http://ow.ly/1rt6BX &amp;lt; oh, how common this is, mostly harmless &amp; comical but teachers should know better # engchat # I have no idea why I&amp;#039;m watching the Bowls: Scottish International Open sponsored by Co-operative Funeral Care http://ow.ly/37KJn…</description><pubDate>Wed, 10 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-09 on @techczech</title><link>https://techczech.net/2010/11/09/the-day-2010-11-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/09/the-day-2010-11-09-on-techczech/</guid><description>About time: &quot;the death of philosophy&quot; http://ow.ly/36Rc1 # I.T. takes longer | BDA Employment and Dyslexia Handbook 2010 http://ow.ly/35qtn # dyslexia #edtech # Interesting research: &quot;Implicit Puritanism in American Moral Cognition&quot; http://ow.ly/36Ntm # Student just observed grammar wars in UK supermarkets: Tesco: &quot;5 items of less&quot; v Waitrose: &quot;5 items or fewer&quot; # engchat Cf…</description><pubDate>Tue, 09 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-08 on @techczech</title><link>https://techczech.net/2010/11/08/the-day-2010-11-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/08/the-day-2010-11-08-on-techczech/</guid><description>The Innovative Educator: Apps for Innovative Educators with Androids http://ow.ly/35pwA # @ mweller re http://ow.ly/360Rt I know the feeling. Even worse in fields (linguistics!) where 95% of participants never heard of &amp;#039;hashtag&amp;#039;! # Powered by Twitter Tools</description><pubDate>Mon, 08 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-07 on @techczech</title><link>https://techczech.net/2010/11/07/the-day-2010-11-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/07/the-day-2010-11-07-on-techczech/</guid><description>RT @ KarinReichrath : Great metaphor: Social Media is like Learning How to Fish - http://bit.ly/bN5RqX by @ AskAaronlee # socialmedia # Must read blog/journal on language: &quot;Word. The Online Journal on African American English&quot; http://ow.ly/35G92 # Powered by Twitter Tools</description><pubDate>Sun, 07 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-06 on @techczech</title><link>https://techczech.net/2010/11/06/the-day-2010-11-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/06/the-day-2010-11-06-on-techczech/</guid><description>&quot;Strong Opinions, Weakly Held&quot; http://ow.ly/35pBX &amp;lt; too many weak opinions, strongly held out there # &quot;absolute certainty can be a liability when dealing with complex issues and problems.&quot; http://ow.ly/35pyo &amp;gt; &quot;strong opions, weakly held&quot; # Crucial TED talk on the importance of patterns in the brain over focus on neurons! http://ow.ly/35riP # @ google I…</description><pubDate>Sat, 06 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-05 on @techczech</title><link>https://techczech.net/2010/11/05/the-day-2010-11-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/05/the-day-2010-11-05-on-techczech/</guid><description>Hilarious writeup of marine mammal moxy. Any blogger who calls dolphins &amp;#039;assholes&amp;#039; has my tweet. http://ow.ly/359OT # I think the newly redesigned http://drupal.org may just be the best-designed project website ever. # drupal # Powered by Twitter Tools</description><pubDate>Fri, 05 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-04 on @techczech</title><link>https://techczech.net/2010/11/04/the-day-2010-11-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/04/the-day-2010-11-04-on-techczech/</guid><description>What is Dyslexia: Free Webinar Starting in 30mins: http://j.mp/d9xhd3 # edchat # Attending talk on intervention for Pragmatic Language Impairment at Royal Holloway: http://www.psych-sci.manchester.ac.uk/scip # engchat # Do Freelancers Do Best on WordPress, Drupal or Joomla? http://ow.ly/1rof3r # Powered by Twitter Tools</description><pubDate>Thu, 04 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-11-04</title><link>https://techczech.net/2010/11/04/twitter-weekly-updates-for-2010-11-04/</link><guid isPermaLink="true">https://techczech.net/2010/11/04/twitter-weekly-updates-for-2010-11-04/</guid><description>What is Dyslexia: Free Webinar Starting in 30mins: http://j.mp/d9xhd3 # edchat # Attending talk on intervention for Pragmatic Language Impairment at Royal Holloway: http://www.psych-sci.manchester.ac.uk/scip # engchat # Do Freelancers Do Best on WordPress, Drupal or Joomla? http://ow.ly/1rof3r # &quot;What is Dyslexia?&quot;-register for free webinar public lecture for Dyslexia Awareness Week http://j.mp/ct0Q1n # edchat #engchat #…</description><pubDate>Thu, 04 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-03 on @techczech</title><link>https://techczech.net/2010/11/03/the-day-2010-11-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/03/the-day-2010-11-03-on-techczech/</guid><description>&quot;What is Dyslexia?&quot;-register for free webinar public lecture for Dyslexia Awareness Week http://j.mp/ct0Q1n # edchat #engchat # dyslexia # Powered by Twitter Tools</description><pubDate>Wed, 03 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-02 on @techczech</title><link>https://techczech.net/2010/11/02/the-day-2010-11-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/02/the-day-2010-11-02-on-techczech/</guid><description>Learn your phonetics by heart... http://ow.ly/32ffK # engchat # &quot;..no state legislature be allowed to require standards that they couldn&amp;#039;t demonstrate proficiency on themselves&quot; http://ow.ly/326lK # edchat # Why we should view all fearmongering on education with suspicion: http://ow.ly/330Tf # edchat # Powered by Twitter Tools</description><pubDate>Tue, 02 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-11-01 on @techczech</title><link>https://techczech.net/2010/11/01/the-day-2010-11-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/11/01/the-day-2010-11-01-on-techczech/</guid><description>@ iusher that&amp;#039;s the problem. Drop.io filled so many different needs at the same time # IT &amp; Media Studies graduates worst hit by unemployment. Law, Geography, SportsScience least. What does this mean? http://ow.ly/32CJ0 # edchat # RT @ andymee : I say this every year but words can&amp;#039;t express my utter hatred of Turnitin…</description><pubDate>Mon, 01 Nov 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-31 on @techczech</title><link>https://techczech.net/2010/10/31/the-day-2010-10-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/31/the-day-2010-10-31-on-techczech/</guid><description>Was surprised no comments on @ dropio &amp;#039;s closure on official blog: http://j.mp/bCzJRK . So I left one. It was deleted. No surprise! # edtech # &quot;The more..people worry about too many children [in other parts] of the world, the more..forget about [own] appliances..&quot; http://ow.ly/32cSL # &quot;is it possible to provide in a systemic way…</description><pubDate>Sun, 31 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-30 on @techczech</title><link>https://techczech.net/2010/10/30/the-day-2010-10-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/30/the-day-2010-10-30-on-techczech/</guid><description>RT @ TeacherSabrina : My latest piece for HuffPo is finally up! Sane is the new Radical http://huff.to/cEqcKd # edchat #edreform # There should be more experiments with Open Source in education like this: http://www.ubuntu.1monthof.org # edtech #foss # One more example of Facebook disdain for users: &quot;Facebook Buys Drop.io, Shuts It Down&quot; http://ow.ly/1rkjez #…</description><pubDate>Sat, 30 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-29 on @techczech</title><link>https://techczech.net/2010/10/29/the-day-2010-10-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/29/the-day-2010-10-29-on-techczech/</guid><description>&quot;I&amp;#039;m always suspicious when someone suggests the solution to long-term systemic problems involves superhuman efforts...&quot; http://j.mp/b0vMMj # Take to heart: ‘Not a word’ isn&amp;#039;t an argument: &quot;People saying &amp;#039;it’s not a word&amp;#039;..mean it’s not a word they like&quot; http://ow.ly/31r3p # engchat # Powered by Twitter Tools</description><pubDate>Fri, 29 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-28 on @techczech</title><link>https://techczech.net/2010/10/28/the-day-2010-10-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/28/the-day-2010-10-28-on-techczech/</guid><description>&quot;$75 billion has been spent on CRM software...customer satisfaction has risen only 3-5 percent&quot; http://ow.ly/30XQy &amp;lt; VLE = CRM? # edtech # Scrivener, the super writing productivity tools comes finally comes to Windows in a Beta available now: http://ow.ly/30PeK # edtech # Powered by Twitter Tools</description><pubDate>Thu, 28 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-10-28</title><link>https://techczech.net/2010/10/28/twitter-weekly-updates-for-2010-10-28/</link><guid isPermaLink="true">https://techczech.net/2010/10/28/twitter-weekly-updates-for-2010-10-28/</guid><description>&quot;$75 billion has been spent on CRM software...customer satisfaction has risen only 3-5 percent&quot; http://ow.ly/30XQy &amp;lt; VLE = CRM? # edtech # Scrivener, the super writing productivity tools comes finally comes to Windows in a Beta available now: http://ow.ly/30PeK # edtech # Free webinar tomorrow: &quot;Public Lecture: Making Examinations Fair through Accessibility Arrangements&quot; http://ow.ly/305c5 #…</description><pubDate>Thu, 28 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-27 on @techczech</title><link>https://techczech.net/2010/10/27/the-day-2010-10-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/27/the-day-2010-10-27-on-techczech/</guid><description>Free webinar tomorrow: &quot;Public Lecture: Making Examinations Fair through Accessibility Arrangements&quot; http://ow.ly/305c5 # Powered by Twitter Tools</description><pubDate>Wed, 27 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-26 on @techczech</title><link>https://techczech.net/2010/10/26/the-day-2010-10-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/26/the-day-2010-10-26-on-techczech/</guid><description>Shakespeare in the Original Voice http://ow.ly/1rhrvn # engchat # Selling balance on charter schools http://ow.ly/1rhqGG # edchat # Take Notes &amp; Annotate PDFs The Easy Way With Jarnal http://ow.ly/1rhncr # edtech &amp;lt; send like a handy tool for teachers # Powered by Twitter Tools</description><pubDate>Tue, 26 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-25 on @techczech</title><link>https://techczech.net/2010/10/25/the-day-2010-10-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/25/the-day-2010-10-25-on-techczech/</guid><description>Just scored 92 points on Wordfeud. Who knew &amp;#039;Froggier&amp;#039; was a word. http://wordfeud.com # Powered by Twitter Tools</description><pubDate>Mon, 25 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-24 on @techczech</title><link>https://techczech.net/2010/10/24/the-day-2010-10-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/24/the-day-2010-10-24-on-techczech/</guid><description>Just came across Erving Goffman Archives http://ow.ly/2YzYr A man whose importance for education it is still easy to underestimate. # edchat # How to find the balance? &quot;Just Because Google Exists Doesn’t Mean You Should Stop Asking People Things&quot; http://ow.ly/1rgcbj # Powered by Twitter Tools</description><pubDate>Sun, 24 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-23 on @techczech</title><link>https://techczech.net/2010/10/23/the-day-2010-10-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/23/the-day-2010-10-23-on-techczech/</guid><description>RT @ CogniBeat1 : Charley Boorman on a childhood spent with dyslexia http://bbc.in/cstOCe # Was ready to buy http://j.mp/b974OL for my # Kindle but @ randomhouse won&amp;#039;t let me in the UK. Hope the author thanks them for the lost sale! # Upgraded netbook to Ubuntu 10.10. Like the Unity interface in principle-even for desktop-but…</description><pubDate>Sat, 23 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-22 on @techczech</title><link>https://techczech.net/2010/10/22/the-day-2010-10-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/22/the-day-2010-10-22-on-techczech/</guid><description>Finally, ebooks on the Kindle to become lendable. Hopefully, library support and gifting will soon follow. http://j.mp/bJgQS7 # edtech # Powered by Twitter Tools</description><pubDate>Fri, 22 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-10-21</title><link>https://techczech.net/2010/10/21/twitter-weekly-updates-for-2010-10-21/</link><guid isPermaLink="true">https://techczech.net/2010/10/21/twitter-weekly-updates-for-2010-10-21/</guid><description>Definitely will try One Page Per Day: A web typewriter for authors. http://j.mp/bQeXGD # Wish I had time to read all the Nominees for the Edward Sapir Book Prize 2010 http://j.mp/ahs4Bi # anthropology # &quot;we can&amp;#039;t have an educational system focused entirely on the occasional Mandelbrot but...&quot; http://j.mp/daEPUH # edchat # Sad news: Mandelbrot resembles…</description><pubDate>Thu, 21 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-20 on @techczech</title><link>https://techczech.net/2010/10/20/the-day-2010-10-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/20/the-day-2010-10-20-on-techczech/</guid><description>Definitely will try One Page Per Day: A web typewriter for authors. http://j.mp/bQeXGD # Wish I had time to read all the Nominees for the Edward Sapir Book Prize 2010 http://j.mp/ahs4Bi # anthropology # Powered by Twitter Tools</description><pubDate>Wed, 20 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-17 on @techczech</title><link>https://techczech.net/2010/10/17/the-day-2010-10-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/17/the-day-2010-10-17-on-techczech/</guid><description>&quot;we can&amp;#039;t have an educational system focused entirely on the occasional Mandelbrot but...&quot; http://j.mp/daEPUH # edchat # Powered by Twitter Tools</description><pubDate>Sun, 17 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-16 on @techczech</title><link>https://techczech.net/2010/10/16/the-day-2010-10-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/16/the-day-2010-10-16-on-techczech/</guid><description>Sad news: Mandelbrot resembles the big fractal in the sky: http://fooledbyrandomness.com # Powered by Twitter Tools</description><pubDate>Sat, 16 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-15 on @techczech</title><link>https://techczech.net/2010/10/15/the-day-2010-10-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/15/the-day-2010-10-15-on-techczech/</guid><description>Eat less meat, save the planet? Livestock nears sustainability limit http://ow.ly/1r9hwS # Great variety of products at # specialneedsldn Sadly only one example of # foss and # oer at http://commtap.org # Love the metaphor of beta-knowledge: &quot;Prototyping cultures: social experimentation, DIY science and beta-knowledge&quot; http://j.mp/d1KwVq # Powered by Twitter Tools</description><pubDate>Fri, 15 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-10-14</title><link>https://techczech.net/2010/10/14/twitter-weekly-updates-for-2010-10-14/</link><guid isPermaLink="true">https://techczech.net/2010/10/14/twitter-weekly-updates-for-2010-10-14/</guid><description>A very promising service of all the .io kind: http://markup.io . Great for teaching webdesign as a simple alternative to Diigo. # edtech # &quot;A person can be a total dunce at one thing (and get slaughtered for it on LanguageLog) while being brilliant at another&quot; http://j.mp/9QPo3U # This sounds like an important book to…</description><pubDate>Thu, 14 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-13 on @techczech</title><link>https://techczech.net/2010/10/13/the-day-2010-10-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/13/the-day-2010-10-13-on-techczech/</guid><description>A very promising service of all the .io kind: http://markup.io . Great for teaching webdesign as a simple alternative to Diigo. # edtech # &quot;A person can be a total dunce at one thing (and get slaughtered for it on LanguageLog) while being brilliant at another&quot; http://j.mp/9QPo3U # This sounds like an important book to…</description><pubDate>Wed, 13 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-12 on @techczech</title><link>https://techczech.net/2010/10/12/the-day-2010-10-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/12/the-day-2010-10-12-on-techczech/</guid><description>@ Downes Also, learning and education are not subject to the same theory. The weak point is a theory of how learning results in education. in reply to Downes # @ Downes Historically, looking for the one good theory of learning/education has resulted in misery for teachers and (some) students. in reply to Downes #…</description><pubDate>Tue, 12 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-11 on @techczech</title><link>https://techczech.net/2010/10/11/the-day-2010-10-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/11/the-day-2010-10-11-on-techczech/</guid><description>Does the annexation of the commons in 1600s discussed in this podcast foreshadow the future of freedom on the net? http://j.mp/dySz9s # Powered by Twitter Tools</description><pubDate>Mon, 11 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-10 on @techczech</title><link>https://techczech.net/2010/10/10/the-day-2010-10-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/10/the-day-2010-10-10-on-techczech/</guid><description>I feel that GoodleDocs have taken a step and a half back for every step forward. Docs looking like pages are no good without zoom. # edtech # Illustration how study skills instruction can be too successful for someone&amp;#039;s own good. http://j.mp/aGXL8r # edchat # RT @ temperedradical : Thought provoking. Thnx RT @ kdwashburn…</description><pubDate>Sun, 10 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-09 on @techczech</title><link>https://techczech.net/2010/10/09/the-day-2010-10-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/09/the-day-2010-10-09-on-techczech/</guid><description>&quot;Humbolt: any thought can be expressed in any language: http://j.mp/brvPGj &amp;lt;This should always be prefaced by &quot;with enough effort&quot; # engchat # Important question is based on iffy data. &quot;How can we change students&amp;#039; relationships with information?&quot; http://j.mp/9npcWJ # edtech #edchat # Drupal Commons isn&amp;#039;t dependent on using Drupal | Acquia http://j.mp/9SW9fM # Open Tweet…</description><pubDate>Sat, 09 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-08 on @techczech</title><link>https://techczech.net/2010/10/08/the-day-2010-10-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/08/the-day-2010-10-08-on-techczech/</guid><description>Randomize twice, reform once! &amp;gt;&quot;social norming can be extremely sensitive to small changes in initial conditions&quot; http://j.mp/98RkMe # edchat # Think before you reform: &quot;Peer pressure, selection, and educational reform&quot; ow.ly/1r4yOb # edchat # Powered by Twitter Tools</description><pubDate>Fri, 08 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-07 on @techczech</title><link>https://techczech.net/2010/10/07/the-day-2010-10-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/07/the-day-2010-10-07-on-techczech/</guid><description>&quot;what many of us take for granted with computers seems like absolute voodoo to many other people&quot; ow.ly/1r3Clp # edtech # Powered by Twitter Tools</description><pubDate>Thu, 07 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-10-07</title><link>https://techczech.net/2010/10/07/twitter-weekly-updates-for-2010-10-07/</link><guid isPermaLink="true">https://techczech.net/2010/10/07/twitter-weekly-updates-for-2010-10-07/</guid><description>&quot;what many of us take for granted with computers seems like absolute voodoo to many other people&quot; ow.ly/1r3Clp # edtech # Excellent summary of programming: &quot;Every programming language is, fundamentally, a way of encoding logic.&quot; http://j.mp/ac6ps2 # edtech # Another # Drupal distro with great potential http://sciencecollaboration.org . Configured with semantic markup for scientific communities…</description><pubDate>Thu, 07 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-02 on @techczech</title><link>https://techczech.net/2010/10/02/the-day-2010-10-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/02/the-day-2010-10-02-on-techczech/</guid><description>Excellent summary of programming: &quot;Every programming language is, fundamentally, a way of encoding logic.&quot; http://j.mp/ac6ps2 # edtech # Another # Drupal distro with great potential http://sciencecollaboration.org . Configured with semantic markup for scientific communities. # @ ebodeux Cheating is a feature of schooling not learning. Cheaters could still be learning or learning something more important…</description><pubDate>Sat, 02 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-10-01 on @techczech</title><link>https://techczech.net/2010/10/01/the-day-2010-10-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/10/01/the-day-2010-10-01-on-techczech/</guid><description>To live by: In any model you &quot;have to make assumptions to generalize your inferences beyond the population under study.&quot; http://j.mp/99bW0A # &quot;It&amp;#039;s only at school that collaboration is called cheating.&quot; -- Walter Bender of sugarlabs.org http://j.mp/cRibQu # edchat #edtech # Powered by Twitter Tools</description><pubDate>Fri, 01 Oct 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-09-30</title><link>https://techczech.net/2010/09/30/twitter-weekly-updates-for-2010-09-30/</link><guid isPermaLink="true">https://techczech.net/2010/09/30/twitter-weekly-updates-for-2010-09-30/</guid><description>&quot;many enterprise IT decisionmakers acknowledge that the world is changing-but deny that they are part of that same world&quot; http://j.mp/9jGTOd # Roman Jakobson: &quot;Languages differ essentially in what they must convey and not in what they may convey.&quot; http://j.mp/9RALAC # ellchat # Cumulative radicalization: &quot;At each point, the next step makes sense but the entire…</description><pubDate>Thu, 30 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-30 on @techczech</title><link>https://techczech.net/2010/09/30/the-day-2010-09-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/30/the-day-2010-09-30-on-techczech/</guid><description>&quot;many enterprise IT decisionmakers acknowledge that the world is changing-but deny that they are part of that same world&quot; http://j.mp/9jGTOd # Roman Jakobson: &quot;Languages differ essentially in what they must convey and not in what they may convey.&quot; http://j.mp/9RALAC # ellchat # Cumulative radicalization: &quot;At each point, the next step makes sense but the entire…</description><pubDate>Thu, 30 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-29 on @techczech</title><link>https://techczech.net/2010/09/29/the-day-2010-09-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/29/the-day-2010-09-29-on-techczech/</guid><description>Installed IE9 beta and got asked to restart my system. So nothing&amp;#039;s really changed! Microsoft up to its old nonsense. # edtech # Should we rename psychology to undergrad psychology? http://ow.ly/1qXnQc # Better but still needs work: More tools for viewing document revisions in Google Docs Blog http://ow.ly/1qXlys # Open-Source Search: Application Centric and a…</description><pubDate>Wed, 29 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-28 on @techczech</title><link>https://techczech.net/2010/09/28/the-day-2010-09-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/28/the-day-2010-09-28-on-techczech/</guid><description>Semanticians take note! &quot;Not everyone has an equal say in determining what words mean.&quot; http://ow.ly/1qWNUT # engchat # Essential for linguists, teachers, learners: &quot;Not everyone has an equal say in determining what words mean.&quot; http://j.mp/c5vb0f # engchat # Studying Chinese history is now probably more important than studying our own. So much needless prejudice and…</description><pubDate>Tue, 28 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-27 on @techczech</title><link>https://techczech.net/2010/09/27/the-day-2010-09-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/27/the-day-2010-09-27-on-techczech/</guid><description>&quot;Lexical chunks may&amp;#039;ve entered the house of language teaching..but they shouldn&amp;#039;t be given the run of the place&quot; http://j.mp/aFIlJN # ellchat # Linguistic research via cartoon http://j.mp/ba4NVM # engchat via @ languagelog and # nsfw # Now I know what I want for Christmas: Thing-O-Matic 3D printer: http://j.mp/aS2R2d # Things looking good for ebooks. Two…</description><pubDate>Mon, 27 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-26 on @techczech</title><link>https://techczech.net/2010/09/26/the-day-2010-09-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/26/the-day-2010-09-26-on-techczech/</guid><description>Arrington: &quot;the kind of person who wants to increase his [...] success by getting a masters degree isn’t an entrepreneur&quot; http://j.mp/curhXR # Powered by Twitter Tools</description><pubDate>Sun, 26 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-25 on @techczech</title><link>https://techczech.net/2010/09/25/the-day-2010-09-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/25/the-day-2010-09-25-on-techczech/</guid><description>&quot;Many of us buy into the falsehood that unless you are an ambilingual you are not a bilingual.&quot; http://j.mp/aqjQ3h # As detailed an argument in favor of Moodle over Blackboard as can be made: http://j.mp/dAB3qe VLE world take notice. # edtech # RT @ moodleman : RT @ landa84 : http://bit.ly/cTjIPP - 1-minute tutorials on…</description><pubDate>Sat, 25 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-24 on @techczech</title><link>https://techczech.net/2010/09/24/the-day-2010-09-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/24/the-day-2010-09-24-on-techczech/</guid><description>Frederick Jelinek, Czech-born pioneer of speech recognition, remembered and missed by many, including this NYT obituary: http://j.mp/b8NJEc # Edwired: Teaching a large class having students generating questions and using books as resources: http://j.mp/aE8WD6 # Powered by Twitter Tools</description><pubDate>Fri, 24 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-23 on @techczech</title><link>https://techczech.net/2010/09/23/the-day-2010-09-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/23/the-day-2010-09-23-on-techczech/</guid><description>@ opensourcerer Learning to drive should be the minimum unit of effort for learning anything worthwhile. # edchat # At long last: Kindle for Android Adds Highlighting, Notes, and Voice Search http://j.mp/ap0FEG # edtech # RT @ ToddAHoffman : School leader promotes Twitter as communication tool for teachers # edtech #edchat http://sbne.ws/r/5IQk # Finally here…</description><pubDate>Thu, 23 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-09-23</title><link>https://techczech.net/2010/09/23/twitter-weekly-updates-for-2010-09-23/</link><guid isPermaLink="true">https://techczech.net/2010/09/23/twitter-weekly-updates-for-2010-09-23/</guid><description>@ opensourcerer Learning to drive should be the minimum unit of effort for learning anything worthwhile. # edchat # At long last: Kindle for Android Adds Highlighting, Notes, and Voice Search http://j.mp/ap0FEG # edtech # RT @ ToddAHoffman : School leader promotes Twitter as communication tool for teachers # edtech #edchat http://sbne.ws/r/5IQk # Finally here…</description><pubDate>Thu, 23 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-22 on @techczech</title><link>https://techczech.net/2010/09/22/the-day-2010-09-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/22/the-day-2010-09-22-on-techczech/</guid><description>@ donpresant At present single sign on is as far as I&amp;#039;ve taken Mahara+Moodle+Drupal. Moodle 2 should make things easier through repositories. in reply to donpresant # Powered by Twitter Tools</description><pubDate>Wed, 22 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-18 on @techczech</title><link>https://techczech.net/2010/09/18/the-day-2010-09-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/18/the-day-2010-09-18-on-techczech/</guid><description>Google Goggles et al are virtually augmented reality. A Twitter conference backchannel is reality-augmented virtuality. # thatcamp # RT @ supraphonic : RT @ malki : Yo mama so old the Illiad is a metaphor about dating her # Kognice 2010 is the first conference I&amp;#039;ve been to that served exclusively vegetarian food. Stereotypes about…</description><pubDate>Sat, 18 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-16 on @techczech</title><link>https://techczech.net/2010/09/16/the-day-2010-09-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/16/the-day-2010-09-16-on-techczech/</guid><description>More Evidence Our Memory Stinks http://ow.ly/1qRQ6d # Powered by Twitter Tools</description><pubDate>Thu, 16 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-09-16</title><link>https://techczech.net/2010/09/16/twitter-weekly-updates-for-2010-09-16/</link><guid isPermaLink="true">https://techczech.net/2010/09/16/twitter-weekly-updates-for-2010-09-16/</guid><description>More Evidence Our Memory Stinks http://ow.ly/1qRQ6d # Sometimes I feel like lifelong learning refers to learning of &amp;#039;things we find acceptable to learn&amp;#039; rather than just learning. # edchat # Probably the best name for a blog ever. A must read: &quot;Statistical Modeling, Causal Inference, and Social Science&quot; http://j.mp/axrifO # God Angrily Clarifies &amp;#039;Don&amp;#039;t Kill&amp;#039…</description><pubDate>Thu, 16 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-15 on @techczech</title><link>https://techczech.net/2010/09/15/the-day-2010-09-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/15/the-day-2010-09-15-on-techczech/</guid><description>Sometimes I feel like lifelong learning refers to learning of &amp;#039;things we find acceptable to learn&amp;#039; rather than just learning. # edchat # Powered by Twitter Tools</description><pubDate>Wed, 15 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-14 on @techczech</title><link>https://techczech.net/2010/09/14/the-day-2010-09-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/14/the-day-2010-09-14-on-techczech/</guid><description>Probably the best name for a blog ever. A must read: &quot;Statistical Modeling, Causal Inference, and Social Science&quot; http://j.mp/axrifO # God Angrily Clarifies &amp;#039;Don&amp;#039;t Kill&amp;#039; Rule | The Onion - America&amp;#039;s Finest News Source http://j.mp/dw0HUe # Powered by Twitter Tools</description><pubDate>Tue, 14 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-13 on @techczech</title><link>https://techczech.net/2010/09/13/the-day-2010-09-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/13/the-day-2010-09-13-on-techczech/</guid><description>RT @ ShellTerrell : What should be the single focus of # education if we could agree on only one goal? http://bit.ly/aPvXSW by @ 1katty # edchat # Impressive resource for anyone interested in the human fossil record: http://fossilized.org Would make great classroom tool. # edchat #mashup # RT @ MoodleDan : RT @ Drisgill…</description><pubDate>Mon, 13 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-12 on @techczech</title><link>https://techczech.net/2010/09/12/the-day-2010-09-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/12/the-day-2010-09-12-on-techczech/</guid><description>&quot;Learning standard written English is a good thing...memorizing...fantasies of self-appointed experts is waste of time.&quot; http://j.mp/9OYBsU # RT @ Annoula64 : RT @ briankotts : How To Use Wikipedia As A Class Assignment. http://bit.ly/9EnxYm &amp; http://bit.ly/aFISfN # edchat #edtech # Powered by Twitter Tools</description><pubDate>Sun, 12 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-09-11 on @techczech</title><link>https://techczech.net/2010/09/11/the-day-2010-09-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/09/11/the-day-2010-09-11-on-techczech/</guid><description>What evidence would convince a prescriptivist? Shrug! More well-deserved prescriptivism bashing from GKP http://j.mp/8YsTA7 # engchat # Don’t Waste Money on a New Computer for College http://j.mp/astXkd # People talk about ease of use if iPhones but I&amp;#039;ve only had to connect my Android phone to my computer twice in a month. No iTunes needed!…</description><pubDate>Sat, 11 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-09-07</title><link>https://techczech.net/2010/09/08/links-for-2010-09-07/</link><guid isPermaLink="true">https://techczech.net/2010/09/08/links-for-2010-09-07/</guid><description>The Educator&amp;#039;s PLN - The personal learning network for educators (tags: collaboration community socialnetworking technology web2.0 twitter teaching educators education )</description><pubDate>Wed, 08 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-09-05</title><link>https://techczech.net/2010/09/06/links-for-2010-09-05/</link><guid isPermaLink="true">https://techczech.net/2010/09/06/links-for-2010-09-05/</guid><description>Phonics Activities (tags: phonics literacy games interactive resources dyslexia )</description><pubDate>Mon, 06 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-09-04</title><link>https://techczech.net/2010/09/05/links-for-2010-09-04/</link><guid isPermaLink="true">https://techczech.net/2010/09/05/links-for-2010-09-04/</guid><description>Public Library of Science (tags: academic education openaccess research digitalscholarship )</description><pubDate>Sun, 05 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-09-02</title><link>https://techczech.net/2010/09/02/twitter-weekly-updates-for-2010-09-02/</link><guid isPermaLink="true">https://techczech.net/2010/09/02/twitter-weekly-updates-for-2010-09-02/</guid><description>@ lifehacker &quot;Get Past Your Childhood Doubts by Simply Starting&quot; http://j.mp/duyplY &amp;lt; Recipe for education, as well? # edchat # Interesting stories but not always sound theory RT @ kamyousaf : Radio4 - Is it worth learning another language? http://bbc.in/dz6rH5 # MFL # I love http://paper.li for extracting info from Twitter streams but it would…</description><pubDate>Thu, 02 Sep 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-31 on @techczech</title><link>https://techczech.net/2010/08/31/the-day-2010-08-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/31/the-day-2010-08-31-on-techczech/</guid><description>@ lifehacker &quot;Get Past Your Childhood Doubts by Simply Starting&quot; http://j.mp/duyplY &amp;lt; Recipe for education, as well? # edchat # Interesting stories but not always sound theory RT @ kamyousaf : Radio4 - Is it worth learning another language? http://bbc.in/dz6rH5 # MFL # I love http://paper.li for extracting info from Twitter streams but it would…</description><pubDate>Tue, 31 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-30 on @techczech</title><link>https://techczech.net/2010/08/30/the-day-2010-08-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/30/the-day-2010-08-30-on-techczech/</guid><description>http://thewildernessdowntown.com is an amazing feat of technical and esthetic creativity. I&amp;#039;ve seen films with lower production value. # RT @ willrich45 : Reading: Confusing Tech Integration with Instructional Reform http://bit.ly/9ieyQO Larry Cuban. # RT @ willrich45 : You think &quot;student achievement&quot; is just about &quot;teacher effectiveness&quot;? See chart here: http://bit.ly/9UpgbR # edreform # Late 1800s…</description><pubDate>Mon, 30 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-08-28</title><link>https://techczech.net/2010/08/29/links-for-2010-08-28/</link><guid isPermaLink="true">https://techczech.net/2010/08/29/links-for-2010-08-28/</guid><description>Royalty Free Music (tags: creativecommons multimedia opensource technology podcasts podcasting music audio resources )</description><pubDate>Sun, 29 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-29 on @techczech</title><link>https://techczech.net/2010/08/29/the-day-2010-08-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/29/the-day-2010-08-29-on-techczech/</guid><description>I love listening to Open Source stories such as this one on a FOSS library system. Too bad more decision makers don&amp;#039;t. http://j.mp/b2x1Eu # Sure doesn&amp;#039;t feel like only 56,996,229 people are richer than me in the world this year. Still, time to share. http://globalrichlist.com # If Twitter is so easy, why did I just…</description><pubDate>Sun, 29 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-28 on @techczech</title><link>https://techczech.net/2010/08/28/the-day-2010-08-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/28/the-day-2010-08-28-on-techczech/</guid><description>Stung publishers claim their new role is in DRM &amp; lawsuits. How more clueless can they get? http://ow.ly/1qOi2u # # drupalcon videos on Internet Archive Search http://j.mp/clFjkf # Powered by Twitter Tools</description><pubDate>Sat, 28 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-27 on @techczech</title><link>https://techczech.net/2010/08/27/the-day-2010-08-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/27/the-day-2010-08-27-on-techczech/</guid><description>Great article on linguistic relativity (for NYT) if a bit too harsh on Whorf http://j.mp/bJ6Npl # RT @ GaryBrannigan : For children who struggle academically, homework can be overwhelmingly frustrating and demoralizing # gtchat # This change can&amp;#039;t come soon enough &quot;For Scholars, Web Changes Sacred Rite of Peer Review - NYTimes.com&quot; http://ow.ly/2tRKe # research…</description><pubDate>Fri, 27 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-26 on @techczech</title><link>https://techczech.net/2010/08/26/the-day-2010-08-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/26/the-day-2010-08-26-on-techczech/</guid><description>RT @ classroomtools : BBC reports that female scientists are forgotten by public. http://bbc.in/dk5sZ5 # sschat #ecosys # Thanks to # kittenkillers for the inspirational message: &quot;I can be your module, you can be my theme.&quot; # drupalcons # DEA knows [Ebonics] &quot;the language variety of African-Americans is systematic and rule-governed.&quot; Why don&amp;#039;t most people?…</description><pubDate>Thu, 26 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-08-26</title><link>https://techczech.net/2010/08/26/twitter-weekly-updates-for-2010-08-26/</link><guid isPermaLink="true">https://techczech.net/2010/08/26/twitter-weekly-updates-for-2010-08-26/</guid><description>RT @ classroomtools : BBC reports that female scientists are forgotten by public. http://bbc.in/dk5sZ5 # sschat #ecosys # Thanks to # kittenkillers for the inspirational message: &quot;I can be your module, you can be my theme.&quot; # drupalcons # DEA knows [Ebonics] &quot;the language variety of African-Americans is systematic and rule-governed.&quot; Why don&amp;#039;t most people?…</description><pubDate>Thu, 26 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-08-24</title><link>https://techczech.net/2010/08/25/links-for-2010-08-24/</link><guid isPermaLink="true">https://techczech.net/2010/08/25/links-for-2010-08-24/</guid><description>CK12.ORG - FlexBooks (tags: books collaboration creativecommons oer opensource web2.0 technology teaching resources ebooks textbook )</description><pubDate>Wed, 25 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-25 on @techczech</title><link>https://techczech.net/2010/08/25/the-day-2010-08-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/25/the-day-2010-08-25-on-techczech/</guid><description>I&amp;#039;m missing # drupalcon again but thanks to the impressive broadcasts by @ drupalradar I don&amp;#039;t feel as out of touch http://bit.ly/9dKbQi # RT @ hjames : Big Drupal shops advising those starting out to give away everything they know at # drupalcon Knowledge sharing creates business. # @ jenlampton Sorry to miss your talk…</description><pubDate>Wed, 25 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-08-23</title><link>https://techczech.net/2010/08/24/links-for-2010-08-23/</link><guid isPermaLink="true">https://techczech.net/2010/08/24/links-for-2010-08-23/</guid><description>OER Commons (tags: academic collaboration web2.0 creativecommons opencourseware opensource oer resources teaching technology reference community elearning ) Inkling - Interactive textbooks for iPad. (tags: e-learning books elearning education interactive web2.0 collaboration )</description><pubDate>Tue, 24 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-24 on @techczech</title><link>https://techczech.net/2010/08/24/the-day-2010-08-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/24/the-day-2010-08-24-on-techczech/</guid><description>@ SpecGram On reflection I don&amp;#039;t think that study of language is more subjective than nature. Both require theory, axiom, method, evidence... in reply to SpecGram # @ SpecGram But serious study of language structure and use can be as challenging as study of science as the obvious becomes non-obvious. 2/2 # @ SpecGram Studying…</description><pubDate>Tue, 24 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-23 on @techczech</title><link>https://techczech.net/2010/08/23/the-day-2010-08-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/23/the-day-2010-08-23-on-techczech/</guid><description>&quot;just another Deepak Chopra for the computer science cognoscenti&quot; &amp;lt; Essential reading for would be singularity futurists http://j.mp/cJ765u # &quot;From a developmental point of view-there is no such thing as the brain prior to its interaction with the environment.&quot; http://j.mp/9X6vah # @ MoodleDan I visited a number of yurts in Kazakhstan. Even saw one being…</description><pubDate>Mon, 23 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-22 on @techczech</title><link>https://techczech.net/2010/08/22/the-day-2010-08-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/22/the-day-2010-08-22-on-techczech/</guid><description>Great suggested questions for this week&amp;#039;s # edchat Pick one you like on http://bit.ly/dCxVyy via @ web20classroom # Powered by Twitter Tools</description><pubDate>Sun, 22 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-21 on @techczech</title><link>https://techczech.net/2010/08/21/the-day-2010-08-21-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/21/the-day-2010-08-21-on-techczech/</guid><description>RT @ Aaron_Eyler : Educational decisions that are made without all stakeholders represented at the table aren&amp;#039;t decisions- they&amp;#039;re directives. # Powered by Twitter Tools</description><pubDate>Sat, 21 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-20 on @techczech</title><link>https://techczech.net/2010/08/20/the-day-2010-08-20-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/20/the-day-2010-08-20-on-techczech/</guid><description>Reflecting on the power of Wordpress 3 &amp; Drupal 7, I wonder if some of my trials would&amp;#039;ve succeeded if I&amp;#039;d had these tools in 2005 # edtech # This should be required reading for any research skills and ethics class: http://j.mp/cP9BdN # Helpful tips on overcoming the &quot;frequency illusion&quot; in statements about language from…</description><pubDate>Fri, 20 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-19 on @techczech</title><link>https://techczech.net/2010/08/19/the-day-2010-08-19-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/19/the-day-2010-08-19-on-techczech/</guid><description>Social networking online and off lucidly explained by Google UX architect http://j.mp/d8d097 # amustread # &quot;Much of higher education is neither higher nor education.&quot; http://j.mp/9zYVi3 # edchat # @ curtislinton &quot;If I don&amp;#039;t understand what it means to be white, I can&amp;#039;t understand what it means to be black in our society.&quot; # equity101 #…</description><pubDate>Thu, 19 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-08-19</title><link>https://techczech.net/2010/08/19/twitter-weekly-updates-for-2010-08-19/</link><guid isPermaLink="true">https://techczech.net/2010/08/19/twitter-weekly-updates-for-2010-08-19/</guid><description>Social networking online and off lucidly explained by Google UX architect http://j.mp/d8d097 # amustread # &quot;Much of higher education is neither higher nor education.&quot; http://j.mp/9zYVi3 # edchat # @ curtislinton &quot;If I don&amp;#039;t understand what it means to be white, I can&amp;#039;t understand what it means to be black in our society.&quot; # equity101 #…</description><pubDate>Thu, 19 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-18 on @techczech</title><link>https://techczech.net/2010/08/18/the-day-2010-08-18-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/18/the-day-2010-08-18-on-techczech/</guid><description>@ tomwhitby @victorhugor Agree on irrelevance of learning styles but here&amp;#039;s an intriguing alternative view: http://j.mp/aVHTn4 # edchat in reply to tomwhitby # As innovators we often ask others to be open to change but are we open enough to stability? # edchat #edtech # RT @ geloomis : People...may not remember exactly what you…</description><pubDate>Wed, 18 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-17 on @techczech</title><link>https://techczech.net/2010/08/17/the-day-2010-08-17-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/17/the-day-2010-08-17-on-techczech/</guid><description>True for all decisions not just teacher evaluation: &amp;#039;it’s better to be “data-informed” than “data-driven.”&amp;#039; http://j.mp/aRYxaR # edchat # RT @ EdOptionsInc : What are the essential skills needed by today&amp;#039;s teacher and how do we accomplish that? # EdChat in 30 minutes! # &quot;&amp;#039;Large scale&amp;#039;, top down project [management] approach fails spectacularly. All the…</description><pubDate>Tue, 17 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-16 on @techczech</title><link>https://techczech.net/2010/08/16/the-day-2010-08-16-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/16/the-day-2010-08-16-on-techczech/</guid><description>&quot;Medical research is obsessed with internal validity&quot; reducing relevance to practitioners. http://j.mp/cotZaP &amp;gt; Same in education # edchat # Trying to make a decision between OJS (Open Journal System) and Drupal&amp;#039;s eJournal module. Any other options? # digitalhumanities #thatcamp # Cannot agree more w @ tomwhitby &quot;There are no natives or immigrants. There are only…</description><pubDate>Mon, 16 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-15 on @techczech</title><link>https://techczech.net/2010/08/15/the-day-2010-08-15-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/15/the-day-2010-08-15-on-techczech/</guid><description>RT @ literacyadviser : New Blog Post: Amble GPX - Developing Literacy Skills Through Exciting Community Project http://bit.ly/fUgdG # @ ernestopriego Learning things like Twettiqette is like learning a foreign language. Some people do best by osmosis others by explanation. in reply to ernestopriego # @ ernestopriego Common sense is only common because people share…</description><pubDate>Sun, 15 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-14 on @techczech</title><link>https://techczech.net/2010/08/14/the-day-2010-08-14-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/14/the-day-2010-08-14-on-techczech/</guid><description>Great material for your next English lesson - first or second language http://ow.ly/1qNCdu # ellchat # Has PayPal earned enough of our trust to turn over a whole internet micropayment infrastructure to them? http://j.mp/biHEsQ # I&amp;#039;ve been using Drop.io for sharing class notes since 2008. Highly recommend @ sccenglish &amp;#039;s guide: http://j.mp/drPn2L # edtech #ellchat…</description><pubDate>Sat, 14 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-13 on @techczech</title><link>https://techczech.net/2010/08/13/the-day-2010-08-13-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/13/the-day-2010-08-13-on-techczech/</guid><description>RT @ lauras : Open source givers and takers - O&amp;#039;Reilly Radar http://oreil.ly/deNmmI # opensource # RT @ tomwhitby : Observation: Interesting how many people I started out with on Twitter about 1.5 yrs ago, have become EDU Thought leaders. # Love the idea of a hacker camp for kids. Wish there was more on…</description><pubDate>Fri, 13 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-12 on @techczech</title><link>https://techczech.net/2010/08/12/the-day-2010-08-12-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/12/the-day-2010-08-12-on-techczech/</guid><description>@ fstoner Swype on Android is now only bundled with some phones. I use and love SlideIT on my HTC Desire which also supports other languages. in reply to fstoner # True? If university education really leads to increased individual wealth then graduate tax based on income makes perfect sense. # edchat # Gotta love…</description><pubDate>Thu, 12 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-08-12</title><link>https://techczech.net/2010/08/12/twitter-weekly-updates-for-2010-08-12/</link><guid isPermaLink="true">https://techczech.net/2010/08/12/twitter-weekly-updates-for-2010-08-12/</guid><description>@ fstoner Swype on Android is now only bundled with some phones. I use and love SlideIT on my HTC Desire which also supports other languages. in reply to fstoner # True? If university education really leads to increased individual wealth then graduate tax based on income makes perfect sense. # edchat # Gotta love…</description><pubDate>Thu, 12 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-11 on @techczech</title><link>https://techczech.net/2010/08/11/the-day-2010-08-11-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/11/the-day-2010-08-11-on-techczech/</guid><description>I&amp;#039;m coming up on my 1000th tweet in 18 months of Twitter activity. What should it be about? Do I need a cake? # @ lesuco Not a fan of Ravitch&amp;#039;s programmatic ignoring of social factors in schooling or basing curriculum values in 1950s. Agree on testing. in reply to lesuco # RT @ ProfHacker…</description><pubDate>Wed, 11 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-10 on @techczech</title><link>https://techczech.net/2010/08/10/the-day-2010-08-10-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/10/the-day-2010-08-10-on-techczech/</guid><description>@ awcheney As teacher I 2 prefer discovery over feeding. But there are some indications that bad discovery is worse than bad feeding. # edchat in reply to awcheney # @ davidwees Too many types of illiteracy for 1 solution. I&amp;#039;m currently thinking about an online literacy course for dyslexic pupils. # edchat in reply…</description><pubDate>Tue, 10 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-09 on @techczech</title><link>https://techczech.net/2010/08/09/the-day-2010-08-09-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/09/the-day-2010-08-09-on-techczech/</guid><description>Sounds familiar. Examples? RT @ samplereality : Literary scholars who dabble in television studies are usually the worst sort of academic fans # There should be more writers like @ doctorow who I always cite as a model for opening content in education http://j.mp/c3dSxU # edtech #edchat # Kaminsky: &quot;HTML was the 1st programming language…</description><pubDate>Mon, 09 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-08 on @techczech</title><link>https://techczech.net/2010/08/08/the-day-2010-08-08-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/08/the-day-2010-08-08-on-techczech/</guid><description>Love the use of simple tools for crowdsourcing OERs in Curriculum Catalyst http://j.mp/c3qga8 # edtech # Just took survey on Translators and Technologies Based on Openness, Sharing and Collaboration - useful overview of field: http://j.mp/bm4rSv # @ rosamariatorres Agree. Gates like many engineers thinks of education in terms of content not communities &amp; conversation. #…</description><pubDate>Sun, 08 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-07 on @techczech</title><link>https://techczech.net/2010/08/07/the-day-2010-08-07-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/07/the-day-2010-08-07-on-techczech/</guid><description>RT @ metaphorhacker : Robert Steele: &quot;We need to focus more on the &amp;#039;I&amp;#039; and less on the &amp;#039;T&amp;#039; in IT&quot; http://ow.ly/2mtb8 # nexthope #edchat # edtech # @ hjames Got &amp; love Kindle 2 but will be getting 3. Just WiFi, though, to tether with my Android phone. Will use 3G money on cover…</description><pubDate>Sat, 07 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-08-05</title><link>https://techczech.net/2010/08/06/links-for-2010-08-05/</link><guid isPermaLink="true">https://techczech.net/2010/08/06/links-for-2010-08-05/</guid><description>CUNY Academic Commons | Home (tags: academia collaboration elearning socialnetworking web2.0 academiccommons wordpress community )</description><pubDate>Fri, 06 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-06 on @techczech</title><link>https://techczech.net/2010/08/06/the-day-2010-08-06-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/06/the-day-2010-08-06-on-techczech/</guid><description>Women 2.0 Labs Graduates Its First Class of Founders http://ow.ly/1qNsfv &amp;lt; great idea # @ timmillwood No contest for me between iPad and Kindle 3. Kindle wins on utility, portability &amp; price. Can buy it &amp; a netbook for less! in reply to timmillwood # Fascinating to see the vision for a &quot;Journal of Wholly…</description><pubDate>Fri, 06 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-08-04</title><link>https://techczech.net/2010/08/05/links-for-2010-08-04/</link><guid isPermaLink="true">https://techczech.net/2010/08/05/links-for-2010-08-04/</guid><description>Bookmarklets | A Bookmarklet Search Engine | Marklets.com (tags: bookmarklets software tools web resources ) School Video | School Radio | Free School Websites | Radiowaves (tags: audio blogging collaboration education web2.0 video streaming social podcasts podcasting )</description><pubDate>Thu, 05 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-05 on @techczech</title><link>https://techczech.net/2010/08/05/the-day-2010-08-05-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/05/the-day-2010-08-05-on-techczech/</guid><description>&quot;In e-reader accessibility race, new Kindle, iPad in front&quot; http://ow.ly/1qNqKe # accessibility # RT @ eyebeams : ...get the school community to do the heavy lifting always - peer tutotring, collaborative working - relationships # ukedchat # Just reread Heinlein&amp;#039;s &quot;Starship Troopers&quot; Predicted hyperdrive but had soldiers receive written letters. How good&amp;#039;re scifi tech forecasts?…</description><pubDate>Thu, 05 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-08-05</title><link>https://techczech.net/2010/08/05/twitter-weekly-updates-for-2010-08-05/</link><guid isPermaLink="true">https://techczech.net/2010/08/05/twitter-weekly-updates-for-2010-08-05/</guid><description>&quot;In e-reader accessibility race, new Kindle, iPad in front&quot; http://ow.ly/1qNqKe # accessibility # RT @ eyebeams : ...get the school community to do the heavy lifting always - peer tutotring, collaborative working - relationships # ukedchat # Just reread Heinlein&amp;#039;s &quot;Starship Troopers&quot; Predicted hyperdrive but had soldiers receive written letters. How good&amp;#039;re scifi tech forecasts?…</description><pubDate>Thu, 05 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-04 on @techczech</title><link>https://techczech.net/2010/08/04/the-day-2010-08-04-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/04/the-day-2010-08-04-on-techczech/</guid><description>If usability was more important than utility, Facebook, Moodle etc wouldn&amp;#039;t exist. Most technologies are usable when used every day. # edtech # @ moodleman Don&amp;#039;t think the problem with Google # Wave was usability. Rather it didn&amp;#039;t fit into normal workflows so didn&amp;#039;t get used enough. in reply to moodleman # RT @ Dries…</description><pubDate>Wed, 04 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-03 on @techczech</title><link>https://techczech.net/2010/08/03/the-day-2010-08-03-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/03/the-day-2010-08-03-on-techczech/</guid><description>Already a busy bug-fixing discussion on the @ anthologize dev forum: http://groups.google.com/group/anthologize-dev # oneweek # What, no command line? Fired up my SSH client to install @ anthologize only to find out it&amp;#039;s already in the WP plugin repository. # oneweek # eBook building on the roadmap for @ anthologize . # oneweek (via @…</description><pubDate>Tue, 03 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-02 on @techczech</title><link>https://techczech.net/2010/08/02/the-day-2010-08-02-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/02/the-day-2010-08-02-on-techczech/</guid><description>I&amp;#039;m much less appalled by witless plagiarism than witless journalism covering the same things as everyone else. http://j.mp/9uzLbD # Yet another age-old behavior blamed on new technology: &quot;a disconnect that is growing in the Internet age&quot; http://j.mp/9uzLbD # nytfail # &quot;OpenCourseWare...has been awarded the Science Prize for Online Resources in Education (SPORE) by Science Magazine&quot;…</description><pubDate>Mon, 02 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-08-01 on @techczech</title><link>https://techczech.net/2010/08/01/the-day-2010-08-01-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/08/01/the-day-2010-08-01-on-techczech/</guid><description># Froyo downloading now on my HTC Desire. Although I did not wake up early for it like some, I am unduly excited. # If you&amp;#039;re also waiting. This will have to do for the time being. RT @ DjipOner Terrible: FroYo sur HTC Desire! http://twitpic.com/1zh687 # What do you do when Twitter is down…</description><pubDate>Sun, 01 Aug 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-31 on @techczech</title><link>https://techczech.net/2010/07/31/the-day-2010-07-31-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/31/the-day-2010-07-31-on-techczech/</guid><description>&quot;[Americans practice choice] from such an early age that they&amp;#039;ve come to believe everyone must be born with this ability&quot; http://j.mp/9RwtGo # Explains why some educators intuitively want VLEs closed: RT @ ConnectIrmeli : Welcome to Social Web 3.0 http://slidesha.re/cdRbFI /via @ tuija # Powered by Twitter Tools</description><pubDate>Sat, 31 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-30 on @techczech</title><link>https://techczech.net/2010/07/30/the-day-2010-07-30-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/30/the-day-2010-07-30-on-techczech/</guid><description>So sadly true and astutely observed: RT @ cliotropic : xkcd on university websites: http://xkcd.com/773/ v @ timoreilly # Perhaps we should study failed online communities as carefully as we study dead cultures and languages &amp;gt; http://j.mp/cWPNcp # dh #edtech # RT @ cliotropic : RT @ sgillies : Maybe the # oneweek project is…</description><pubDate>Fri, 30 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-29 on @techczech</title><link>https://techczech.net/2010/07/29/the-day-2010-07-29-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/29/the-day-2010-07-29-on-techczech/</guid><description>I continue to be amazed at the short-form story telling skills of Felicia Day http://j.mp/cS6cEM &amp;#039;Game on&amp;#039; repays multiple viewings. # Had high hopes for Evernote sync between desktop and mobile. But frustrated with slow speed on computer and no local storage on phone. # tech # Animated Explanations gives dated tips on safe passwords…</description><pubDate>Thu, 29 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-07-29</title><link>https://techczech.net/2010/07/29/twitter-weekly-updates-for-2010-07-29/</link><guid isPermaLink="true">https://techczech.net/2010/07/29/twitter-weekly-updates-for-2010-07-29/</guid><description>I continue to be amazed at the short-form story telling skills of Felicia Day http://j.mp/cS6cEM &amp;#039;Game on&amp;#039; repays multiple viewings. # Had high hopes for Evernote sync between desktop and mobile. But frustrated with slow speed on computer and no local storage on phone. # tech # Animated Explanations gives dated tips on safe passwords…</description><pubDate>Thu, 29 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-28 on @techczech</title><link>https://techczech.net/2010/07/28/the-day-2010-07-28-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/28/the-day-2010-07-28-on-techczech/</guid><description>@ ferdialimadhi How easy is it to integrate # OpenScholar into an existing # Drupal site? # Just signed up for a third web account in as many days that returned my password in plain text by email! We can do better! # security #edtech # @ amandafrench I&amp;#039;m hoping to test OpenScholar soon on…</description><pubDate>Wed, 28 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-27 on @techczech</title><link>https://techczech.net/2010/07/27/the-day-2010-07-27-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/27/the-day-2010-07-27-on-techczech/</guid><description>My vote for # oneweek &quot;2) Humanities portfolio/CV builder&quot; - started jotting down some ideas on http://researchity.net . # @ TeachPaperless You shouldn&amp;#039;t spend time looking for resources. You should be part of a learning community that leads you to them. # edchat # Many of the ideas discussed in # edchat on role of…</description><pubDate>Tue, 27 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-25</title><link>https://techczech.net/2010/07/26/links-for-2010-07-25/</link><guid isPermaLink="true">https://techczech.net/2010/07/26/links-for-2010-07-25/</guid><description>Pattern App | User Interface Design Patterns for Ideas and Inspiration (tags: design webdesign usability showcase css )</description><pubDate>Mon, 26 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-26 on @techczech</title><link>https://techczech.net/2010/07/26/the-day-2010-07-26-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/26/the-day-2010-07-26-on-techczech/</guid><description>RT @ EdReformPR : Teachers Gone Wild (#TGW) 8: Tchrs demand accountability systems actually designed 2 measure jobs tchrs do. # edustat10 # @ BTCare Fault at the exchange, now fixed. But offline since Friday AM. Much too long in 2010. BT should have technicians working weekends. in reply to BTCare # CATMA: http://bit.ly/aikhu8 interesting…</description><pubDate>Mon, 26 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-25 on @techczech</title><link>https://techczech.net/2010/07/25/the-day-2010-07-25-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/25/the-day-2010-07-25-on-techczech/</guid><description>My Czech article on # ebooks # digitalhumanities &amp; # thatcamp http://ow.ly/1qKbh4 Not worth learning Czech for but if you speak it already... # Most academic books should be written this way: An open approach to book writing http://j.mp/a46Obc # Reading through http://ow.ly/2g3Vy I can&amp;#039;t shake the feeling that the academics are just talking to…</description><pubDate>Sun, 25 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-24 on @techczech</title><link>https://techczech.net/2010/07/24/the-day-2010-07-24-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/24/the-day-2010-07-24-on-techczech/</guid><description>@ cliotropic Sounds like for you, Moodle is overkill-esp if you&amp;#039;ve a shared host. Also exciting things in store for SP http://ow.ly/1qKiPz . in reply to cliotropic # @ cliotropic Moodle 2 will be much better albeit with a lot of clunkiness left in. Would be interested to hear how ScholarPress works out. in reply…</description><pubDate>Sat, 24 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-23 on @techczech</title><link>https://techczech.net/2010/07/23/the-day-2010-07-23-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/23/the-day-2010-07-23-on-techczech/</guid><description>RT @ metaphorhacker : Best example of # metaphor hypostasis I can think of: &quot;Stress of daily grind takes toll on teeth&quot; http://j.mp/dcMeKF # RT @ Haimanti14 : Weather is a great metaphor for life sometimes it&amp;#039;s good, sometimes it&amp;#039;s bad, &amp; theres nothing much u can do about it but... # What will literacy…</description><pubDate>Fri, 23 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-21</title><link>https://techczech.net/2010/07/22/links-for-2010-07-21/</link><guid isPermaLink="true">https://techczech.net/2010/07/22/links-for-2010-07-21/</guid><description>SCVNGR - Mobile - Real World Game (tags: geolocation mobile learning tools mlearning )</description><pubDate>Thu, 22 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>The day  2010-07-22 on @techczech</title><link>https://techczech.net/2010/07/22/the-day-2010-07-22-on-techczech/</link><guid isPermaLink="true">https://techczech.net/2010/07/22/the-day-2010-07-22-on-techczech/</guid><description>Ken Robinson&amp;#039;s TED talk is full of inspiring quotables but wrongly assumes that education&amp;#039;s problem is a lack of ideas. http://j.mp/dqJeSj # Anybody who needs a reliable website quickly should try Drupal Gardens, now in open beta http://j.mp/aQM4Do # @ footnotesrising Thanks for the literally re-tweet. I&amp;#039;ve been keeping track of metaphor related tweets on…</description><pubDate>Thu, 22 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-20</title><link>https://techczech.net/2010/07/21/links-for-2010-07-20/</link><guid isPermaLink="true">https://techczech.net/2010/07/21/links-for-2010-07-20/</guid><description>Grockit Test Prep - SAT, ACT, GMAT, GRE, and LSAT (tags: collaboration e-learning education elearning web2.0 socialnetworking )</description><pubDate>Wed, 21 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-19</title><link>https://techczech.net/2010/07/20/links-for-2010-07-19/</link><guid isPermaLink="true">https://techczech.net/2010/07/20/links-for-2010-07-19/</guid><description>Classdroid – Teacher Android App | John McLear&amp;#039;s School Technology (tags: technology portfolios mobile ) e4 Learning Solutions Ltd, Specialists in Competency Management (tags: competency-framework-software ) Competency Information (tags: competency-framework-software ) HR management software from McLaren Solutions UK: employee appraisal &amp; 360-degree feedback software. (tags: competency-framework-software ) Home - MyKnowledgeMap - Knowledge and learning assisted…</description><pubDate>Tue, 20 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-18</title><link>https://techczech.net/2010/07/19/links-for-2010-07-18/</link><guid isPermaLink="true">https://techczech.net/2010/07/19/links-for-2010-07-18/</guid><description>Open Culture (tags: courses culture education free opensource reference web2.0 videos audio e-learning )</description><pubDate>Mon, 19 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Report on Mahara Con UK 2010 (#maharauk10) in 36 Tweets</title><link>https://techczech.net/2010/07/19/report-on-mahara-con-uk-2010-maharauk10-in-36-tweets/</link><guid isPermaLink="true">https://techczech.net/2010/07/19/report-on-mahara-con-uk-2010-maharauk10-in-36-tweets/</guid><description>Here&apos;s a quick report on the Mahara UK 2010 conference . I was making Twitter notes, as I went along and I&apos;m not sure, there&apos;s much more to add. Here they are in reverse chronological order: Started keeping a list of interesting sites mentioned at #maharauk10 on http://delicious.com/tag/maharauk10. Please add yours. RT @donpresant: Newham College…</description><pubDate>Mon, 19 Jul 2010 00:00:00 GMT</pubDate><category>Events</category><category>Mahara</category><category>OpEd</category><category>elearning</category><category>Mahara</category><category>Portofolios</category></item><item><title>links for 2010-07-17</title><link>https://techczech.net/2010/07/18/links-for-2010-07-17/</link><guid isPermaLink="true">https://techczech.net/2010/07/18/links-for-2010-07-17/</guid><description>About Ingots (Learn More) | International Grades - Open Technologies (tags: maharauk10 education learning web2.0 ) What research has to say for practice - ALT_Wiki (tags: research resources elearning reference web2.0 technology wiki education ) ResearchRCA (tags: resources digitalhumanities education portfolios mahara maharauk10 sample ) TDM | Improving Learning and Business with Open Source (tags…</description><pubDate>Sun, 18 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-07-18</title><link>https://techczech.net/2010/07/18/twitter-weekly-updates-for-2010-07-18/</link><guid isPermaLink="true">https://techczech.net/2010/07/18/twitter-weekly-updates-for-2010-07-18/</guid><description>Nationalistic potatoes: http://bit.ly/c4hCiA # New on Researchity: URL Storytelling in the Age of the Semantic Web http://j.mp/aVV8md # @ davecormier One more on the # Wikipedia wars. Would be defenders of scholarly rigor often come out looking like idiots: http://j.mp/9SVCXj in reply to davecormier # @ davecormier You&amp;#039;re right. Proves nothing. Easy to create 25…</description><pubDate>Sun, 18 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>No Longer Mad with Desire: Exactly the anDroid I was looking for</title><link>https://techczech.net/2010/07/13/mad-with-desire-exactly-the-android-i-was-looking-for/</link><guid isPermaLink="true">https://techczech.net/2010/07/13/mad-with-desire-exactly-the-android-i-was-looking-for/</guid><description>Yes, my beloved Nokia E71 is showing its age and luckily its senescence was accompanied by the expiration of its contract. Enter the HTC Desire (my second HTC phone after the underpowered WiMo 730) and it&apos;s been a great first day. And I have the Apps to show it . Seriously, thanks to the great…</description><pubDate>Tue, 13 Jul 2010 00:00:00 GMT</pubDate><category>Mobile</category><category>OpEd</category><category>Tips and Guides</category><category>Android</category><category>Computing</category><category>HTC</category><category>Nokia E71</category><category>opensource</category><category>Smartphones</category><category>Technology</category></item><item><title>How an unconference schedule is made #thatcamp</title><link>https://techczech.net/2010/07/12/how-an-nnconference-schedule-is-made-thatcamp/</link><guid isPermaLink="true">https://techczech.net/2010/07/12/how-an-nnconference-schedule-is-made-thatcamp/</guid><description>Pictures from the schedule making at THATCamp London 2010 : </description><pubDate>Mon, 12 Jul 2010 00:00:00 GMT</pubDate><category>Events</category><category>OpEd</category><category>unconference</category></item><item><title>links for 2010-07-10</title><link>https://techczech.net/2010/07/11/links-for-2010-07-10/</link><guid isPermaLink="true">https://techczech.net/2010/07/11/links-for-2010-07-10/</guid><description>TipLine - Gates&amp;#039; Computer Tips: QR Codes - And the Winning Video (tags: mobile accessibility technology video howto tips ) TEI by Example -- Welcome! (tags: text-analysis digitalhumanities howto tutorial thatcamp ) Kantara Initiative: Shaping the Future of Global Identity (tags: digital security digitalidentity federatedweb ) Dyslexia-friendly fonts (tags: dyslexia accessibility usability web typography )</description><pubDate>Sun, 11 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-07-11</title><link>https://techczech.net/2010/07/11/twitter-weekly-updates-for-2010-07-11/</link><guid isPermaLink="true">https://techczech.net/2010/07/11/twitter-weekly-updates-for-2010-07-11/</guid><description>Didn&amp;#039;t really expect Moodle 2.0 final release to come out on 20 July but still a bit disappointed: http://bit.ly/bZg2Le # edtech #moodle # From http://bit.ly/dewestlake : &quot;There&amp;#039;s nothing like a joke about homosexuality to make men rub each other&amp;#039;s shoulders&quot; # literature #society # The # metaphor is right, its components utterly wrong: @ jmspool…</description><pubDate>Sun, 11 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-09</title><link>https://techczech.net/2010/07/10/links-for-2010-07-09/</link><guid isPermaLink="true">https://techczech.net/2010/07/10/links-for-2010-07-09/</guid><description>TransferSummit | Two Days, Three Tracks, and a BarCamp... Endless Possibilities! (tags: opensource conference digitalhumanities research ) Top 10 Of The Best Free Web Services For Text-To-Speech Conversion | VikiTech.com (tags: audio accessibility dyslexia review resources free online tools ) Call for Participation | All Hands Meeting 2010 (tags: research conferences digitalhumanities ) Manchester eResearch…</description><pubDate>Sat, 10 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-08</title><link>https://techczech.net/2010/07/09/links-for-2010-07-08/</link><guid isPermaLink="true">https://techczech.net/2010/07/09/links-for-2010-07-08/</guid><description>Voyeur Tools: Reveal Your Texts (tags: text-analysis digitalhumanities thatcamp linguistics ) OStatus | people on different networks following each other (tags: microblogging opensource socialmedia socialnetwork socialnetworking web2.0 standards federatedweb ) IntenseDebate - User Dashboard (tags: aggregator blogging socialnetworking socialsoftware web2.0 federatedweb ) DISQUS Comments | Powering Discussion on the Web (tags: webdesign web2.0 aggregator socialnetworking…</description><pubDate>Fri, 09 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>links for 2010-07-07</title><link>https://techczech.net/2010/07/08/links-for-2010-07-07/</link><guid isPermaLink="true">https://techczech.net/2010/07/08/links-for-2010-07-07/</guid><description>Day 2: THATCamp London – Meagan Timney (tags: thatcamp academia socialmedia digitalhumanities ) Spicynodes : Home (tags: collaboration design mindmapping presentation web2.0 webdesign technology tools ) Omeka | Home (tags: archives collaboration web2.0 collections community education history publishing repository opensource software thatcamp ) TAPoR (tags: datamining digitalhumanities linguistics research software text tools text-analysis thatcamp )…</description><pubDate>Thu, 08 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Spicy nodes of TechCzech on the Net</title><link>https://techczech.net/2010/07/07/spicy-nodes-of-techczech-on-the-net/</link><guid isPermaLink="true">https://techczech.net/2010/07/07/spicy-nodes-of-techczech-on-the-net/</guid><pubDate>Wed, 07 Jul 2010 00:00:00 GMT</pubDate><category>Using ICT</category></item><item><title>links for 2010-07-05</title><link>https://techczech.net/2010/07/06/links-for-2010-07-05/</link><guid isPermaLink="true">https://techczech.net/2010/07/06/links-for-2010-07-05/</guid><description>OneLook Dictionary Search (tags: dictionary education language linguistics reference online tools translation )</description><pubDate>Tue, 06 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Delicious links for 2010-07-03</title><link>https://techczech.net/2010/07/04/links-for-2010-07-03/</link><guid isPermaLink="true">https://techczech.net/2010/07/04/links-for-2010-07-03/</guid><description>On the Media&apos;s The Digital Divide of Disability Knowbility is an organization that advocates for technology that allows blind, deaf and otherwise disabled people to use the net. Knowbility’s Sharron Rush and Desiree Sturdevant talk about the challenges they face in raising awareness and changing the... (tags: accessibility webdesign podcasts ) On the Media&apos;s Leveling…</description><pubDate>Sun, 04 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Twitter Weekly Updates for 2010-07-04</title><link>https://techczech.net/2010/07/04/twitter-weekly-updates-for-2010-07-04/</link><guid isPermaLink="true">https://techczech.net/2010/07/04/twitter-weekly-updates-for-2010-07-04/</guid><description>I have many &amp;#039;intellectual&amp;#039; friends who at once extol the virtues of the &amp;#039;down-to-earth&amp;#039; and disparage them for not watching arthouse films. # When is http://qa.moodle.net/ getting upgraded to # Moodle 2.0 preview 4? The changelog is promising but the Win DEV download is still on 3. # With a new name, a new registration…</description><pubDate>Sun, 04 Jul 2010 00:00:00 GMT</pubDate><category>Learning Tweetology</category></item><item><title>Presentation on the internet from 1999</title><link>https://techczech.net/2010/02/02/presentation-on-the-internet-from-1999/</link><guid isPermaLink="true">https://techczech.net/2010/02/02/presentation-on-the-internet-from-1999/</guid><pubDate>Tue, 02 Feb 2010 00:00:00 GMT</pubDate><category>Misc</category><category>OpEd</category></item><item><title>BETT2010: What the teachers can do and did</title><link>https://techczech.net/2010/01/17/bett2010-what-the-teachers-can-do-and-did/</link><guid isPermaLink="true">https://techczech.net/2010/01/17/bett2010-what-the-teachers-can-do-and-did/</guid><description>Here&apos;s a great example of an experimenting teacher talking about creative use of cheap and available technologies to solve real educational problems: </description><pubDate>Sun, 17 Jan 2010 00:00:00 GMT</pubDate><category>eguides</category><category>Using ICT</category><category>daeguides2010</category></item><item><title>Starting the inhouse eGuides training process with a crash course in technobabble</title><link>https://techczech.net/2009/12/10/starting-the-eguides-training-process-with-a-crash-course-in-technobabble/</link><guid isPermaLink="true">https://techczech.net/2009/12/10/starting-the-eguides-training-process-with-a-crash-course-in-technobabble/</guid><description>Here&apos;s a wonderful slideshow on some of the key Web2.0 terms: </description><pubDate>Thu, 10 Dec 2009 00:00:00 GMT</pubDate><category>eguides</category><category>da-eguides2010</category><category>eguides</category><category>technobabble</category></item><item><title>MoodleMoot Lessons Learned</title><link>https://techczech.net/2009/04/09/moodlemoot-lessons-learned/</link><guid isPermaLink="true">https://techczech.net/2009/04/09/moodlemoot-lessons-learned/</guid><description>UK MoodleMoot of 2009 was provided lots of insights that will be taken up on this blog in more detail as time goes on. Here are some of the key lessons learned: Moodle 2.0 will be able to use external repositories and share data with online services Moodle 2.0 is expected to be code complete…</description><pubDate>Thu, 09 Apr 2009 00:00:00 GMT</pubDate><category>OpEd</category><category>conferences</category><category>Flickr</category><category>lessons learned</category><category>Moodle</category><category>RSS</category><category>Social network</category><category>Twitter</category><category>VLE</category><category>Web</category><category>Yahoo</category></item><item><title>Software vs. Users</title><link>https://techczech.net/2009/04/01/software-vs-users/</link><guid isPermaLink="true">https://techczech.net/2009/04/01/software-vs-users/</guid><description>via It’s Not What the Software Does | Smarterware . This cartoon by Hugh MacLeod (that is now my desktop background) captures the divide this blog will try to straddle. It applies to all technology but in particular to learning technology. Software solutions often try to predict every possible thing that a user could do…</description><pubDate>Wed, 01 Apr 2009 00:00:00 GMT</pubDate><category>Misc</category><category>OpEd</category></item><item><title>A Mindset, Not A Skillset</title><link>https://techczech.net/2009/04/01/a-mindset-not-a-skillset/</link><guid isPermaLink="true">https://techczech.net/2009/04/01/a-mindset-not-a-skillset/</guid><description>via A Mindset, Not A Skillset on Flickr - Photo Sharing! . What more is there to add?</description><pubDate>Wed, 01 Apr 2009 00:00:00 GMT</pubDate><category>Misc</category><category>OpEd</category></item></channel></rss>