TwistedHelixis
Members-
Posts
3,401 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by TwistedHelixis
-
Google IT Admin Summit 2026 - Friday 27th Feb
TwistedHelixis replied to Dos_Box's topic in Courses and Training
Ill probably go next time 👍 -
Google Endpoint Education Upgrade
TwistedHelixis replied to ThatBoringBloke's topic in Licensing Questions
I think its called Endpoint Education Upgrade -
Google Endpoint Education Upgrade
TwistedHelixis replied to ThatBoringBloke's topic in Licensing Questions
Yes they did. Its a separate license for education. -
Schools using GCPW and Smoothwall
TwistedHelixis replied to ThatBoringBloke's topic in Cloud Services
Does that also include getting GCPW to work with Smoothwall cloud? Which was mentioned in a separate forum. -
I use Action1 for updates and deploying scripts. I did have issues with the yearly feature updates, but they fixed that for me. Apart from that, its been rock solid and a massive help.
-
We have a special emergency email forwarding account, that the police asked us to create. I created the forwarding rule in Google Workspace, the same as all our other forwarding accounts. I can send an email from my personal account and it gets forwarded, All emails sent from our local authority get forwarded, but we have just noticed any emails the Police are sending do not get forwarded. I can see in the logs they arrive at our emergency account, but they don't get forwarded. Can anyone think of a logical reason for this? If you need any more info, please ask.
-
Chromebooks for pupils at all the schools I manage, I would never want to go back. On a side quest, I now have 2 server-less schools. Both have staff still using Windows devices, but they authenticate against Google accounts, not intune or Microsft. It so nice not to have to worry about server updates, domain migrations, or purchasing new servers etc
-
M365 and young children EYFS and Key Stage 1
TwistedHelixis replied to sraper's topic in Cloud Services
All the primary schools I look after, the pupils login from year 1 using their own account and password. The IT coordinator and the first school I know that did this, who is also a year 1 teacher said its probably the most important thing to teach the pupils at that age. If they can use a username and password they are set for everything that follows. This also means any websites they have logged into while logged into their own Chromebook account, will always have their own settings, which ends up making everything so much esiser in the long run for the teachers. No more having to log a pupil into MyMaths every lesson etc. The year 1 teacher, just keeps going over and over how they should log in, until they are all logging in. -
Multi Factor and Supply Staff for Cloud Services
TwistedHelixis replied to paulkerton's topic in Cloud Services
Shared accounts have nearly all cloud apps disabled. We just have a supply shared drive and the staff drop stuff there if needed. We also have supply only laptops, so the 2 step has already been used on that device, so its not needed when the actual supply logs in. -
GCPW Auto Sign-in for Chrome/Drive and Default Browser Setting
TwistedHelixis replied to SirAlan's topic in Cloud Services
I'm now wondering if after entering my password, rather than clicking 'try another way' and then picking the key as an option, if I had just inserted my fido key after typing in my password, would it have worked anyway. -
GCPW Auto Sign-in for Chrome/Drive and Default Browser Setting
TwistedHelixis replied to SirAlan's topic in Cloud Services
I just setup a new device and it let me use my fido key to log in. After entering my password and picking to use my security key, it didn't display the normal 'enter your key to continue', the only option was to pick a different option, but I plugged the key in anyway, noticed it was flashing the LED, pressed the touch button and it logged me in. So its not perfect, as it looks like its not going to work, but does anyway. -
It works. I am so useless with creating scripts, but now, lol <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>YouTube URL Modifier</title> <style> body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #f4f4f9; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); width: 100%; max-width: 500px; text-align: center; } h2 { color: #333; margin-bottom: 1.5rem; } .input-group { margin-bottom: 1.5rem; text-align: left; } label { display: block; margin-bottom: 0.5rem; font-weight: bold; color: #555; font-size: 0.9rem; } input[type="text"] { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; box-sizing: border-box; /* Ensures padding doesn't affect width */ transition: border-color 0.2s; } input[type="text"]:focus { border-color: #007BFF; outline: none; } button { background-color: #007BFF; color: white; border: none; padding: 12px 24px; font-size: 1rem; border-radius: 6px; cursor: pointer; width: 100%; font-weight: 600; transition: background-color 0.2s; } button:hover { background-color: #0056b3; } .output-area { margin-top: 1.5rem; background: #f8f9fa; padding: 1rem; border-radius: 6px; border: 1px solid #e9ecef; display: none; /* Hidden by default */ } .output-area p { margin: 0 0 0.5rem 0; color: #666; font-size: 0.9rem; } .result-link { word-break: break-all; color: #007BFF; font-weight: bold; text-decoration: none; } .copy-btn { background-color: #28a745; margin-top: 10px; } .copy-btn:hover { background-color: #218838; } </style> </head> <body> <div class="container"> <h2>URL Modifier</h2> <div class="input-group"> <label for="urlInput">Paste YouTube URL:</label> <input type="text" id="urlInput" placeholder="https://www.youtube.com/watch?v=..." autofocus> </div> <button onclick="convertUrl()">Convert URL</button> <div class="output-area" id="outputArea"> <p>Your new URL:</p> <a href="#" class="result-link" id="resultLink" target="_blank"></a> <input type="text" id="hiddenCopyInput" style="display:none;"> <button class="copy-btn" onclick="copyToClipboard()">Copy to Clipboard</button> </div> </div> <script> function convertUrl() { // 1. Get the input value const inputUrl = document.getElementById('urlInput').value; const outputArea = document.getElementById('outputArea'); const resultLink = document.getElementById('resultLink'); const hiddenInput = document.getElementById('hiddenCopyInput'); // 2. Simple validation to check if it looks like a YouTube link if (!inputUrl.includes('youtube.com')) { alert('Please paste a valid "youtube.com" URL.'); outputArea.style.display = 'none'; return; } // 3. The Logic: Replace 'youtube' with 'yout-ube' // This targets the first instance of 'youtube.com' const newUrl = inputUrl.replace('youtube.com', 'yout-ube.com'); // 4. Update the UI resultLink.textContent = newUrl; resultLink.href = newUrl; hiddenInput.value = newUrl; // Show the output area outputArea.style.display = 'block'; } function copyToClipboard() { const hiddenInput = document.getElementById('hiddenCopyInput'); // Use the modern clipboard API navigator.clipboard.writeText(hiddenInput.value).then(() => { alert("URL copied to clipboard!"); }).catch(err => { console.error('Failed to copy: ', err); }); } // Allow pressing "Enter" to trigger the conversion document.getElementById("urlInput").addEventListener("keypress", function(event) { if (event.key === "Enter") { convertUrl(); } }); </script> </body> </html>
-
I just asked Gemini to create me an app for teachers to enter a YouTube URL and the app would supply them with the new YouTube link but with the modified t-u url link. Its come back with a website script. not tested it yet.
-
Yes, there is finally a new version of Carmageddon due out in February. I used to play the original many many years ago. I hope it manages to match my epic level memories. https://store.steampowered.com/app/1712100/Carmageddon_Rogue_Shift/
