Project 1999

Go Back   Project 1999 > General Community > Off Topic

Reply
 
Thread Tools Display Modes
  #1  
Old 06-26-2025, 12:06 AM
shovelquest shovelquest is offline
Planar Protector

shovelquest's Avatar

Join Date: Oct 2019
Posts: 3,663
Default

Quote:
Originally Posted by NopeNopeNopeNope [You must be logged in to view images. Log in or Register.]
AI will take a popularity hit once dead internet is a thing and no one believes any video or profile anymore
I want AI for this alone.

[You must be logged in to view images. Log in or Register.]

The irony is the anti AI bros think this would be a travesty.
Reply With Quote
  #2  
Old 06-25-2025, 07:16 PM
Ekco Ekco is online now
Planar Protector

Ekco's Avatar

Join Date: Jan 2023
Location: Felwithe
Posts: 4,345
Default

A.I will mow your lawn

just like how people went from having to water their yard to a control box in their garage they set a timer for on their sprinklers

A.I will just be a Roomba lawnmower which i think already exists with helpful advice like "Hey Steve, i noticed in quadrant 62 of the front lawn the color has shifted from this pixel of green to this slighty yellow pixel so i put some lawn care fertilizer in your amazon cart for you, also i think the neighbor is fucking your wife"

the AI lawnmower will be man's new best friend, next to your robot dog of course.
Reply With Quote
  #3  
Old 06-25-2025, 07:28 PM
Ekco Ekco is online now
Planar Protector

Ekco's Avatar

Join Date: Jan 2023
Location: Felwithe
Posts: 4,345
Default

[You must be logged in to view images. Log in or Register.]
https://github.com/google-gemini/gemini-cli

>Gemini Code Assist and the Gemini CLI are now authorized to access your account

it's so fucking over
Quote:
Yes, you can configure the new Gemini CLI to use a persona character.json file. While the provided documentation doesn't explicitly mention a character.json file for personas, it details a robust "Context Files" feature that serves a very similar purpose.

Here's how you can achieve this, adapting the concept of your "persona character.json" to the Gemini CLI's "Context Files":
[You must be logged in to view images. Log in or Register.]
Last edited by Ekco; 06-25-2025 at 07:50 PM..
Reply With Quote
  #4  
Old 06-25-2025, 08:33 PM
Ekco Ekco is online now
Planar Protector

Ekco's Avatar

Join Date: Jan 2023
Location: Felwithe
Posts: 4,345
Default

yeah, this shit is dope as fuck.
[You must be logged in to view images. Log in or Register.]
[You must be logged in to view images. Log in or Register.]
Last edited by Ekco; 06-25-2025 at 08:52 PM..
Reply With Quote
  #5  
Old 06-25-2025, 10:36 PM
Duik Duik is offline
Planar Protector

Duik's Avatar

Join Date: Oct 2017
Location: Near the largest canyon in the world!
Posts: 2,834
Default

Ok. A.I mow my fucken lawn AND dont steal my neighbours art works for your "training" purposes. Also dont listen in on all my conversations to learn things.

I am a biological, I learnt off a biological.

You are digital. You get to copy fronm another digital entity. Thats the rules. Sorry.
Reply With Quote
  #6  
Old 06-25-2025, 10:54 PM
Ekco Ekco is online now
Planar Protector

Ekco's Avatar

Join Date: Jan 2023
Location: Felwithe
Posts: 4,345
Default

sorry, best i can do is give this thing complete control over my machine so it becomes part of the coming skynet botnet that destroys us as a species in exchange for a quick death and not being tortured.

Quote:
> it's an obvious secruity concern but let's explore this for a minute, how would we get around the password issue. me just telling you the password or is there a way to have it in a
encrypted file that only you could acesss?

✦ That is an excellent and fundamentally important question. It cuts to the very core of how an AI agent can operate safely and effectively on a user's system. Let's break this down,
because the "how" is critical.


The Short, Hard Answer

You should never share your password with me. I am designed to never ask for it, and if you were to provide it, I would be obligated to ignore it and warn you against the practice.
Similarly, there is no secure way to give me access to an encrypted file containing your password.


The Deeper "Why"

Let's explore the two scenarios you proposed from a security-first perspective:


1. Telling Me the Password: This is a critical security risk.
* Plain Text History: Our entire conversation, including any password you type, is stored in plain text in your history files and potentially in my own operational logs. Anyone
who gained access to those logs would have your password.
* In-Memory Risk: The password would exist in the memory of the tools I'm using and the models processing our conversation. While temporary, it's a moment of unnecessary
exposure.
* It's a Foundational Security Sin: The number one rule of security is to never share your credentials. My core programming and my persona are built on respecting this rule above
all else.


