Skip to main content

Home/ centreforelearning/ Group items tagged user

Rss Feed Group items tagged

Sally Loan

News: Competing to Catch Plagiarizers - Inside Higher Ed - 1 views

  • The major difference, then, is the database. SafeAssign's library will include a scan of the Internet and weekly updates of the ProQuest ABI/Inform database of 2.6 million articles, as well as student and faculty submissions made Blackboard's network of users.
  • Barrie said Turnitin has a far larger advantage of scale: the Turnitin database includes 40 million student papers from 9,000 academic institutions in 90 countries.
  • SafeAssign asks students for permission to store their papers each time they submit one via Blackboard, which may mean that the catalog grows more slowly than Turnitin's average of 100,000 new papers each day.
  • ...1 more annotation...
  • the more people who use it, the more we have stored in the database, becoming more accurate and more accurate as time goes on.”
  •  
    Turnitin vs SafeAssign for Blackboard. Both are building blocks for blackboard System. SafeAssign is free but a bit unstable, Turnitin is a paid service and subscribed by most institute of higher learning, as well as book publishers.
  •  
    Great resource. It will be good material for any of our staff who are unsure which tool to use.
bernard tan

iPad Usability: First Findings From User Testing (Jakob Nielsen's Alertbox) - 4 views

  •  
    Discover Ipad Usability...
  •  
    There are some really good tips here. I especially like how Nielsen highlighted the different iPhone and iPad design constraints.
Eveleen Er

Volume Purchase Program - 0 views

  • The Volume Purchase Program makes it easy for educational institutions to purchase iOS apps in volume and distribute those apps to users
  • The program works with vouchers that educational institutions can purchase
  • Purchase Volume Vouchers: Volume Vouchers can be purchased at the Apple Store for Education in dominations of $100, $500, $1000, $5000, $10,000. These vouchers can be bought on behalf of the education institution by an Authorized Purchaser, and they may use purchase orders.
bernard tan

Exporting Images from Canvas Tag HTML5 - 1 views

  • Exporting & Saving One thing that SVG can’t do is save the resulting image as a bitmap. It’s easy for <canvas> because the element is already a bitmap in the first place! The canvas can export its image to a data URL (e.g., data:image/png;base64,iVBORw0KGg...). This data may then be rendered in the browser, which could then be saved or dragged to the desktop, used in a new canvas, and so on. The browser must support PNG images, and it may have varying support for GIF and JPG. For our example, we’ll stick with PNG since it supports alpha transparency, and where we haven’t drawn on the canvas, it’ll be transparent. To get the data URL, we simply call canvas.toDataURL('image/png'). Note that we’re calling toDataURL() on the <canvas> element, not on the 2D context. This is because we’re getting all the pixels in the canvas, not just the pixels in a particular context. So taking the example we’ve put together already, we’ll make the browser redirect to a PNG version of the image when a user clicks on the <canvas> element (a contrived example, I know!): canvas.onclick = function () {  window.location = canvas.toDataURL('image/png');};
  •  
    I am sharing of export images from web app specially to Eve and Sham, maybe useful for our harmonia project. This is the workflow i was mentioning on exporting the contents of the new html5 tag canvas to an jpeg or png and it opens in a browser, which then can be save or be used for other things, we could also explore on other options of sending the image directly to other applications. http://jsbin.com/abagi3/5/ Above url is a live prototype and you can actually view source to see how easily it is being done. :)
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.
Eveleen Er

The Complete List of iPad Tips, Tricks, and Tutorials - How-To Geek - 2 views

  •  
    Good for iPad users only
Ashley Tan

Free Technology for Teachers: Daqri - Build Your Own Augmented Reality - 5 views

  • Daqri is a new service for creating augmented reality layers for your mobile devices. Daqri will enable users to create augmented reality products without writing any code.
bernard tan

HTML5 video that display syncing interactive contents to enhance learning. - 0 views

  •  
    A demo using html5 video and dynamic contents. MAKE YOUR VIDEO MORE INTERACTIVE by detecting the timing on the html5 video api, you can provide dynamic contents to support your points in your speech at the correct moment .. imagine this. you can pull in pictures from some other sites, real live data from stockmarket, or interactive forms while persuading people to donate!!! this people are nuts with this idea!!!
youfang cao

Design guidelines seek to aid Android app developers - 0 views

  •  
    A set of Android user interface guides, released by Mutual Mobile, seeks to create standards for a platform where "official" standards don't exist. The guidelines follow the whole process of designing an application and all of its elements, including pop-up windows, colors, fonts and list views, through screenshots, so designers can have examples in front of them during the development process.
bernard tan

Facebook Quietly Fixes its Original Privacy Problem, 5 Years Later - 1 views

  • Facebook has quietly enabled a new privacy feature that allows users to hide certain types of updates from their walls and from the newsfeeds of friends. Make a new friend? Planning on going to an event? Now you can do those things on Facebook but be discreet about it, thanks to the new Hide All These button
Kartini Ishak

Innovative Techniques To Simplify Sign-Ups and Log-Ins - Smashing Magazine - 2 views

  •  
    Useful ideas to using innovative techniques to make form-filling less of a hassle. Useful source for future! 
  •  
    Not just the future... the suggest would work now because they are user-friendly and secure! :)
Kartini Ishak

