Skip to main content

Home/ centreforelearning/ Group items tagged creating

Rss Feed Group items tagged

bernard tan

Create mobile site with ease - 1 views

  •  
    One of those rare site that creates a mobile site fast and do not use RSS feed and do WORKS. The drawback is it's only for mobile site and looks weird on desktop. And it's free to create site orview on your mobile device see here http://m.wix.com/
Ashley Tan

Nik's Learning Technology Blog: Create Video Questionnaires - 1 views

  • The site enables users to create questionnaires and then get the recipients of the questionnaire to leave video recorded answers.
  • How to use Intervue.me with studentsCreate comprehension check questions to go with reading homework so that students also do some speaking for homework.Create opinion polls for students to answer.Make action research questionnairesPlay the alibi game and get students to explain where they were and what they were doing at particular points in time.Ask students about childhood memories.
bernard tan

iPhone Development On Windows - 7 Options | iPhone, iOS 4, iPad SDK Development Tutoria... - 0 views

  • 1) Flash CS5 – At the moment is probably the most complete solution.  The packager for iOS allows you to compile apps on the windows platform.  If you’ve been using flash you can rejoice in Apple’s latest policy, it performs well, but don’t expect highest performance games, and Papervision to run in here.  No mac required. 2) Airplay SDK – The airplay SDK allows you to create games, and sign your app on Windows PC’s.  I have not tested this solution, but apparently many apps have been created this way. Both these solutions can compile to code that is native to the iPhone right on your windows PC and many apps available in the app store have been created using them. 3) Unity 3D – Game development engine and editor that utilizes Boo and C# and the editor works on both Windows and Mac. 4) Stonetrip S3D – Game develop engine and editor utilizing LUA, the editor runs within Windows. These game engines allow you to develop your apps on Windows, but you’ll need a Mac to test/compile. 3) Appcelerator Titanium – This is a good solution, and has a very popular and vibrant community.  Apps are limited in performance because while they can be compiled as native apps and sent into the app store they are html/javascript based. 4) Genuitec MobiOne – This is an interface designer that uses the Phonegap framework to deliver native functionality.  It only runs on windows.  HTML/Javascript based. These solutions allow you to create apps using web technologies (HTML/CSS/Javascript) and then run them through an Objective-C framework that responds to actions within a UIWebView, thus allowing you to access native functionality on the iPhone.  These frameworks are free. 5)Dragonfire SDK – An interesting option that allows you to develop apps using their SDK on windows.  Then you send them your uncompiled source which they compile and you download the compiled iOS application file.  I’ve been asked if this means they get a copy of your uncompiled source code.. I couldn’t tell you that, I just know that you have to upload your code for compiliation to their website — but hey you wanted to develop iPhone apps on Windows.  Overall this is a wrapper, I like the syntax and it’s pretty popular so I’ll mention it.
  •  
    Make no fuss about developing an app without a mac here. Pro and Cons reviews provided on each development platform.
Sally Loan

Free Technology for Teachers: Three Free Tools for Creating Stopmotion and Timelapse Vi... - 0 views

  •  
    Alternative to conventional video
bernard tan

Fast workflow for creating multiple resolutions graphic for all your different ios devices - 0 views

  •  
    This video inspires me that you can use this workflow to create and port graphics for iPhone3G, iphone retina, iPad, iPad2, iPad3 or whatever fast and dirty. No more tedious work, save your time. For designers and mobile developers - Youfang and Tenee to take note.
Niko chen

Stiple - Create Interactive Images - 1 views

  •  
    Stipple is a new service (still in an invite-only beta) that allows you to create interactive images. Using Stipple you can upload an image and tag it with pinmarks. Within each pinmark you can include videos, links, text, audio files, and more images.
Kartini Ishak

Eight Free tools for Teachers to Make Awesome Infographics - 1 views

  • 1- Easel.ly This is a great tool that allows users to create visually rich infographics from pre-designed themes. It is very easy to use and only drag and drop. It actually supports Chrome, Firefox, and Safari.
  •  
    Create visually creative info-graphics in classrooms. Great for educators or anyone who wishes to display visually attractive information that doesn't bore the audience. There's eight to choose from. My favourite to use is Easel.ly. 
Ashley Tan

Google Apps Now Offers Business Process Automation on Google Sites with Scripts - 0 views

  • Google Apps Scripts can be used to automate tasks such as "sending emails, scheduling calendar events, creating and updating site pages using data from other systems, and more." You can create a script in Google Sites by clicking "More actions" > "Manage site" > "Apps Scripts." Once created scripts can be embedded on any Google Sites page.
Ashley Tan

