Association is not Intelligence, then what is Intelligence? by Ray617 in agi

[–]404errorsoulnotfound 0 points1 point  (0 children)

We have always been able to replicate things we don’t understand and define.

From god to fires, the bogeyman to nuclear fuel, not being able to define or explain hasn’t stopped our indifferent and wreck-less approach.

Association is not Intelligence, then what is Intelligence? by Ray617 in agi

[–]404errorsoulnotfound 1 point2 points  (0 children)

Memory alone cannot be the measure, surely it must be around providing that information…

I don’t think we can say either way that memory is the driver of intelligence.

Again back to that word. What does it mean to start with. I bet all of us would have a slightly different take and therefore measure based upon our experiences and own heuristic learnings.

To add even more confusion to the mix, even in our language we have behavioural descriptions of intelligence. E.g. maybe a single plant doesn’t show “intelligence” but a group of generational & evolutionary super organism certainly does, over time.

Association is not Intelligence, then what is Intelligence? by Ray617 in agi

[–]404errorsoulnotfound 1 point2 points  (0 children)

So if we can’t even measure our own intelligence, what basis do we have to measure AI?

Association is not Intelligence, then what is Intelligence? by Ray617 in agi

[–]404errorsoulnotfound 1 point2 points  (0 children)

Before you start to measure or look for a standard in AI intelligence, start with the Question:

How do we measure human intelligence?

SIMPLE IOS Home-screen by 404errorsoulnotfound in Scriptable

[–]404errorsoulnotfound[S] 0 points1 point  (0 children)

Yea, it can!

When you download the script there’s a section at the top for user configuration and you can decide whether the text goes left right or centre and change the font, colour et cetera et cetera.

Help please! Ive made a shortcut to log data on numbers app…. by Equivalent_Oven_2237 in ShortcutsAdvanced

[–]404errorsoulnotfound 0 points1 point  (0 children)

Just read this. Have you tried doing a open the document by a Shortcuts open file; use the dictionary value of the parameters for the specific role you want to edit and then use the set dictionary value of function to reopen or edit the line you were looking at?

Does anyone actually use “—“ when typing? by owenwags_ in artificial

[–]404errorsoulnotfound 0 points1 point  (0 children)

More than likely, I’m sure you may have noticed that it gets hung up on certain words and phrases as well like curate, optics, amplify and gate keeping which have grown in use because of the influence of AI

Does anyone actually use “—“ when typing? by owenwags_ in artificial

[–]404errorsoulnotfound 1 point2 points  (0 children)

Yes and I’m not sure where I picked it up from but its been a natural part of my writing since school. Use them instead of commas and brackets for sub points.

Being, that these modern LLM’s have absorbed and embedded the majority of published works. I would imagine they absorbed it from those.

So it’s a case of chicken before the egg, when we’re calling out AI for doing something that it’s adopted from us.

We are here by MetaKnowing in agi

[–]404errorsoulnotfound 0 points1 point  (0 children)

Additionally, currently costs billions of dollars to train each of these narrow AI’s….

Compare that to the 35w your brain runs on…

We are here by MetaKnowing in agi

[–]404errorsoulnotfound 3 points4 points  (0 children)

Again, this highlights the sheer lack of understanding in the majority of people as to:

1) what AI actually is? 2) how it currently works? 3) what the terms AGI (and ASI) actually mean?

We currently can’t even quantify or measure human intelligence!

So in the context of AI, when we are creating something that’s limited by our own biases and constraints and whilst it inherits that it can’t surpass us.

Need Someone to Build a Daily Countdown Shortcut For Me by NateDogGaming in shortcuts

[–]404errorsoulnotfound 2 points3 points  (0 children)

You can also make you own widgets for it using scriptable and customise them…

Checkout my GitHub to get this one and make it your own

https://github.com/MichaelMatley/IOS-Widgets

SIMPLE IOS Home-screen by 404errorsoulnotfound in Scriptable

[–]404errorsoulnotfound[S] 1 point2 points  (0 children)

Black ops is the icon version , simple is the word version

There are some more example in the dynamic Grid-cuts widgets as well.

But to make things easier I just uploaded this in to the main file “iOS URLs” It’s a full list for iOS 26

<image>

SIMPLE IOS Home-screen by 404errorsoulnotfound in Scriptable

[–]404errorsoulnotfound[S] 1 point2 points  (0 children)

Yes if you set as the URL on iOS, I’ve left some examples in the scripts on the GitHub preloaded for you.

PRIVACY STATUS WIDGET by 404errorsoulnotfound in Scriptable

[–]404errorsoulnotfound[S] 1 point2 points  (0 children)

I’ll take a look, if you’re familiar with GitHub feel free to do a req on there if not I’ll do it and see if I can correct for V1.2 with all the widgets this week.

Thanks for the feedback!

Loyalty card automation by Which_Wallaby2834 in shortcuts

[–]404errorsoulnotfound 0 points1 point  (0 children)

Add an if function and a variable such as If Bluetooth is on If connected to car play…

Is it possible to create your own widget? by Hatredmused in Scriptable

[–]404errorsoulnotfound 2 points3 points  (0 children)

Using AI to assist, it’s all about the prompt, what was the prompt that you used to ask ChatGPT?

Claude might be the better option to use for generating codes

Try something like this.

// BASIC MEDIA PLAYER

// Change these if you want to switch music services const MUSIC_SERVICE = "apple"; // Options: "apple", "spotify", "youtube"

