-
Posts
8,080 -
Joined
-
Last visited
-
VeryPC have some rather snazzy laptop stands with integrated USB-C connected docking ports which might be worth looking at.
-
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.
-
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.
-
Music for small drama groups
dhicks replied to NegativeKillDeath's topic in AV and Multimedia Related
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. -
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.
-
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.
-
Google AntiGravity - Anyone using it ?
dhicks replied to 2097's topic in AI in Education & Enterprise
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? -
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.
-
Google AntiGravity - Anyone using it ?
dhicks replied to 2097's topic in AI in Education & Enterprise
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. -
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.
-
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.
-
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?
-
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.
-
Google AntiGravity - Anyone using it ?
dhicks replied to 2097's topic in AI in Education & Enterprise
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. -
Google AntiGravity - Anyone using it ?
dhicks replied to 2097's topic in AI in Education & Enterprise
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?

