Jump to content

dhicks

Members
  • Posts

    8,080
  • Joined

  • Last visited

Everything posted by dhicks

  1. VeryPC have some rather snazzy laptop stands with integrated USB-C connected docking ports which might be worth looking at.
  2. If you are meeting organistational security standards, you don't generally allow anyone-with-the-link sharing of files / folders to Google Drive / OneDrive any more. We still allow sharing between specific, named users, so a user on our Google Workspace could share a spreadsheet with a named user at the NHS. I could see that becoming a bit tricky to manage at the NHS side as your would have to support direct sharing from all vendors, and I suspect there will be a user limit to how many shares one named user could have, at which point you're probably looking at creating a separate user per school to receive shares. Probably do-able, but I suspect an API endpoint that accepts submissions of data is going to be simpler (and cheaper) to manage at the NHS side.
  3. A simple, well-defined, stable API for schools to be able to submit data to. It could probably be as simple as a single endpoint that accepts a CSV file. Schools could write their own tools to compile and submit data or, more likely, the vendors of common data-processing tools (Salamander, Locker, etc) could support it. You could, of course, also provide a simple submition form for people to upload the CSV file manually if they wanted. As others have pointed out, integrating with Wonde (or Clever, etc) would be ideal for many schools, as it would just be another service to approve on their Wonde dashboard and then that would be done. I understand that, while free for schools, Wonde charges per-customer for data access, so this might take some negotiation / budget allocation to sort - it would probably be the simplest option for a lot of schools, but I can understand there might be difficulties sorting this out at the NHS end if it involves having to pay a third-party vendor.
  4. Not sure if this is a hardware or software question. If it's a simple question of what hardware do we provide, then in our case each group of pupils could use a Chromebook to play music from whatever source was appropriate. Software-wise, you could simply put a bunch of tracks in a shared folder (Google Drive / Classroom, OneDrive, etc) and have the pupils play them from there. I find that a rather clunky system for sound effects and so on if you want things to play exactly on cue, so I have a script that generates a one-page sound effects playback webpage, giving you a handy "play" button for each audio item. Licensing is, of course, a separate issue - ripping tracks from Youtube and storing them in a Google Drive folder and distributing to a class probably doesn't meet whatever licensing requirements you have in place. If you need general background music to fit certain scenes / moods / etc you could probably get an AI system to generate a selection for you that you then store. You could, of course, give each group of pupils a microphone and a looper / vocoder and have them beatbox their own background accompniment.
  5. I'm finding the same. I'm not sure quite how repeatable a pure AI assistant is, the approach I've gone for is to use the AI coding agent to write a script that does what you want, then it's repeatable for subsequent actions. Also cheaper as it doesn't use AI tokens each time, just the first time round. It's interesting watching the agent scan the filesystem and figure stuff out - it does stuff pretty much how I would, just way, way quicker.
  6. That would seem to be what the new Mac Minis are aimed at - local AI processing should be very do-able with a fast processor and 64GB of unified RAM. I did get a very rough price from their website of around £3,000, which might be pricey for an individual workstation but not bad for a central on-site device usable by multiple users. Mac Minis can also, seemingly, be clustered via their Thunderbolt ports, so around £10,000 might get you a 4-node, 256GB AI processing cluster. Not something I know much about or have any current experience in setting up, but I did notice specialised AI servers being sold for £40,000 a few months ago.
  7. Hmm - we have Summer 2024-era 8GB-of-RAM iMacs in our ICT suite, I wonder if it's worth trying to run a local model of some sort on those?
  8. If it's any help, I have a 2011-era iMac running ChromeOS, which of course has a Linux core. It does have problems with the wireless hardware, having no supported driver available for the wireless used in that device, I wonder if your disk problem might be similar - it might manage to get to the initial boot stage, but need some sort of "driver" to get any further. It might, possibly, be instructive to try installing ChromeOS Flex on it and (if that boots) see if that can give you any hints as to how hardware might work.
  9. So, a couple of days and around £20 in AI tokens has produced this: https://www.sansay.co.uk/magooify/demo/ A somewhat specialised application for a specific image editing workflow - useful (hopefully) for the person wanting to use it, but rather niche otherwise. That would seem to be a strength of AI coding tools - I can now make tools for a "market" of one / a few people, and it's affordable and do-able in a reasonable timeframe. Using Go as the implementation language seems to have worked well and has produced an application capable of running on most hardware and with minimal resources - the live version is running on a VM with 2GB of RAM and 80GB of disk space, and that's for the whole system including authenticating proxy server (Pangolin), code to mount cloud file systems and the OpenCode tool for development.
  10. I'm starting to lean slightly towards the opposite view - the education sector (probably similar to other specialised sectors) has some poor software options, some of which it should be quite easy to re-implement quite rapidly with a coding agent. That's still probably a job for a small team rather than individuals in schools, just to keep continuity of development and keep projects / products maintained. A separate company, maybe, or for the larger company / school authority a team of in-house developers.
  11. Good point. And, as with spreadsheets, it's great that end users have the tools to handle their data how they want, but it would be good to have some kind of (auditable) controls on access, correctness, etc. Also, I tend to find the issue with spreadsheets is that they're a bit too easy for people to create a new one, so you wind up with data duplicated in multiple places.
  12. We do seem to be heading quite nicely to a situation where the people who understand the business process part of things (secretaries, PAs, etc) now have a suitable tool (AI coding agents) to allow them to create solutions that fit their problems, we (the IT support end of things) need to figure out how to support and manage that process and, as you point out, try and maintain security, usability, maintainability, etc. Also, to keep a careful eye on the AI credit spend. Some of the cheaper models now available are a couple of orders of magnitude cheaper than the top-performance ones, and for the kind of things I'm guessing our staff (and pupils!) will be doing I suspect the cheaper models might be the better option. Has anyone tried their own on-site AI server yet? I keep seeing various projects to cram versions of the latest models onto the kinds of machines we might be able to afford to run locally, has anyone tried using one of these with a coding agent yet?
  13. We don't use Sharepoint, so this might not be directly relevant to your setup, but I use an authenticating reverse proxy (Pangolin, also Cloudflare Tunnel) that passes the authenticated username through to the application as a simple HTTP header, saving the developer from having to (re)implement OAuth. The Sharepoint setup you describe sounds rather like it might be Microsoft's implementation of a similar process, it does sound reasonable enough. A trick / tip for agentic code development would seem to be to have a clearly-specified AGENTS.md file that gets fed to the model you are using, and to pick a model with what I think people are now calling good "prompt adherence". I've recently tried out OpenCode's "Big Pickle" model (which is, I think, GLM-5.2) which seems to work very well in that aspect.
  14. So, using an AI coding agents, I've managed to create in one day a (small, single-page) app I've been wanting to get around to for a while (user takes photo / uploads image, some processing is done, file gets written to cloud drive). I'm not sure how much of that speed of development is down to my existing knowledge / expertise - I've constrained the agent to only working in a way I can understand (a simple, single-file Go project, a single-page, quite basic web interface using Bootstrap). I am able to describe quite precisely what I want done, and if there's an issue I know how to figure out where the issue is. I've also created the environment the app runs in, which already takes care of some of the functionality (e.g. cloud filesystem mounted as a local file system). It would be interesting to see how, say, a year 10 or so pupil would approach the same problem and what additional tools / capabilities they might need. I'm currently using a couple of terminal windows and a separate browser to test the app, I suspect that might be a bit much for the average pupil (or member of staff) and something nicely all-in-one that runs in a browser would be best.
  15. For the moment, I'm using OpenCode with their "Zen" pay-as-you-go LLM service - still currently on the default free Big Pickle model, I've not had to spend any money there yet. I've started with making a basic image-processing app, for which I've also wound up paying for OpenRouter so I can use their (also pay-as-you-go) API to pass images to for processing. This is all currently on my own infrastructure and accounts (and I am quite impressed you can fit all this into a basic 2GB RAM and 40GB disk VM). Issues that would need addressing for this sort of thing to be usable by staff / pupils: - Some kind of per-user token budget, pretty much exactly like we currently give staff a printer budget. - Some kind of keyword / image filtering for submitted prompts and resources, filtered in the same way we would for search queries and so on. - Clarity on what happens to data sent to an AI service - a school (like any corporate) would need a data-stays-private, doesn't-get-used-for-training guarantee. To me, the above rather implies some kind of local AI API proxy server - something that allows administrators to tightly control budgets and handle filtering. Possibly using Zen / OpenRouter as a backend, but with a further curated set of models that meet school's privacy requirements. Does such an application / service already exist?
  16. Gah! This actually turned out to be a bug in the web server (a small custom Go web server from a separate project of mine). Suitably impressed.
  17. I'm looking at how to handle AI tools and billing for our staff and pupils. We already pay for Google's Gemini, which gives our users access to the web-based chat interface and embedded into GMail and so on, but doesn't seem to include the API to use with coding tools - as you point out, we have to go and set up separate billing in a GCP Project. I can see the costs there starting to get out of hand quite easily if we simply let staff and pupils set coding harnesses and AI assistants running. Is anyone hosting a local AI engine? Looking at the available options, a Mac Mini with 48GB of RAM is around £2,500, which as a central server handling AI processing for a number of users might be a cheaper option that paying for API usage. I'm now trying out OpenCode on my test development environment. It turns out to be more resource-heavy than the Gemini CLI client, needing a bit of poking before it would work inside the 2GB-of-RAM container I've assigned it. It's currently using the (currently free!) Big Pickle engine, which has managed to create a whole Git repository containing a Go application and then got itself in a loop trying to add a simple relative web page link. I might try the Pi coding agent, as seemingly that is less resource-heavy.
  18. Ah, yes, I see what you mean - it looks like I can pick-and-choose models and they have a pay-as-you-go option for what looks like a good selection of the main models, rather than having to sign up for a subscription.
  19. You seem to be able to give it a persistent list of commands it can run (mkdir, rm, git, go, etc), and define folders in which it is supposed to work. I'm not sure how well that holds - don't know if it can do a "rm ../../x.y.z" if it has general "rm" permissions. Hmm - I've also just ran out of credit on my free introductory account, credits refresh in a week. This is after a couple of hours and maybe half a dozen prompts - admittedly asking it to create an entire Git repository, but this does look like a way to go through credit at a fair clip. This is with my own account, not school's - I'm not sure how credit for Antigravity gets applied to our school accounts.
  20. I've set up my own development and hosting environment hosted on a basic OVH VM and am using Pangolin to handle user authentication and proxy-ing. My aim is to have an environment self-hostable by a school so that all data can be kept within the organisation, but with the ability to use cloud-based filesystems and AI engines as wanted. I want to try out Antigravity to see how it works and how our staff and pupils might work with it. At the moment it's asking me for permissions for each command it wants to run, which I think user would find a bit tedious / confusing, so I'm maybe thinking some kind of default config file for a user's development area.
  21. Ah - just having a look at this today, I have a couple of existing projects I'd like to point an AI tool at and see what issues / improvements it can find. I'm aiming to have an "app" that is a self-contained compiled Go executable, complete with functionality, a web-based front-end and API documentation embedded in that executable. Should be self-hostable on any OS / architecture, with the option to be run on a server and handle user authentication via an authenticating reverse proxy (Pangolin, Cloudflare). So far, I've got as far as getting the client installed and authenticated inside my development environment, I'll see how I get on from there.
  22. We found the baskets wear / break, and that 5 Chromebooks in a basket are actually quite heavy for some children to carry. We found children were tending to pick up the Chromebook straight from the basket inside the cabinet, and if they did that in a bit of a hurry they tended to bash it straight into the top of the cabinet. We've found metal A4 lever-arch racks to fit the cabinets quite nicely - you can pack them in a bit denser than the supplied "toast rack" stands as well. Not sure if a search for "A4 lever-arch carryall" or similar might turn up a carry-able version.
  23. Google's NotebookLM, now rebranded (as of yesterday) to "Gemini Notebook". You can give it a bunch of documents and then ask questions of that material. You can test for free on a personal Google account, but be wary of giving that version any personal data of pupils. If you have a Google Workspace for Business / Education domain you get a version that doesn't re-use data. One fiddly issue we found is that you can give it a Google Drive folder of items to process all in one go, which is great, but if any of those items get updated it won't automatically update its processing. I did look and see if options to to do updates / re-processing are available via an API, but there didn't seem like a good option at the time (might have changed just recently).
  24. I remember doing this... around November 2022, looking back through previous support tickets. I seem to remember taking the case off the UniFi UNVR and finding a USB memory stick hot-glued to an internal USB port on the motherboard. Replacing that did reset the UNVR to factory settings, but I think we managed to reconnect to all the CCTV cameras okay and I think it even imported the existing footage. UniFi help centre notice here: https://help.ui.com/hc/en-us/articles/9188391314199-UniFi-Network-Video-Recorder-Extended-Replacement
  25. Auto logon / load up of application (possibly in full-screen mode): I was working on this a couple of months ago using Debian as the OS (Ubuntu should be very similar) and XFCE4 as the GUI. That was for a remote desktop setup rather than a kiosk. If nothing else, I found I had to ask Gemini questions about the exact version of XFCE4 I was using, not just "how do I do X on Debian". Switching between two non-iframed views: not tried it, but you could possibly start two instances of Chrome (or other browser) from the command line, both in full-screen mode, then have a script that switches between the two by making one or the other the top window.
×
×
  • Create New...