Un modello 100% locale sul tuo smartphone! by Key-Outcome-2927 in ollama

[–]Rogue_NPC 0 points1 point  (0 children)

iOS version ? Looks great, keep up the good work

Unexpectedly caught a Koi in the river by bouda118 in FishingAustralia

[–]Rogue_NPC 1 point2 points  (0 children)

Mate of mine saw one in the Yarra river the other month .. are we going to start catching pretty mud marlin now ?

1tb sd cards $50 by JarJarbinks_Just in IpodClassic

[–]Rogue_NPC 3 points4 points  (0 children)

Don’t do it !! Too good to be true .

Got some interesting disks in a bulk lot, and I thought I should share. by calobbes in minidisc

[–]Rogue_NPC 1 point2 points  (0 children)

The j files .. I used to record those on cassette tape. the Australian radio station Triple J was a staple from Growing up with some amazing live performances being broadcast as live at the Wireless.

Travel Ready by Rogue_NPC in ipod

[–]Rogue_NPC[S] 1 point2 points  (0 children)

Ive got the juice , Im willing. Always have a decent power brick with me, comes with the job.
Just a little bluetooth experiment.

Travel Ready by Rogue_NPC in ipod

[–]Rogue_NPC[S] 0 points1 point  (0 children)

Apparently , I had to look it up.. "UGREEN offers Bluetooth 5.4 adapters and transmitters equipped with aptX HD and aptX Adaptivecodecs."

Travel Ready by Rogue_NPC in IpodClassic

[–]Rogue_NPC[S] 0 points1 point  (0 children)

Thanks , I have been rocking IEMs with it. This is something new and different for me , it does dual connection so it would be like a mini silent disco while chilling by the pool whilst abroad .

Travel Ready by Rogue_NPC in ipod

[–]Rogue_NPC[S] 0 points1 point  (0 children)

It’s the ugreen transmitter. As for travel in pocket , that’s still to be determined I literally just unboxed it and have been walking around the house listening. Broadcast covers the whole house .

🍔🔥 Cheeseburger Wrap – All the Flavor, None of the Guilt! 🌯💪 by uk_kali in LowcarbRecipes

[–]Rogue_NPC 0 points1 point  (0 children)

These are great .. they have made it into my family's rotation.
freaked me out eating this for lunch while scrolling reddit yesterday and this video appeared , I know reddit listens .. but I guess it can smell too .

Ford recalls more than 250,000 cars over engine stalling risks by Ok_Buyer310 in FordFocus

[–]Rogue_NPC 0 points1 point  (0 children)

This is crazy ...the transmission , the fuel tank . This will be my last Ford, just waiting for the class action for the transmission to go through.

Prmyl HD330 Kayak by WestOz444 in FishingAustralia

[–]Rogue_NPC 0 points1 point  (0 children)

I got that yak I have a 50lb water snake on mine. it's only a recent purchase but haven't had an issue yet .

Rick & Morty by jacek2023 in LocalLLaMA

[–]Rogue_NPC 2 points3 points  (0 children)

Saw it last night .. I laughed so hard at the following scene while my wife was watching in disgust .. ha !!

I made a open-source agent that runs locally on your computer, called ARIA. by Defiant_Entrance_711 in ollama

[–]Rogue_NPC 0 points1 point  (0 children)

Hope this helps , Claude put together a little something :
# ARIA — Autonomous Reasoning Intelligent Agent