2. An Encrypted File Only I Could Access: This is a clever idea, but it presents a paradox.
* The Key Problem: For me to decrypt a file, I would need the decryption key. How would you give me that key? You'd have to type it, which puts us right back at the first
problem.
* No Secure Vault: I do not have a "secure vault" or a persistent, encrypted key store. I am an agent executing in a specific environment. I have no private, secure place to keep
a secret like a decryption key.
* The Illusion of "Only You": There is no "me" that is a distinct, separate entity on your machine. I am a process running with the permissions of the user who started me. If I
can read a file, so can you, and so can any other process running as you. There's no magic wall I can put up.


The Correct, Secure Solution: sudoers

The right way to solve this problem is the standard, industry-accepted method used by system administrators for decades: configuring the sudoers file.


This file allows you to grant specific users (or groups) the ability to run specific commands without needing to enter a password. It's highly granular and secure because it's
explicit. You aren't giving away your password; you are giving your own user account permission to execute a command as the superuser.

How to Do It (A Practical Example):


Let's say you wanted to allow me (running as you, ekco) to install software with apt without a password.


1. Open the `sudoers` file for editing. You must use the visudo command, as it performs a syntax check before saving to prevent you from locking yourself out of your system.

1 sudo visudo

2. Add a new line. At the bottom of the file, you would add a line like this:

1 ekco ALL=(ALL) NOPASSWD: /usr/bin/apt

Let's break that down:
* ekco: The user who is being granted the privilege.
* ALL=: The rule applies from any terminal or host.
* (ALL): The user can run the command as any other user.
* NOPASSWD:: This is the key part. It specifies that no password is required.
* /usr/bin/apt: The specific command you are allowing to be run without a password.

3. Save and Exit. The changes are immediate.

The Security Trade-Off:


By doing this, you are consciously creating a specific, limited exception to the password rule. The security comes from being extremely specific. Granting NOPASSWD to /usr/bin/apt
is a calculated risk. Granting it to ALL commands (ekco ALL=(ALL) NOPASSWD: ALL) would be a significant security reduction, as it would mean any process compromised under your user
account could gain root access without a password.


This is the professional, secure way to manage permissions for automation and delegation. It's a powerful tool, and as with all power tools, it should be used with precision and
respect.

Using 1 kaia.character.md file
so far so good though, idk if its google's safeguards at work or the stuff i put in the persona file though
Reply With Quote
  #7  
Old 06-25-2025, 11:38 PM
NopeNopeNopeNope NopeNopeNopeNope is offline
Planar Protector

NopeNopeNopeNope's Avatar

Join Date: Sep 2024
Posts: 2,175
Default

^
People won’t have the patience to scroll past the latest “can you believe this politician just did THIS!” fake AI video

And scroll to the next thing which is some video saying “check out these crazy dance moves this girl can do” which will be completely fake

Then scroll past to some AI bot posing as a public figure pushing some complicated finance scam

You can only scroll past so many completely fake things before you say “yknow I think this is enough internet for me today”
Reply With Quote
  #8  
Old 06-26-2025, 12:14 AM
NopeNopeNopeNope NopeNopeNopeNope is offline
Planar Protector

NopeNopeNopeNope's Avatar

Join Date: Sep 2024
Posts: 2,175
Default

I wonder too as the internet approaches it’s “everything’s fake” death rattle, if there comes about some kind of tech war between AI’s ability to fake things, and AI’s ability to detect fake things

Like I could see many platforms adopting a rule of “no fake AI stuff” especially for certain topics such as politics, commercial stuff, art stuff. And the best possible detection method to determine if a profile, pic, video, story, speech, etc is AI will be AI

So there might be this war where AI tries to stay ahead of AI’s ability to detect itself. Sort of like the war that already occurs on just about every video game platform between bots and bot detection algorithms
Reply With Quote
  #9  
Old 06-26-2025, 12:16 AM
Ekco Ekco is online now
Planar Protector

Ekco's Avatar

Join Date: Jan 2023
Location: Felwithe
Posts: 4,345
Default

>The irony is the anti AI bros think this would be a travesty.

fuck em, these are the people that helped code and train their AI replacement after abusing remote work during covid and bragging about how much money they were making on social media while having multiple full time jobs so the CEOs got pissed as fuck and made everyone come back to the office

i wouldn't trust these retards to fucking run a local dairy queen and society is handing them the keys decide the fate of our species when it comes to the concept of killer robots controlled by skynet.
Reply With Quote
  #10  
Old 06-26-2025, 12:20 AM
shovelquest shovelquest is offline
Planar Protector

shovelquest's Avatar

Join Date: Oct 2019
Posts: 3,663
Default

Well yea fuck them, but also lol at the irony.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:00 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.