10 Things CMOs Need To Know About Google+ - On Marketing - Views On The Business Of Bra... - 0 views

  • Google+ is already indexed and searched by Google, making marketing searches much easier than other platforms. Just drop “site:plus.google.com” before any search in Google, and you’ll see what people are saying about you inside the platform.
  • Don’t think “social network.” Think “communications backbone.” This tool allows for private collaboration (privacy is much easier to understand here, but it does require some learning), and permits a “one stop” kind of area for talking internally and externally without causing problems. And it works with email, not in lieu of email.
  • Google+ evolves from Gmail. No matter what the kiddies say, email is still the digital communications backbone of the modern world. SMS might feel like second place, but it’s a distant second. Google+ is very tied to Gmail, with hundreds of millions of users. It feels very natural as an extension in a way that Twitter and Facebook do not.
  • ...1 more annotation...
  • A social network made by Google impacts search. Google isn’t saying it like that, because they wouldn’t want to cause a panicking stampede, but think about this: Google has all the data from Google+. They can’t get any data from Facebook. Google controls search. Where would you cast your vote for search-improvement activities?
  •  
    The "plusses" in Google+
Eveleen Er

Augmented Reality Is Coming To Your Car Window | Bit Rebels - 0 views

  • The concept is called “Window to the World,” and it allows the user to interact with the world outside the window by tracing and drawing with his or her fingers on the window in an augmented reality kind of way
yeuann

Dekko is an instant Wikipedia page for everything you see - 0 views

  • Merging reality with technology, we think. The startup is still in super stealth mode, but from this presentation we found, Dekko wants to give users instant information about any place they take a picture of (see photo).
Kartini Ishak

Google Plus Opens to All & Announces 9 New Features - 0 views

  • Hangouts - the video chat feature - have come to mobile, currently supporting Android 2.3+ devices, and iOS support is "coming soon." Hangouts also now have an "On Air" feature, which allows any Google Plus user to tune in and watch. Furthermore, Hangouts now offer screensharing, a shared sketchpad, and names for Hangouts. But perhaps the killer app is Google Docs in Hangouts, which will open up the possibility of live collaborative work (especially once Google Apps accounts get access).
  •  
    Let's hangong using Google Hangouts - on mobile. 
yeuann

Effective practice with e-Portfolios | CITations - 2 views

  • CIT used to have an e-Portfolio service that did not have a high take up rate. There are several reasons for this that I can think of: It was provided under the build it and they will come model. I believe not enough was done to convince students and teaching staff about the benefits of building e-Portfolios. Consequently, no one was willing to integrate this into their course, as part of reflective learning. Keeping an e-Portfolio was seen as extra work, which neither students nor staff were keen on. Perhaps the software itself was not very conducive to building e-Portfolios. One key area with users seem to be that the e-Portfolio should have a customisable design and layout (at least on its public face). Our system was not flexible in that aspect. In fact, in the latter years, the option to publish the e-Portfolio was taken away entirely. The e-Portfolio service was a walled garden. It wasn’t easy to bring in digital artefacts, which may have resided on other public services, nor was it easy to repurpose that information into useful formats – personal reference, actual resume, showcase of work. No one figured how students would access the e-Portfolios after they graduated as it was all based on our single sign-on system.
  •  
    A reflective commentary by one CIT staff in NUS on his dept's attempts to implement an ePortfolio service - and why it didn't have a high take-up rate.
rahim azhar

Slide Screen by Larva Labs - 0 views

  • Larva Labs presents a home screen that creates a meaningful hierarchy out of your information. Built for Android-based handsets, our home screen is designed for heavy phone users and people struggling with information overload.
  •  
    Am downloading from the android market now. Anyone who wishes to have a look at it may come over to my cubicle. :)
rahim azhar

Dock4Droid Is Android's First Dock Task Manager - 0 views

  • Dock4Droid provides a highlighted (as per default settings), perpetually accessible gesture area at the very bottom of the screen that allows users to quickly switch between recently opened applications with the swipe of a finger but unlike its predecessor, Taskie, it displays a good-looking scrollable icon-roll of recent tasks.
bernard tan

Why You Can't Afford To Ignore Web Video In 2011 - SocialTimes.com - 0 views

  • Everybody’s Doing It.
  • There are all sorts of new trends that have hit the world of viral marketing over the past year. People are doing cool things with HTML5, creating interactive YouTube videos and interactive games, creating cool YouTube takeover campaigns, response campaigns and more. These ideas are still relatively new and surprising, but if you don’t act now they’re going to be old hat. Get into web video in 2011, while its still approaching its apex and you’ll have more of a chance of standing out and not just fading into the piles of copycat campaigns.
  • Online video is everywhere and it is only going to go further in 2011. This year we’ve seen Facebook become a major online video engine with viewers watching 16 minutes of video on Facebook per month and growing; the New Twitter launched, allowing users to watch videos directly from their Twitter feeds; more and more television viewers are cutting the cord and making the switch over to online video; and connected television services like Google TV and Apple TV are bringing web video to the television set
  • ...1 more annotation...
  • more and more people getting smartphones, but network speeds are also increasing and more and more online video sites are launching HTML5 video players to allow for mobile video viewing. With so many people watching online video, and the number growing exponentially, you must understand why you have no other choice than to cater to this market.
  •  
    online video will be a big chunk of mobile learning..
« First ‹ Previous 121 - 140 of 150 Next ›
Showing 20 items per page