Posted: . At: 11:56 AM. This was 11 months ago. Post ID: 18044
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.

Access Chat GPT-4 for free with an easy-to-use service.

Chat GPT-4 is very powerful, this AI chatbot is an order of magnitude more powerful than GPT-3. To access this amazing AI chatbot, it is possible to use a third-party website to use GPT-4 and not worry about payment. This is limited to 5 messages per day, but this is still very useful to access the AI service. Especially for programming, it seems to be able to generate code much more effectively for simple programming tasks. The ora.ai website allows a user to create AI instances and then provide access to others. This is a great way to have unfettered GPT-4 access without payment, you only require a Google account to sign up to the service and acquire Chat-GPT-4 access. Go to this link: https://ora.sh/openai/gpt4 and sign up using your aforementioned Google account, then access to GPT-4 will be granted. This is very easy to do and is great if you are on the GPT-4 waitlist for months and have had no news either.

This is a simple C program that I created using GPT-4. This prints information about your Linux distribution.

neo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <stdio.h>
#include <stdlib.h>
#include <sys/utsname.h>
 
void get_os_info() {
 
    struct utsname sysinfo;
    uname(&sysinfo);
    printf("OS: %s %s %s\n", sysinfo.sysname, sysinfo.release, sysinfo.version);
}
 
void get_cpu_info() {
 
    FILE *cpuinfo = fopen("/proc/cpuinfo", "r");
    char line[256];
    char *model_name = NULL;
 
    while (fgets(line, sizeof(line), cpuinfo)) {
 
        if (strncmp(line, "model name", 10) == 0) {
            model_name = strchr(line, ':');
            if (model_name) {
                printf("CPU: %s", model_name + 2);
                break;
            }
        }
    }
 
    fclose(cpuinfo);
 
}
 
int main() {
 
    get_os_info();
 
    get_cpu_info();
 
    return 0;
}

This is the output this program will give you.

┗━━━━━━━━━━┓ john@localhost ~/Documents
           ┗━━━━━━━━━━━━━╾ ╍▷ ./neo 
OS: Linux 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 9 17:09:15 UTC 2023
CPU: Intel(R) Core(TM) i5-4670K CPU @ 3.40GHz

So, this is a very neat trick to gain access to such a powerful AI chatbot. I wonder if GPT-5 will ever come out?

Smashing a macbook with a sledge hammer.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.