Free Technology for Teachers: Adobe's Project ROME Looks Promising - 0 views

  • Project ROME allows users to create multimedia documents and presentations. ROME can also be used to create quizzes and to design websites. Users can build documents that include images, videos, and animations. Animations can be imported from an existing file or created from scratch within ROME.  Resizing of elements within any project in ROME is a simple matter of drag and drop resizing. Arranging elements is also a drag and drop process. Adding elements to a project in ROME is done by selecting from a large series of drop-down menus. Some parts of using ROME are quite intuitive, but as you might expect with a program that has many features, there are parts of ROME that will require you to follow a tutorial the first time you try it. Watch the video below for an overview of Project ROME.
rahim azhar

FreedomShare - 0 views

  •  
    create a blog without a blog. Is there something you want to get off your chest, but there is no way you are going to create a blog just for that, and a tweet would never convey what you need conveyed? Well, if that is ever the case a visit to Freedom Share is in order. This site will enable you to have texts typed and posted without needing to create any kind of account, or even authenticate who you are via Facebook or Google. The site is free and open to just any person who wants to use it, and we are also talking about a site that can be used by people who know nothing about coding.
bernard tan

Coding JavaScript for Mobile Browsers (part 6) - Microsoft Certification Examples, exer... - 0 views

  • In mobile browsers, you need to be especially careful about using timers because of the battery consumption. If you need to use many high-frequency timers at the same time, try to manage them using only one timer that will launch different behaviors from the same process.
  • The first question we need to ask ourselves is, what happens when our web page goes to the background because the user switches focus to another application (in multitasking operating systems) or opens or browses to another tab or window? Another problem is what happens when the phone goes to sleep (because of the user’s inactivity while the script is executing). The behavior of timers can be a little tricky in these situations.Yet another problem is that timers execute on the same thread as the main script. If our script is taking too much processor time (a normal situation with large scripts on low- and mid-end devices), our timers will be delayed until some spare execution time is found.If we use a low frequency for the timer (for example, 10 milliseconds), the timer will generally have problems meeting the timetable.Remember that the JavaScript execution time depends a lot on the device hardware and the browser’s engine. Even if they’re running the same operating system, like Android, execution times can differ: for example, an HTC G1 will be much slower than a Nexus One with a 1-Ghz processor.
  • As shown in Figure 4, the real times are very different on different devices. On low- and mid-end devices, if they work at all, the result is far from our 200 ms intention—some low-end devices don’t even accept timers with a frequency of less than 1 second.
  • ...1 more annotation...
  • Table 11. Timers support compatibility tableBrowser/platformTimers availableTimers in backgroundSafariYesStopped. From iOS 4.0: continue working while in other browser's window.Android browserYesStopped.Symbian/S60YesStopped. From 2.2: continue working while in other browser's window.Nokia Series 40No webOSYesContinue working.BlackBerryNo NetFrontYesNo multitasking.Internet ExplorerYesStopped.Motorola Internet BrowserNo Opera MobileYesContinue working.Opera MiniNo Note:The Gmail for Mobile team discovered some issues with timer behavior on mobile Safari and Android devices, and made the results public in the team blog at http://www.mobilexweb.com/go/timers. The conclusions are: for low-frequency timers (1 second or more), there are no performance issues, and you can add as many as you want; for high-frequency timers (for example, 100 ms), though, every new timer created makes the UI more sluggish. The preferred solution is to use only one high-frequency timer.
  •  
    Creating real time app might pose to be an issue on web app.
youfang cao

Create free animated banners and buttons instantly - 1 views

shared by youfang cao on 11 May 11 - Cached
  •  
    Create compelling animations for the web the first time you try without any previous experience. The unique and easy template approach lets anybody create dynamic content with just a few clicks
Sally Loan

Mobile Study | Create Educational Content For Mobile Devices - 0 views

  •  
    Create quizzes that can be downloaded onto mobile phones.
Pratima Majal

EclipseCrossword - the fast, easy, and FREE way to create crossword puzzles in minutes - 0 views

  •  
    Create crossword puzzles for free!
bernard tan

What about me by Intel - 1 views

  •  
    Creates a Infographic of yours social media usage by using this web application here.
Obi-Wan Fareed

Bb Stats - 1 views

  •  
    It is a building block plugin for Blackboard Learn LMS which provides statistical and analytical data about the system. The software reports live activity data and creates historical graphs. The reports are available through the browser or via mobile app on the iPhone and Android.
  •  
    Do we have this? Does Lum know?
Rachel Tan

How To Use Classroom Response System Effectively - 1 views

  •  
    The classroom response system, whether it is Clickers or iRespond or iResponded, is just a tool. How it is used will make a significant difference or not. This video is excellent in showing the power of a CRS through peer discussion and how the instructors manage the wrap-up session. P/S Sally, thank you for the names of academic staff who have signed up to share: A/P Cheung (LST) Daniel (NSSE) Myra Garces (ECSE) - for the production of pedagogical tips for Bb, I was looking for testimonies so that we can create our own short video ....
wittyben

The Mad Video inc. - 0 views

  •  
    Check out this new tool for creating interactive video.
  •  
    Nice find!
1 - 20 of 206 Next › Last »
Showing 20 items per page