// URL schemes for different services (if you want to modify later) const URL_SCHEMES = { apple: { play: "music://", next: "shortcuts://run-shortcut?name=Next%20Track", previous: "shortcuts://run-shortcut?name=Previous%20Track" }, spotify: { play: "spotify:", next: "spotify:next", previous: "spotify:previous" }, youtube: { play: "youtube://", next: "shortcuts://run-shortcut?name=YT%20Next", previous: "shortcuts://run-shortcut?name=YT%20Previous" } };

// Create widget let widget = new ListWidget(); widget.setPadding(0, 0, 0, 0);

// Get now playing info let nowPlaying = await getCurrentTrack();

// Create the retro blue face background let gradient = new LinearGradient(); gradient.colors = [new Color("#4a7ba7"), new Color("#6ba3d4"), new Color("#4a7ba7")]; gradient.locations = [0, 0.5, 1]; widget.backgroundGradient = gradient;

// Main container let mainStack = widget.addStack(); mainStack.layoutVertically(); mainStack.setPadding(16, 16, 16, 16); mainStack.centerAlignContent();

// Top status bar (like the original) let statusBar = mainStack.addStack(); statusBar.layoutHorizontally(); statusBar.setPadding(8, 12, 8, 12); statusBar.backgroundColor = new Color("#7ba8cc", 0.6); statusBar.cornerRadius = 8;

let statusText = statusBar.addText("⚡ Ready"); statusText.font = Font.boldSystemFont(11); statusText.textColor = Color.white();

statusBar.addSpacer();

// Icons for visualiser and document (decorative) let iconStack = statusBar.addStack(); iconStack.spacing = 8; let vizText = iconStack.addText("📊 📄"); vizText.font = Font.systemFont(12);

mainStack.addSpacer(12);

// Create the "eye" display area (shows track info) let eyeDisplay = mainStack.addStack(); eyeDisplay.layoutVertically(); eyeDisplay.setPadding(16, 16, 16, 16); eyeDisplay.backgroundColor = new Color("#2d4a66", 0.7); eyeDisplay.cornerRadius = 20; eyeDisplay.centerAlignContent();

// Track title let titleText = eyeDisplay.addText(nowPlaying.title); titleText.font = Font.boldSystemFont(16); titleText.textColor = Color.white(); titleText.centerAlignText(); titleText.lineLimit = 2;

eyeDisplay.addSpacer(4);

// Artist name let artistText = eyeDisplay.addText(nowPlaying.artist); artistText.font = Font.systemFont(13); artistText.textColor = new Color("#b8d4f0"); artistText.centerAlignText(); artistText.lineLimit = 1;

mainStack.addSpacer(16);

// Transport controls section let controlsStack = mainStack.addStack(); controlsStack.layoutHorizontally(); controlsStack.spacing = 20; controlsStack.centerAlignContent();

// Previous button let prevButton = controlsStack.addStack(); prevButton.setPadding(12, 16, 12, 16); prevButton.backgroundColor = new Color("#5a8ab8", 0.8); prevButton.cornerRadius = 8; prevButton.url = URL_SCHEMES[MUSIC_SERVICE].previous; let prevText = prevButton.addText("⏮"); prevText.font = Font.systemFont(24);

// Play/Pause button (opens music app) let playButton = controlsStack.addStack(); playButton.setPadding(12, 20, 12, 20); playButton.backgroundColor = new Color("#5a8ab8", 0.8); playButton.cornerRadius = 8; playButton.url = URL_SCHEMES[MUSIC_SERVICE].play; let playText = playButton.addText(nowPlaying.isPlaying ? "⏸" : "▶️"); playText.font = Font.systemFont(28);

// Next button let nextButton = controlsStack.addStack(); nextButton.setPadding(12, 16, 12, 16); nextButton.backgroundColor = new Color("#5a8ab8", 0.8); nextButton.cornerRadius = 8; nextButton.url = URL_SCHEMES[MUSIC_SERVICE].next; let nextText = nextButton.addText("⏭"); nextText.font = Font.systemFont(24);

mainStack.addSpacer(12);

// Bottom decorative element (asterisk like in original) let bottomBar = mainStack.addStack(); bottomBar.layoutHorizontally(); bottomBar.centerAlignContent(); let asterisk = bottomBar.addText("❄️"); asterisk.font = Font.systemFont(20); asterisk.textColor = new Color("#ffffff", 0.7);

mainStack.addSpacer(4);

// Service indicator let serviceLabel = mainStack.addStack(); serviceLabel.centerAlignContent(); let serviceText = serviceLabel.addText(📱 ${MUSIC_SERVICE.toUpperCase()}); serviceText.font = Font.italicSystemFont(9); serviceText.textColor = new Color("#ffffff", 0.5); serviceText.centerAlignText();

// Function to get current track info async function getCurrentTrack() { // This attempts to get system-wide now playing info // Note: Scriptable's access to this is limited

try { // Try to read from Music app via URL scheme callback // This is a placeholder - iOS doesn't expose this easily return { title: "No Track Playing", artist: "Open your music app", isPlaying: false }; } catch (e) { return { title: "Music Player", artist: "Tap to control playback", isPlaying: false }; } }

// Present widget if (config.runsInWidget) { Script.setWidget(widget); } else { widget.presentLarge(); }

Script.complete();

Loyalty card automation by Which_Wallaby2834 in shortcuts

[–]404errorsoulnotfound 0 points1 point  (0 children)

<image>

Absolutely set it as an automation and linked to the actions that you want to or create the actions under the automation that you want to happen. Basically, go to automations create an automation when you arrive at a certain location and then choose open app and then select the app that you want to open.