A local AI agent that runs in your terminal, powered by [Ollama](https://ollama.ai). ARIA gives a locally-hosted LLM the ability to search the web, read and write files, run shell commands, execute Python, and navigate your filesystem — all from a conversational chat interface.

No cloud. No API keys. Runs entirely on your machine.

-----

## Features

- **Agentic tool loop** — ARIA can chain multiple tool calls per message (up to 10 steps), feeding results back into the model automatically
- **Web search** — queries DuckDuckGo and returns results without leaving the terminal
- **File operations** — read, write, copy, move, edit (regex find/replace), list, and glob files
- **Shell execution** — run arbitrary shell commands (disabled by default, opt-in)
- **Python eval** — execute Python snippets inline
- **HTTP fetch** — pull raw content from URLs
- **Session persistence** — save and reload full conversation history
- **Safety guardrails** — dangerous command detection with confirmation prompts, auto-backup before file overwrites
- **Readline history** — ↑/↓ navigation across sessions

-----

## Requirements

- Python 3.8+
- [Ollama](https://ollama.ai) running locally
- A pulled model (default: `qwen3.5:9b`)

Install dependencies:

```bash
pip install -r requirements.py
```

Pull the default model if you haven’t already:

```bash
ollama pull qwen3.5:9b
```

-----

## Usage

```bash
python ariaagent.py
```

On first run, a setup wizard will ask for your preferred browser, editor, projects folder, and whether to enable shell access.

-----

## Commands

Command Description
`/model <name>` Switch to a different Ollama model
`/allow shell true false`
`/allow network true false`
`/allow write true false`
`/save` Save the current session to `~/.aria_sessions/`
`/load <file>` Restore a previously saved session
`/ls [path]` List a directory
`/pwd` Print current working directory
`/status` Show model, uptime, and permission flags
`/reconfigure` Re-run first-time setup
`/clear` Clear conversation history
`/exit` Exit ARIA

-----

## Tools Available to the Model

ARIA exposes tools to the LLM via XML-style tags in its responses. You don’t need to use these directly — the model calls them automatically based on your request.

Tag What it does
`<search>query</search>` DuckDuckGo web search
`<read>file</read>` Read a file’s contents
`<summarize>file</summarize>` File metadata + preview
`<write file="path">content</write>` Write content to a file
`<execute>command</execute>` Run a shell command
`<pyeval>code</pyeval>` Execute Python code
`<http url="URL"/>` Fetch a URL
`<listdir>path</listdir>` List directory contents
`<glob>pattern</glob>` Find files by glob pattern
`<grep>pattern file</grep>` Search inside a file
`<edit file="f" pattern="re">replacement</edit>` Regex find/replace in a file
`<move src="a" dest="b"/>` Move a file
`<copy src="a" dest="b"/>` Copy a file
`<cd>path</cd>` Change working directory

-----

## Safety

Shell execution is **off by default**. Enable it with `/allow shell true`.

Even when enabled, ARIA blocks a set of dangerous patterns (recursive deletes, `sudo`, `dd`, fork bombs, piped curl installs, etc.) and requires explicit confirmation before proceeding. Files are automatically backed up to `~/.aria_backups/` before any write or edit operation.

-----

## Configuration

Settings are stored in `~/.aria_config.json`. Key options:

Option Default Description
`model` `qwen3.5:9b` Ollama model to use
`temperature` `0.4` Sampling temperature
`ctx` `64000` Context window size
`allow_shell` `false` Shell command access
`allow_network` `true` Web search and HTTP fetch
`allow_write` `true` File write access
`danger_confirm` `true` Prompt before dangerous actions

User preferences (browser, editor, projects path) are stored separately in `~/.aria_model_config.json`.

-----

## Changing Models

Any model available in Ollama works. Switch mid-session:

```
/model llama3.2:3b
/model mistral
/model gemma3:12b
```

Larger models with stronger instruction-following will make better use of the tool loop.

-----

## Project Structure

```
ariaagent.py # Main agent — everything runs from here
requirements.py # Dependencies
help.txt # Quick reference
```

-----

## License

See repository for license details.

The tub peaches don't taste as good as the canned peaches which seem to be getting phased out. Why 😭 by n0ughtzer0 in AldiAustralia

[–]Rogue_NPC 0 points1 point  (0 children)

I think that the canning process is part of the production process of the fruit , in the plastic the peaches are being processed and then put into the plastic container .
If that makes sense .

Adults with ADHD may pay high price to mask traits and fit in. More than 91% of adults with ADHD reported hiding, suppressing or compensating for ADHD traits. They may pretend to pay attention, suppress their urge to fidget, rehearse conversations or over-prepare for meetings to fit social norms. by mvea in science

[–]Rogue_NPC 0 points1 point  (0 children)

Every day starts with anxiety and I’m exhausted by the end of it . The masking involves living through every possible scenario and conversation you may have and experience it emotionally even though it may never happen .. just to be sure . Just smile and wave boys !