Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Reverend Jim Based on the proliferation of AI generated content, and the age-old rule of garbage in, garbage out, what will be the result of AI models being trained on ever increasing amounts of content generated by other AI platforms? Will we get into a negative feedback loop where the output will become so polluted with bad input that it will be effectively … Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by jwenting Even worse: the junk being deliberately fed to AIs is already at the stage where the results are useless BUT those results are blindly believed by many people BECAUSE they're generated by AI and therefore supposedly automatically correct! Think Google's disastrous launch of their image generator which would under no condition generate Caucasian … ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Johannes C. …entities from the equation. ## #12) Should we trust state signatories to abide by such strictures? ## **Categorically not**. … shadows, but these will primarily be confined to state actors and not individuals, gangs, or corporations. …material are never in the hands of the non-state sector. Undoubtedly, the corporations you mention will,… What is your biggest fear with the current A.I. revolution? Community Center by jkon …) us all. I believe that this current A.I. frenzy state , is a hype but one that would not go away… OpenAI GPT-4o vs Meta Llama 3 for Zero Shot Text Classifiation Programming Computer Science by usmanmalik57 …/744700) on May 13, 2024, which is touted as the state-of-the-art proprietary model for various NLP benchmarks. As… Image Analysis Using OpenAI GPT-4o Model Programming Computer Science by usmanmalik57 …, image, and speech. As per OpenAI, GPT-4o is the state-of-the-art and best-performing large language model. Among… Re: Google is promoting reddit in an arrogant way Programming Web Development by jkon … after all. But of course I believe that we must state of what is happening right now. I haven't seen… reddit in my search results I could make me query state that , but of course I would have to mention reddit… Re: Generate Stunning AI Images for Free Using Diffusion Models Programming Computer Science by rproffitt Read this today: > A.I. made me believe in the concept of the human soul by showing me what art looks like without it. Re: What is your biggest fear with the current A.I. revolution? Community Center by Reverend Jim My biggest fear is an expansion of misinformation to the extent that we will not be able to trust that anything we see, hear, or read will have any basis in reality. Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by mx_983 …-04-03 5:05:10 0 [Note] WSREP: STATE EXCHANGE: sent state msg: b108e94c-f134-11ee-ac13-321fb976ab0c 2024-04-03…2024-04-03 5:05:10 0 [Note] WSREP: STATE EXCHANGE: got state msg: b108e94c-f134-11ee-ac13-321fb976ab0c from 1 (web02…2024-04-03 5:05:10 0 [Note] WSREP: STATE EXCHANGE: got state msg: b108e94c-f134-11ee-ac13-321fb976ab0c from 2 (web01… Generate Stunning AI Images for Free Using Diffusion Models Programming Computer Science by usmanmalik57 … to generate stunning AI-generated images from text inputs using state-of-the-art diffusion models from [Hugging Face](https://huggingface… accelerate safetensors ``` ## Generating AI Images Using Base Diffusion Models Most state-of-the-art text-to-image diffusion models consist of… Summarizing YouTube Video Transcriptions Using Distil Whisper and LLM Programming Computer Science by usmanmalik57 … V3 model](https://huggingface.co/openai/whisper-large-v3), a state-of-the-art speech-to-text model. You will use… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by pritaeas > However, as a jQuery user, what is the difference between DOMContentLoaded and the jQuery ready fn? No difference really, although some sources state that the ready function might fire "a little" later (because it is wrapper code). Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … I figured I'd start from a known (to me) state. Trying to reset to factory failed and I could no… Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt From https://stackoverflow.com/questions/78269177/mariadb10-11-6-galera-single-failed-node-startup-stuck-failure where they call it out as a bug waiting for a fix. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt The problem is still unresolved. Until the bug is fixed. Be sure to tell all that you don't accept this as a bug and want a fix now. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt I wonder if the last other stable releases show this issue? "Stable release: 11.3.2 / 16 February 2024; 46 days ago" or the most recent release of MariaDB 10.11: MariaDB 10.11.7 Stable (GA) That is, many fixes don't get released for out of date versions. The new version is how many fixes are issued. Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by toneewa I wonder how these IP addresses are issued. Static, dynamic, or is DHCP on? It reminds me of the time a network printer that stopped working, after the power went out. Other devices connected to the network after it's setup. Then, after rebooting, it got a different IP, but the host still thought it was on the old one. I've seen the same thing when… Re: State Design Pattern - How to? Programming Software Development by rubberman state -> event -> transition -> new state. This is the short version of how FSM (Finite State Machines) work. The system starts in some state, gets an event, evaluates what state to transition to, possibly doing some work during the transition. State machine using the state pattern Programming Software Development by spicyrelish … State4; } }; class State4 : public State { State * a() { return new State2; } State * b() { return new State3; } }; class StateMachine { public: State * pS; State():pS(new State1){}; void… State Design - Base class undefined Programming Software Development by Tycellent …virtual void off(Machine *m); }; #endif // !State.h State.cpp #include "State.h" void on(Machine *m) { cout…#include <iostream> using namespace std; class OFF: public State { public: OFF() { cout << " OFF-ctor… state abbreviations Programming Software Development by rzhaley …; Console.WriteLine("Please enter one of the following state abbreviations"); Console.WriteLine("NC, AL, GA…; break; } } static void toNC() { // assign variables string state = "North Carolina"; Console.WriteLine("NC is {0… Re: State Design - Base class undefined Programming Software Development by Tycellent …void Machine::off() { current->off(this); } class ON: public State { public: ON() { cout << " ON-ctor…"; }; void off(Machine *m); }; class OFF: public State { public: OFF() { cout << " OFF-… Re: State Design - Base class undefined Programming Software Development by rubberman You have defined State after Machine, but each has a dependency on the other. This is how you can deal with that: // Forward declaration of the State class. class State; class Machine { // Don't put 'class' in front of State here. State *current; . . . }; Re: state abbreviations Programming Software Development by rzhaley …using System.Linq; using System.Text; namespace week0701 { class State { static void Main(string[] args) { string abr; …quot;); abr = Console.ReadLine(); Console.WriteLine(); Console.WriteLine("State is {0}", abr); Console.ReadLine(); } public string … State Warns Employees of Malware -- from Newspaper Ads Digital Media Digital Marketing Search Engine Strategies by slfisher …record. In July, the cyber security coordinators in the state of Idaho took the unusual step of recommending that … risk seems to have returned to a normal, cautious state. I no longer recommend blocking or avoiding the Idaho… paper said in a note on the January incident. State employees were also encouraged to implement ad-blocking software, … State Design Pattern - How to? Programming Software Development by HuePig … void Main(); void Adventure(); void About(); void Quit; } class State{ public: virtual void main(Game *g){ //in main; } … game functions.. Game::Adventure(), Game::Quit(). class Adventure: public State{ public: render(); quit(Game *g); main(Game *g… Re: state abbreviations Programming Software Development by DdoubleD … writing out the abbreviation. Try: [code=csharp] Console.WriteLine("State is {0}", FromAbbreviation(abr)); [/code] In addition, you are… Re: state abbreviations Programming Software Development by rzhaley oh ok i understand the upper lower case now oops. i tried calling the method but it gives me an error so thats why i had that deleted. it says Error 1 An object reference is required for the non-static field, method, or property 'State.FromAbbreviation(string)' State Governments Don't Have Uniform Email Policies Hardware and Software Networking by slfisher …do a public records search on email messages from your state legislator? Chances are, you won't be able to,… Even states that do have an email retention policy in state government -- and many of them don't -- often don…/viewer/file2967.pdf"]accompanying list[/URL] of such state policies as existed looked woefully outdated even then, with …