256 Matching Annotations
  1. Mar 2026
  2. Feb 2026
  3. Jan 2026
    1. The year of programming on my phone # I wrote significantly more code on my phone this year than I did on my computer.

      vibe coding leads to a shift in using your phone to code. (not likely me, I hardly try to do anything productive on the limited interface my phone provides, but if you've already made the switch to speaking instructions I can see how this shift comes about)

  4. Dec 2025
    1. For browsers on mobile devices (including iPads) To install the Hypothesis Bookmarklet you’ll make a bookmark in your mobile browser out of any page, and then edit the bookmark, replacing the URL with some javascript we specify below. To install the Bookmarklet

      this, suggested by the team should work.

  5. Sep 2025
    1. Mobile Computing Mobile computing refers to computing on handheld smartphones and tablet computers. These devices share the distinguishing physical features of being portable and lightweight. Historically, compared with desktop and laptop computers, mobile systems gave up screen size, memory capacity, and overall functionality in return for handheld mobile access

      Mobile computing means using portable devices like smartphones, tablets, or laptops to access information and applications without being limited to one place. It works with the help of wireless networks, internet, and software so that people can communicate, share data, and do their tasks from anywhere. For example, checking emails on a phone, using online banking apps, or finding directions with GPS are all part of mobile computing. As a student, I see it as a way that makes learning and daily activities easier because we can study, attend classes, or even submit assignments online while being mobile. In simple words, mobile computing gives us the freedom to stay connected and productive wherever we are.

  6. May 2025
  7. Apr 2025
  8. Jan 2025
  9. Sep 2024
    1. Der kalifornische.Generalstaatsanwalt hat einen Prozess gegen Exxon Mobil angestrengt, weil der Konzern.den Verkauf von nichtwiederverwenbarem Plastik über Jahrzehnte mit Fehlinformationen über Recycling gefördert habe. Die Firma hätte gewusst und bewusst verschwiegen, dass eines ihrer Hauptprodukte erheblich zur Plastik-Verschmutzung beiträgt. NGOs, die Exxon ebenfalls verklagten, begrüßen, dass damit ein Ölkonzern auch wegen der Plastikverschmutzung juristisch zur Rechenschaft gezogen wird, under erwarten weitere Prozesse dieser Art. https://www.nytimes.com/2024/09/23/climate/california-exxon-mobil-plastics-pollution-recycling-lawsuit.html

  10. Dec 2023
  11. Oct 2023
    1. Imagine having your own self-contained knowledge manipulator in a portable package the size andshape of an ordinary notebook. How would you use it if it had enough power to outrace yoursenses of sight and hearing, enough capacity to store for later retrieval thousands of page-equivalentsof reference materials, poems, letters, recipes, drawings, animations, musical scores, waveforms,dynamic simulations, and anything else you would like to create, remember, and change?

      Fascinating how Even though we did realized some of this with the mobile phone we still have a system that's so fragmented that it's fundamentally getting in the way of progress

  12. Jul 2023
    1. html <meta http-equiv="Accept-CH" content="DPR, Viewport-Width, Width"> ... <picture> <!-- serve WebP to Chrome and Opera --> <source media="(min-width: 50em)" sizes="50vw" srcset="/image/thing-200.webp 200w, /image/thing-400.webp 400w, /image/thing-800.webp 800w, /image/thing-1200.webp 1200w, /image/thing-1600.webp 1600w, /image/thing-2000.webp 2000w" type="image/webp"> <source sizes="(min-width: 30em) 100vw" srcset="/image/thing-crop-200.webp 200w, /image/thing-crop-400.webp 400w, /image/thing-crop-800.webp 800w, /image/thing-crop-1200.webp 1200w, /image/thing-crop-1600.webp 1600w, /image/thing-crop-2000.webp 2000w" type="image/webp"> <!-- serve JPEGXR to Edge --> <source media="(min-width: 50em)" sizes="50vw" srcset="/image/thing-200.jpgxr 200w, /image/thing-400.jpgxr 400w, /image/thing-800.jpgxr 800w, /image/thing-1200.jpgxr 1200w, /image/thing-1600.jpgxr 1600w, /image/thing-2000.jpgxr 2000w" type="image/vnd.ms-photo"> <source sizes="(min-width: 30em) 100vw" srcset="/image/thing-crop-200.jpgxr 200w, /image/thing-crop-400.jpgxr 400w, /image/thing-crop-800.jpgxr 800w, /image/thing-crop-1200.jpgxr 1200w, /image/thing-crop-1600.jpgxr 1600w, /image/thing-crop-2000.jpgxr 2000w" type="image/vnd.ms-photo"> <!-- serve JPEG to others --> <source media="(min-width: 50em)" sizes="50vw" srcset="/image/thing-200.jpg 200w, /image/thing-400.jpg 400w, /image/thing-800.jpg 800w, /image/thing-1200.jpg 1200w, /image/thing-1600.jpg 1600w, /image/thing-2000.jpg 2000w"> <source sizes="(min-width: 30em) 100vw" srcset="/image/thing-crop-200.jpg 200w, /image/thing-crop-400.jpg 400w, /image/thing-crop-800.jpg 800w, /image/thing-crop-1200.jpg 1200w, /image/thing-crop-1600.jpg 1600w, /image/thing-crop-2000.jpg 2000w"> <!-- fallback for browsers that don't support picture --> <img src="/image/thing.jpg" width="50%"> </picture>

    1. ```js // Log the full user-agent data navigator .userAgentData.getHighEntropyValues( ["architecture", "model", "bitness", "platformVersion", "fullVersionList"]) .then(ua => { console.log(ua) });

      // output { "architecture":"x86", "bitness":"64", "brands":[ { "brand":" Not A;Brand", "version":"99" }, { "brand":"Chromium", "version":"98" }, { "brand":"Google Chrome", "version":"98" } ], "fullVersionList":[ { "brand":" Not A;Brand", "version":"99.0.0.0" }, { "brand":"Chromium", "version":"98.0.4738.0" }, { "brand":"Google Chrome", "version":"98.0.4738.0" } ], "mobile":false, "model":"", "platformVersion":"12.0.1" } ```

    1. ```idl dictionary NavigatorUABrandVersion { DOMString brand; DOMString version; };

      dictionary UADataValues { DOMString architecture; DOMString bitness; sequence<NavigatorUABrandVersion> brands; DOMString formFactor; sequence<NavigatorUABrandVersion> fullVersionList; DOMString model; boolean mobile; DOMString platform; DOMString platformVersion; DOMString uaFullVersion; // deprecated in favor of fullVersionList boolean wow64; };

      dictionary UALowEntropyJSON { sequence<NavigatorUABrandVersion> brands; boolean mobile; DOMString platform; };

      [Exposed=(Window,Worker)] interface NavigatorUAData { readonly attribute FrozenArray<NavigatorUABrandVersion> brands; readonly attribute boolean mobile; readonly attribute DOMString platform; Promise<UADataValues> getHighEntropyValues (sequence<DOMString> hints ); UALowEntropyJSON toJSON (); };

      interface mixin NavigatorUA { [SecureContext] readonly attribute NavigatorUAData userAgentData ; };

      Navigator includes NavigatorUA; WorkerNavigator includes NavigatorUA; ```

  13. Jun 2023
  14. May 2023
  15. Apr 2023
  16. Feb 2023
  17. Jan 2023
    1. Actually, using the hypothesis BOOKMARKLET is much more convinient than 'paste a link' or typing "via.hypothes.is/" in front of every link you want to annotate. With the bookmarklet all you need to do is, when you find a page that you want to bookmark, in the search bar of the mobile browser search for the name you saved the bookmarklet as and click it. It will immediately load hypothesis on the page just like clicking the hypothesis extention would do in pc. To bookmark the bookmarklet link (which can be found in https://web.hypothes.is/start) in the mobile browser, copy the link address of the bookmarklet link (which is a javascript code) and just edit an existing (useless) bookmark already there in the mobile browser replace the url with the bookmarklet link. Also give it a title (like "bookmarklet hypothesis") which you would type in the address bar of the mobile browser to find the bookmarklet bookmark.

      Manual to use hypothes.is in mobile Firefox

      via.hypothes.is does not work as they stopped providing an open proxy. It makes all URL forwarders and standalone apps on Android close to useless.

      The piece of advice provided here works, but it is highly unintuitive.

      The mechanics is this: 1. open a page where you want to add annotation 2. click on a bookmark as if you are opening a new page 3. since the bookmark is actually just a piece of javascript, it will simply load hypothes.is client 4. profit.

      To make it work in Firefox mobile, the instruction is this: 1. create a new arbitrary bookmark on some page. It will appear in the list of your bookmarks. 2. copy the bookmarklet javascript code. I was not able to do it directly in the FF mobile, so I copied it on my desktop and sent it to the phone via an IM 3. edit the newly created bookmark and a) give it a name, e.g., "hypothesize"; and b) replace the URL with the piece of copied javascript code 4. now when you want to add an annotation, follow the process above.

  18. Dec 2022
    1. The EAP-SIM mechanism specifies enhancements to GSM authentication and key agreement whereby multiple authentication triplets can be combined to create authentication responses and session keys of greater strength than the individual GSM triplets. The mechanism also includes network authentication, user anonymity support, result indications, and a fast re-authentication procedure.
    1. What benefits do teachers attribute to theirparticipation in mobile laboratory programs? Do teachers perceive that the mobile laboratoryexperience has an impact on student learning,student attitudes, and student behaviors? If so, whatis the impact?

      mostly teacher focused questions

      would need to explain why I'm looking at teacher's experiences first

    2. acquiring true control groups and she indicated that much ofthe feedback tended to be anecdotal and somewhat irregula

      eval and feedback is difficult as no true opportunity for control groups, and feedback is often anecdotal and irregular

    3. However, mobile laboratory programs aredesigned to do much more than provide equipment andsupplies. The value added by these programs stems fromaccess to engaging, substantive, and thought-provokinginquiry experiences for students and teachers. These includea range of laboratory experiences that involve studentscarrying out carefully specified procedures to verifyestablished scientific knowledge as well as experiences thatengage students in formulating questions, designinginvestigations, and creating and revising explanatory models[3]. Most mobile laboratory experiences for students rangefrom one to four days of laboratory-based activities thatsupplement required curricula. The flexibility of the mobilelaboratory format allows teachers to customize the time anddepth of the experience to the needs of their students andschool schedule. For example, some teachers opt to haveseveral classes work on the mobile laboratory duringregularly scheduled class periods for four or five days whileother teachers choose an in house field trip format thatallows the students to work on an investigation for the entireschool day. Mobile laboratory programs provideappropriately configured space, state-of-the-art equipment,and pedagogically-rich curricular materials, as well asprofessional staff who work with classroom teachers tocreate meaningful science explorations. The combination offacilities, staff, supplies, and materials enable mobilelaboratories to deliver outstanding laboratory learningexperiences for students and unique professionaldevelopment opportunities for teachers.

      it's not just the tools, it's the time, meaningful connections, and PD for teachers

    4. These“vehicles” may pique the curiosity of students andmotivate them to continue their study of science in highschool and beyond. As such, mobile science laboratoriesmay contribute to increasing the number of studentswho become science-literate citizens and members of thescience workforce

    Tags

    Annotators

  19. Nov 2022
    1. TEs are transposable elements.

      Transposons are mobile DNA elements.Can move throughout the genome. Can be catagorised as class 1 (retrotransposons) or class 2 (DNA transposons).

      Class 1 comprises TEs with LTRs, retroposons (LINE), SINEs.

      Class 2 comprises TEs that operate under replicative transposition or non-replicative transposition. Replicative transposition (nick and paste) -- a total of two TEs as an end result, one as part of the donor and one as part of the target sequence. cointegrate.

      Non-replicative transposition (cut and paste) - only one TE generated, in the target.

      Examples of DNA-only transposon:

    1. Now I can take an article from almost anywhere on my phone (reading services like Pocket, my feed readers, or even articles within the browser themselves), click share, choose “URL Forwarder” from the top of the list, select “Hypothesize” and the piece I want to annotate magically opens up with Hypothes.is ready to go in my default browser. Huzzah!

      Useful how-to for setting up Hypothes.is for mobile use on Android. Confirmed that this works on Brave mobile browser

  20. Oct 2022
    1. On the other end, there was The Good Phone Foundation, a not-for-profit organization founded with a mission to create an open, transparent, and secure mobile ecosystem outside of Big Tech’s reach, who just released their own Android-based mobile OS and were looking for apps to rely on. They contacted me, and after a couple of calls, we realized that partnering up on the smartphone makes a lot of sense for both of us. So, here we are, introducing you to our brand new Simple Phone. Only having control over both software and hardware ensures the ultimate privacy and security. The target audience consists of more privacy-oriented people that do not want to be tracked or rely on big corporations, Google Play, etc. It focuses on people who just want to get things done in a simple way without having to keep closing ads and wondering what does the system do in the background. Not to mention consistency again as the core apps are developed by us. Hope you will like it just like we do 🙂

      Simple Phone's effort to release its own mobile OS is promising for ordinary users. Because Simple Mobile Tools represents a full suite of basic Android applications, in can, ideally, provide a privacy-friendly and user-friendly alternative to stock Android by providing a unified suite of apps. /e/ OS (aka Murena) is attempting something similar, but its app collection is not quite as unified as the Simple Mobile suite.

  21. Sep 2022
  22. Aug 2022
    1. Citation: Kirkpatrick, Keith. The Road to 6G. Communications of the ACM, September 2022, Vol. 65 No. 9, Pages 14-16 10.1145/3546959

      Although it is early in the commercial rollout of 5G mobile networks, countries, companies and standards bodies are gearing up for what will be in the next version—so called “6G” mobile network. There are already experimental allocation of high frequency radio bands and testing that has occurred at about 100m distances. The high frequency will mean higher bandwidth, but over shorter distances. There are experiments to make passive graphene reflectors on common surfaces to help with propagation. What may come is a convergence of 6G with WiFi 6 to support connectivity from body-area networks to low earth orbit satellites.

    1. Mobile Network Hacking, IP Edition. by Karsten Nohl, Luca Melette & Sina Yazdanmehr. Black Hat. London. December 2-5, 2019. 47 minute video. https://www.blackhat.com/eu-19/briefings/schedule/index.html#mobile-network-hacking-ip-edition-17617

      Mobile networks have gone through a decade of security improvements ranging from better GSM encryption to stronger SIM card and SS7 configurations. These improvements were driven by research at this and other hacking conferences.

      Meanwhile, the networks have also mushroomed in complexity by integrating an ever-growing number of IT technologies from SIP to WiFi, IPSec, and most notably web technologies.

      This talk illustrates the security shortcomings when merging IT protocols into mobile networks. We bring back hacking gadgets long thought to be mitigated, including intercepting IMSI catchers, remote SMS intercept, and universal caller ID spoofing.

      We explore which protection measures are missing from the mobile network and discuss how to best bring them over from the IT security domain into mobile networks.

  23. Jul 2022
    1. D2M allows for the direct streaming of multimedia content to phones. The technology’s theory is that it can be used to directly broadcast information geared toward citizens, as well as to combat fake news, send out emergency warnings, and aid in disaster management, among other things. In addition, live sports, news, and other content can be broadcast on mobile devices. Furthermore, there should be zero internet data usage while the material streams without any buffering at all. Furthermore, there should be zero internet data usage while the material streams without any buffering at all.

      Definition DIrect 2 Mobile

    1. The definition of “super app” is fuzzy, but companies and their leaders most often use it to describe a state of cramming ever more features and functions into their apps—often ones adjacent to, but distinct from, their core functionality. So, for example, a financial-tech super app might start with payments and bolt on buy-now-pay-later, cryptocurrency and in-app storefronts. For social media, it could mean incorporating things like shopping. And for a delivery and ride-hailing company, it might mean adding new modes of transportation or other categories of goods for drivers to convey.

      Definition of "super-app"

      Not yet common in the U.S., but exemplified by WeChat in China. This is a response to the decline in mobile app user tracking and the corresponding ad-tech. It is about capturing more time and attention from mobile computing uers.

  24. Jun 2022
  25. May 2022
    1. Hello, my name is Evans Dominique from the United States am here to give a testimonial on how I met one of the best Hacker so far on my incredible moment of pain I lost a huge amount of money to a fake investor, I invested 105,000 USD to this investment company with my belief that I will have a huge return when it was time for me to get my return they company no longer pick my calls or reply to my email I was so devasted that my sister saw my pain and sad sorrow she have no choice than to introduce me to this great hacker called Wizard Brixton. I tell him everything about my situation and he asked for the company email address and the mobile number he promises to help me retrieval my funds if I will be able to cooperate and give him the vital information needed less than 24 hours he was able to give me the necessary details about the company and how he will get my funds back without the company approval. Contact him: Wizardbrixton@gmail.com WhatsApp with (+1- /807-23 ) 4-0428 ;) I was very happy when he recovered all my funds and gave me 2% of the profit the company could have given to me. so I promise to make him go viral for everyone to contact him in different aspects of hacking software program in your life he proves the best in his job CONTACT HIM: Wizardbrixton@gmail.com

  26. Apr 2022
    1. A professional hacker, I can introduce you to is Wizard Brixton Group of Hackers he is the best Hacker for funds Recovering. Bitcoin recovery, Usdt recovery, Data recovery, Bank account payment recovery, Bitcoin hacks, increased Credit score boost to 800, School result upgrading, cryptocurrency, Binary option funds recovery, Bitcoin Mining, Social media hacks, Payment for our services will only be collected after Customers have certified and confirmed the completion of their job. For no reason do we collect upfront for services? But note that Customers will have to pay for Hacking Equipment if necessary before a job would be done. contact them on ( WIZARDBRIXTON(AT) GMAIL (DOT) COM ) WhatsApp +1- /807-234-0428

  27. Mar 2022
  28. Feb 2022
    1. Reposant sur le protocole d'authentification EAP-SIM, FreeWiFi_Secure est entièrement sécurisé, chaque abonné se connectant automatiquement au réseau WiFi communautaire par une adresse IP dédiée et dont les communications sont chiffrées (WPA). L'avantage majeur d'EAP-SIM réside dans le fait qu'aucune saisie d'identifiant n'est nécessaire, l'authentification s'effectue automatiquement, avec la carte SIM. Tous les téléphones vendus par Free sont compatibles avec FreeWiFi_Secure - EAP-SIM. 
  29. Jan 2022
  30. Dec 2021
  31. Nov 2021
  32. Aug 2021
  33. Jul 2021
  34. Jun 2021
  35. May 2021
    1. Despite an initial falloff due to the Covid pandemic, digital advertising spending grew 12.2% year over year in 2020, according to a new report commissioned by the Interactive Advertising Bureau and conducted by PwC.

      Digital Spending grew according to PwC

  36. Apr 2021
    1. GitHub Actions is GitHub’s platform for automation workflows. A workflow is a sequence of jobs that can run either in series or in parallel. A job usually contains more than one step, where each step is a self-contained function. To learn more about GitHub Actions, go through the tutorial on Continuous Integration for Android.

      Brief description on what GitHub Actions is.

    1. Preferences DataStore and Proto DataStore DataStore provides two different implementations: Preferences DataStore and Proto DataStore. Preferences DataStore stores and accesses data using keys. This implementation does not require a predefined schema, and it does not provide type safety. Proto DataStore stores data as instances of a custom data type. This implementation requires you to define a schema using protocol buffers, but it provides type safety.

      Currently, I am using SharedPreference which is still alright to use. However, there is a better option called DataStore. This allows data to be stored asynchronously.

    1. The privacy agreement allows Niantic Labs to snap a photo of what the user thinks is a Pikachu but Niantic knows is $500,000 worth of market research. Now imagine the client is a police chief, or the Department of Homeland Security.

      The implications of this are huge and cannot be understated. Pokemon Go has seen a bit of a decline in it's user base since the article was published, but as this data breakdown shows - one key takeaway from this data breakdown is that this app maintains an impressive user base and signifiant marketshare even 4 1/2 years on from it's debut - clearly the pairing of a famously cute intellectual property with an addictive gaming model is a recipe for success.

  37. Mar 2021
  38. Feb 2021
  39. Jan 2021
  40. Dec 2020
  41. Nov 2020
  42. Aug 2020
  43. Jul 2020
    1. Jeffrey, B., Walters, C. E., Ainslie, K. E. C., Eales, O., Ciavarella, C., Bhatia, S., Hayes, S., Baguelin, M., Boonyasiri, A., Brazeau, N. F., Cuomo-Dannenburg, G., FitzJohn, R. G., Gaythorpe, K., Green, W., Imai, N., Mellan, T. A., Mishra, S., Nouvellet, P., Unwin, H. J. T., … Riley, S. (2020). Anonymised and aggregated crowd level mobility data from mobile phones suggests that initial compliance with COVID-19 social distancing interventions was high and geographically consistent across the UK. Wellcome Open Research, 5, 170. https://doi.org/10.12688/wellcomeopenres.15997.1

  44. Jun 2020
  45. May 2020
  46. Apr 2020
    1. Q. Can an app work for my small business in the long term? A. You need to assess your product and then come up with an app which offers excellent solutions for your customers. Be sure to incorporate some new and innovative features in it which can make your app work well in the long term and isn’t termed as outdated by your customers. And what better way to get the support of a top mobile app development company having a great track record in this concern.

  47. Mar 2020
  48. Feb 2020
    1. Mobile App Development Agency with Dedicated App Developers

      Need help turning your great idea into an app on the App Store? ROEMIN Creative Technology has the mobile app developers that can turn your dream into a reality. Did you know that there are numerous apps that start from great ideas, but fail because of poor development or positioning in the App Store or Google Play? Don’t let a great idea go to waste! Work with professional mobile app developers that know how to turn it into a top app.

  49. Dec 2019
  50. Nov 2019
    1. Create A Music Streaming App In 2019

      How To Create A Music Streaming App?

      Now that you know that music apps can make pretty good money for their owners, you are probably dying to make your own app and start making money with it. But it’s not so easy.

      Here is a step by step process –

      Validating your app idea Understand the target audience Copyright matters to consider Radio or on-demand? Sketch the prototype Creating MVP Choose the features How to make your music app secure The cost to create a music app like Spotify

    1. As educational technologies, instructional design and online learning/content delivery platforms keep evolving, more learners with more needs and motives will be drawn to taking online courses – a growing demand that in turn will spur further improvements in technology and delivery.

      Educational Technology offers free articles with sources.

      Rating: 5/10

  51. Oct 2019
  52. Sep 2019
  53. Aug 2019
  54. Jun 2019
    1. ‘This idea that every kid has to have one device per student is going to seem obscene in 20 years’ time when these devices aren’t sustainable anymore. The amount of rare minerals and just plastic products and power and everything associated with using technology use needs to be rethought,’ he says.

      This is a point that I tried to capture in my reflection on mobile devices.

  55. May 2019
  56. Apr 2019
  57. Mar 2019
    1. 25 examples of mobile teaching This is a brief page that is cluttered with some irrelevant content that occurs in the form of rather large graphics. It is oriented toward higher education environments though the ideas would be quite easy to implement in other contexts, such as for training adult learners. The text is not in depth enough to be tremendously helpful but this resource does nonetheless make a contribution not made by other resources in that it shows actual teaching techniques. rating 4/5

    1. A context aware personalize M-learning application based on m-learning preferences This is a scholarly paper presented in the context of engineering and is not readily accessible by the layperson; it is also dated. Nonetheless it includes some scenarios and recommendations for consideration of learner preferences. It is included in this list solely because it introduces the concept of context aware personalized mobile learning. rating 1/5

    1. The benefits of personalized learning through technology This resource is included in part because it connects personalized learning and technology. A brief list of benefits, such as increasing student engagement and bridging the gap between teachers and students, are listed. This is presented by a marketing unit of a university so there may be an agenda. Nonetheless it provides useful considerations such as helping learners develop 'design thinking.' rating 3/5

    1. learning in the 21st century mobile devices + social media = personalized learning This appears to be oriented toward K-12 students but several components seem applicable to professional learning. The context is schools. Key findings are listed at the beginning of the report. The report is somewhat dated but still makes some points worth considering, such as the potential for devices to serve as a distraction just as much as a tool. rating 2/5

    1. Evaluation of technology enhanced learning programs for health care professionals: systematic review This article is included because it is a systematic review. It is presented in academic language. The intention is to evaluate the quality of the articles themselves, not to guide e-learning development. Criteria for evaluating articles was established in advance. The utility of the article for my purposes may be a new search term, continuous professional development. rating 2/5

    1. what is the definition of mobile learning This is a brief article that explains mobile learning for a layperson (not an academic). It is described in the context of schooling. It does not necessarily relate to informal learning specifically. The advantages (such as motivation and distance) are discussed, as well as the disadvantages (such as the potential for distraction). It is adequate as a definition. rating 3/5

    1. informal learning with mobile devices - microblogging as learning resource This article uses the work of Schon, a theorist on learning and reflection whose work is often used to address workplace learning. The paper is on topic, relating to informal learning with mobile devices, but it focuses on high school students--which seems to be a rather unusual use of Schon's writing. Also the writing itself is both general and dated. There is a 2x2 that describes the relationship of formal and informal learning to intentional and unintentional learning as well as the use of devices. rating 1/5

    1. Simulations and games in informal learning contexts This article seems to discuss science learning, which is not my foremost interest, but it does give an example of how informal online learning can be used to allow the learner to explore his or her own interests. It is not specific enough to be of high value but is useful as a preliminary reading that can perhaps inform search terms to use for future research. rting 2/5

    1. Using mobile devices to support formal, informal, and semi-formal learning: uses and implications for teaching and learning This online article is presented with 'draft' stamped across it; it does not appear to be from a recognized publisher. The content does connect the topics I am looking for (informal or personalized learning, mobile devices, and teacher professional development). They discuss their recommendations and connect informal mobile learning to personalized learning. rating 4/5

    1. designing for sustainable mobile learning: evaluating the concepts formal and informal This is a journal article that is freely available online. They argue that informal learning is more 'enriching' than formal learning. They write about mLearning (mobile learning) and state that some 'design aspects' must be left to learners. This is formatted in the standard way and has the usability one would expect of an online journal article. There are citations as one would expect but I am not qualified to evaluate the information quality. rating 5/5

    1. personalized mobile learning solutions to create effective learning paths This appears to blend personalized learning and mobile learning. It is prepared by a specific vendor, MagicBox, so they might be assumed to have their own agenda. This page describes some of the affordances of personalized mobile learning, such as the capacity to track and presumably respond to learner preferences. rating 2/5

    1. train and develop your staff with mobile apps I am not sure why the first two components of this page are included, but there is a bulleted list of contexts or applications of mobile apps for e-learning, such as leadership training, onboarding, and integrating interns who are part of the organization. This is interesting but I do not yet know how essential it is.