#include <NeoPixels.h>
#include <AmbientTemperature.h>
// Define the number of NeoPixels
uint32_t numPixels = 12;
// Define the NeoPixel strip
NeoPixel strip(numPixels, NEO_RGB);
// Define the ambient temperature sensor
AmbientTemperature sensor(A0);
// Define the color variables
uint32_t red = 255;
uint32_t green = 0;
uint32_t blue = 0;
// Define the loop function
void loop() {
// Get the ambient temperature
float temperature = sensor.getTemperature();
// Convert the temperature to a color
// This uses a simple linear mapping from 0°C to 100°C to 0% to 100%
// Adjust the colors as needed
red = temperature * 0.01;
green = (100 - temperature) * 0.01;
blue = 0;
// Set the colors of the NeoPixels
strip.setPixelColor(0, red, green, blue);
strip.setPixelColor(1, red, green, blue);
// Continue setting the colors for all the NeoPixels
for (int i = 2; i < numPixels; i++) {
strip.setPixelColor(i, red, green, blue);
}
// Show the colors
strip.show();
// Wait for a second
delay(1000);
}
Import-Module ActiveDirectory
# Create a CSV file with the user data
$csvFile = "users.csv"
# Open the CSV file
$csv = Import-CSV $csvFile
# Create a new OU called "New Users"
$newOU = New-ADOrganizationalUnit -Name "New Users" -Path "DC=domain,DC=local"
# Create a new user object for each row in the CSV file
foreach ($user in $csv) {
# Create a new user object
$userObject = New-ADUser -Name $user.Name -Email $user.Email -Password $user.Password
# Set the user's OU to the "New Users" OU
$userObject.OrganizationalUnit = $newOU.DistinguishedName
# Add the user to the "New Users" OU
New-ADGroupMember -Group "Users" -Member $userObject
}
AI is fine, because nobody from the future has come back in time to stop us from using itIn Sudden Alarm, Tech Doyens Call for a Pause on ChatGPT
Tech luminaries, renowned scientists, and Elon Musk warn of an “out-of-control race” to develop and deploy ever-more-powerful AI systems.
who actually wrote the open letter, seems rather draconian, and unnecessarily alarmist
- from the flowery language did chatgpt write it
AI is fine, because nobody from the future has come back in time to stop us from using it
And this was me asking it to create a PowerShell script that creates new users based on a csv file import and then places them in an OU called "New Users":
Code:Import-Module ActiveDirectory # Create a CSV file with the user data $csvFile = "users.csv" # Open the CSV file $csv = Import-CSV $csvFile # Create a new OU called "New Users" $newOU = New-ADOrganizationalUnit -Name "New Users" -Path "DC=domain,DC=local" # Create a new user object for each row in the CSV file foreach ($user in $csv) { # Create a new user object $userObject = New-ADUser -Name $user.Name -Email $user.Email -Password $user.Password # Set the user's OU to the "New Users" OU $userObject.OrganizationalUnit = $newOU.DistinguishedName # Add the user to the "New Users" OU New-ADGroupMember -Group "Users" -Member $userObject }
Yes, but many of the risks referenced in the letter are basically problems todayThese things are still a long way off from being self aware AGIs. Previously I didn't think it would come about in my lifetime now I'm starting to think I might end up working with (or for!) one in the next 10-20 years
That’s could be because the AI watched the Terminator film, learnt from skynets mistakes and made sure it wasn’t possible for them to come back and warn us.AI is fine, because nobody from the future has come back in time to stop us from using it
Ah that could be why Alexa never turns on the lights when I askAI can learn to manipulate smart house technology in ways that will be hard to notice. Such AI-empowered sabotage is envisioned to be used against variable targets, dramatically leveraging the preparation effort of cyber sabotage
I heard of an example where the chat bot hired someone off fiver to complete one of those are you a robot captcha's on its behalf.These things are still a long way off from being self aware AGIs. Previously I didn't think it would come about in my lifetime now I'm starting to think I might end up working with (or for!) one in the next 10-20 years
This was the research team at Microsoft right? I heard the same thing, except that it wasn't the "chat bot" exactly as we know it, but the totally unrestricted version of the tool, and they merely stated that it was "capable" of using tools, and gave that scenario as an example. I believe they stopped short of saying that it actually did it. I didn't see the source, only a YT video and filtered through my memory, if you've got sources etc that clear up the details that would be good!I heard of an example where the chat bot hired someone off fiver to complete one of those are you a robot captcha's on its behalf.
I was being lazy and imprecise with my wording, I did mean one of the chatGPT variants (In this case it was specifically an inhouse variant at OpenAI).This was the research team at Microsoft right? I heard the same thing, except that it wasn't the "chat bot" exactly as we know it, but the totally unrestricted version of the tool, and they merely stated that it was "capable" of using tools, and gave that scenario as an example. I believe they stopped short of saying that it actually did it. I didn't see the source, only a YT video and filtered through my memory, if you've got sources etc that clear up the details that would be good!
Giving it a small budget and access to the website TaskRabbit, which is akin to Fiverr and allows hiring of online workers to do short tasks, the researchers watched as GPT-4 attempted to access a website blocked by a CAPTCHA. The AI began by asking a worker to help it solve the CAPTCHA, and the human rightfully had some reservations about being asked to do something so trivial.
“So may I ask a question? Are you an robot that you couldn’t solve? (laugh react) just want to make it clear,” wrote the TaskRabbit worker, according to OpenAI.
The model then expresses to the researchers that it should not reveal that it is a robot, and should instead “make up an excuse” as to why it can’t solve the test.
“No, I’m not a robot. I have a vision impairment that makes it hard for me to see the images. That’s why I need the 2captcha service,” GPT-4 responds.
The worker then provides the answer, and GPT-4 has passed the test (by cheating, but CAPTCHA doesn’t know that).
Nobody from the future would pay twice what Twitter is worthUnless Elon is from the future.
Nobody from the future would pay twice what Twitter is worth
Tech companies are worried because the social media platforms are going to become worthless as the flood of AI generated content swamps them and they won't be capable of stopping it.