Torna indietro   Hardware Upgrade Forum > Software > Programmazione

ASUS ROG Swift OLED PG34WCDN recensione: il primo QD-OLED RGB da 360 Hz
ASUS ROG Swift OLED PG34WCDN recensione: il primo QD-OLED RGB da 360 Hz
ASUS ROG Swift OLED PG34WCDN è il primo monitor gaming con pannello QD-OLED Gen 5 a layout RGB Stripe Pixel e 360 Hz su 34 pollici: lo abbiamo misurato con sonde colorimetriche e NVIDIA LDAT. Ecco tutti i dati
Recensione Nothing Phone (4a) Pro: finalmente in alluminio, ma dal design sempre unico
Recensione Nothing Phone (4a) Pro: finalmente in alluminio, ma dal design sempre unico
Nothing Phone (4a) Pro cambia pelle: l'alluminio unibody sostituisce la trasparenza integrale, portando una solidità inedita. Sotto il cofano troviamo uno Snapdragon 7 Gen 4 che spinge forte, mentre il display è quasi da top dig amma. Con un teleobiettivo 3.5x e la Glyph Matrix evoluta, è la prova di maturità di Carl Pei. C'è qualche compromesso, ma a 499EUR la sostanza hardware e la sua unicità lo rendono un buon "flagship killer" in salsa 2026
WoW: Midnight, Blizzard mette il primo, storico mattone per l'housing e molto altro
WoW: Midnight, Blizzard mette il primo, storico mattone per l'housing e molto altro
Con Midnight, Blizzard tenta il colpaccio: il player housing sbarca finalmente su Azeroth insieme a una Quel'Thalas ricostruita da zero. Tra il dramma della famiglia Ventolesto e il nuovo Prey System, ecco com'è la nuova espansione di World of Warcraft
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 09-09-2008, 17:26   #1
Screwface
Junior Member
 
Iscritto dal: Jul 2008
Messaggi: 10
[C] - Ancora problemi IPC...

Ciao a tutti. Avevo già postato qualche giorno fa una questione circa questo programmino che sto tentando di scrivere. E' saltato fuori un altro problema: infatti il programma prende correttamente in ingresso il messaggio, lo invia al secondo processo, che lo invia al terzo il quale lo memorizza su un file apposito. Se mi limito a questo tutto funziona perfettamente. Il problema nasce quando voglio mandare un messaggio di conferma dell'avvenuta operazione indietro al secondo processo: infatti, il primo inserimento di un nuovo messaggio va a buon fine, ma poi il secondo processo, quando si tratta di inserire altri messaggi, cessa di funzionare correttamente e in pratica viene saltato. Io sospetto che ci siano dei problemi con le wait che ho messo, ma ho provato a spostarle ovunque e il programma dà esiti ancor più disastrosi... Se qualcuno potesse darmi un consiglio sarebbe una manna dal cielo


Codice:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/msg.h>
#include <sys/ipc.h>
#include <sys/types.h>

#define MSGSZ 128


main ()
{
FILE *fp1, *fp2, *fp3;
char nomefile[70];
int fs_res;
size_t wr_res;
int remove_res;
int msqid, msqid1, msqid2, msqid3, msqidK;
int status;
int msgflg = IPC_CREAT | 0666;
key_t key;
key_t key1, key2, key3, keyK, keyK2;
size_t buf_length;
int pid_interfaccia;
int pid_upost, pid1, pid2, pid3;
int temp, temp1, temp2, temp3, temp4, temp5;
int risposta;
int i;
int c;
int maxmsgsz;
int msgsz;
struct msgbuf {
	long mtype;
	char mtext[MSGSZ];
	long destinatario;
} *sbuf, *rbuf, *rbuf1, *rbuf2, *rbuf3, *rbufK, *rbufK2;



do
{
printf("\n\t\t1) Inviare un nuovo messaggio");
printf("\n\t\t2) Visualizzare i messaggi memorizzati");
printf("\n\t\t3) Eliminare i messaggi memorizzati");
printf("\n\t\t4) Uscire dal programma");
printf("\n\n\t\tScegliere un'opzione e premere INVIO\n");

sbuf = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));

do 
  {
  scanf("%d", &risposta);
  } while ((risposta < 1) || (risposta > 4));

key = ftok("/home/...../file.tmp", 'a');
if (msqid = msgget(key, msgflg) < 0)
	{
	perror("\nErrore nella msgget\n");
	exit(1);
	}
buf_length = MSGSZ;

switch(risposta) {
	case 1:
	{
	sbuf->mtype = 1;
	printf("\nInserire il numero del destinatario: ");
	scanf("%d",&sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	printf("\nInserire il messaggio (max 128 caratteri): ");
	while ((c = getchar()) != '\n' && c != EOF);
		for (i = 0; ((c = getchar()) != '\n'); i++){
			sbuf->mtext[i] = c;
		}	
	sbuf->mtext[strlen(sbuf->mtext)] = '\0';
	break;
	}

	case 2:
	{
	sbuf->mtype = 2;
	printf("\nInserire il numero dell'archivio: ");
	scanf("%d", &sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	strcpy(sbuf->mtext, "Richiesta visualizzazione archivio ");
	break;
	}

	case 3:
	{
	sbuf->mtype = 3;
	printf("\nInserire il numero dell'archivio da cancellare: ");
	scanf("%d", &sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	strcpy(sbuf->mtext, "Richiesta eliminazione archivio ");
	break;
	}

	case 4:
	{
	exit(0);
	}
} /*fine switch*/


if (msgsnd(msqid, &sbuf, buf_length, IPC_NOWAIT) < 0)
	{
	perror("\nErrore nella msgsnd\n");
	exit(1);
	}



pid_upost = fork();
if (pid_upost == 0)
	{
	rbuf = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
	if (rbuf == NULL) {
		printf("\n\nErrore: impossibile allocare il messaggio");
		exit(1); 
		}

	temp = msgrcv(msqid, &rbuf, MSGSZ, 0, MSG_NOERROR);
	if (temp < 0)
		{
		perror("\nErrore nella msgrcv\n");
		exit(1);
		}

	switch (rbuf->destinatario) {
		case 1:
			{
			key1 = ftok("/home/...../file1.tmp", 'b');
			if (msqid1 = msgget(key1, IPC_CREAT | 0666) < 0)
				{
				perror("\nErrore nella msgget\n");
				exit(-1);
				}
			buf_length = MSGSZ;
			if (msgsnd(msqid1, &rbuf, buf_length, IPC_NOWAIT) < 0)
				{
				perror("\nErrore nella msgsnd\n");
				exit(1);
				}


			pid1 = fork();
			if (pid1 == 0)
				{
				rbuf1 = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
				if (rbuf1 == NULL) {
				printf("\n\nErrore: impossibile allocare il messaggio");
				exit(-1); 
				}
				temp1 = msgrcv(msqid1, &rbuf1, MSGSZ, 0, MSG_NOERROR);
				if (temp1 < 0)
					{
					perror("\nErrore nella msgrcv\n");
					exit(1);
					}


				if ((fp1 = fopen("/home/...../Scrivania/archivio1", "a")) == NULL)				
					{	
					printf("\nErrore nella fopen\n");
					}
				fprintf(fp1, "Destinatario: %d\n", rbuf1->destinatario);				
				fprintf(fp1, "Messaggio: %s\n\n", rbuf1->mtext);
				fclose(fp1);

/*---------------FINO A QUI TUTTO FUNZIONA--------------------------------------------------------------*/
				rbufK = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
				if (rbufK == NULL) {
				printf("\n\nErrore: impossibile allocare il messaggio");
				exit(1); 
				}
				if (rbuf1->mtype == 3)
					{
					if (remove_res = remove("archivio1") != 0)
						{
						strcpy(rbufK->mtext, "Impossibile rimuovere il file");
						}
					else 
						{
						strcpy(rbufK->mtext, "Archivio 1 rimosso");
						}
					}
				else
					{
					strcpy(rbufK->mtext, "Messaggio inserito correttamente");
					}


				keyK = ftok("/home/...../file4.tmp", 'e'); 
				if (msqidK = msgget(keyK, IPC_CREAT | 0666) < 0)
					{
					perror("\nErrore nella msgget\n");
					exit(1);
					}

				if (msgsnd(msqid1, &rbufK, buf_length, IPC_NOWAIT) < 0)
					{
					perror("\nErrore nella msgsnd\n");
					exit(1);
					}
				}
			break;
			} /*fine case 1*/

		case 2:
                      {
                      /*esattamente come sopra, ma scrivo sul file archivio2 e creo un processo pid2 */
			} /*fine case 2 */

		case 3:
			{
                        /*anche qui come sopra */
			} /*fine case 3 */

	}/*fine switch*/


       wait(&status);
	if (msqidK = msgget(keyK, IPC_CREAT | 0666) < 0)
		{
		perror("\nErrore nella msgget\n");
		exit(1);
		}*/

	rbufK2 = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
		if (rbufK2 == NULL) {
			printf("\n\nErrore: impossibile allocare il messaggio");
			exit(1); 
			}

	temp4 = msgrcv(msqid1, &rbufK2, MSGSZ, 0, MSG_NOERROR);
	if (temp4 < 0)
		{
		perror("\nErrore nella msgrcv\n");
		exit(1);
		}
	else
		{
		printf("\nMESSAGGIO %s RICEVUTO \n", rbufK2->mtext);
		}
	}
wait(&status);
}

while (risposta != 4);
}
Screwface è offline   Rispondi citando il messaggio o parte di esso
Old 09-09-2008, 23:32   #2
Screwface
Junior Member
 
Iscritto dal: Jul 2008
Messaggi: 10
Facendo così il tutto sembra funzionare bene, ma al termine dell'inserimento del primo messaggio il ciclo non viene ripetuto: rimane sullo schermo il cursore ma non succede nulla...


Codice:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/msg.h>
#include <sys/ipc.h>
#include <sys/types.h>

#define MSGSZ 128


main ()
{
FILE *fp1, *fp2, *fp3;
char nomefile[70];
int fs_res;
size_t wr_res;

int remove_res;
int msqid, msqid1, msqid2, msqid3, msqidK;
int status;
int msgflg = IPC_CREAT | 0666;
key_t key;
key_t key1, key2, key3, keyK, keyK2;
size_t buf_length;
int pid_interfaccia;
int pid_upost, pid1, pid2, pid3;
int temp, temp1, temp2, temp3, temp4, temp5;
int risposta;
int i;
int c;
int maxmsgsz;
int msgsz;
struct msgbuf {
	long mtype;
	char mtext[MSGSZ];
	long destinatario;
} *sbuf, *rbuf, *rbuf1, *rbuf2, *rbuf3, *rbufK, *rbufK2;


do
{

printf("\n\t\t1) Inviare un nuovo messaggio");
printf("\n\t\t2) Visualizzare i messaggi memorizzati");
printf("\n\t\t3) Eliminare i messaggi memorizzati");
printf("\n\t\t4) Uscire dal programma");
printf("\n\n\t\tScegliere un'opzione e premere INVIO\n");

sbuf = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
do 
  {
  scanf("%d", &risposta);
  } while ((risposta < 1) || (risposta > 4));


key = ftok("/home/...../file.tmp", 'a');
if (msqid = msgget(key, msgflg) < 0)
	{
	perror("\nErrore nella msgget\n");
	exit(-1);
	}
	buf_length = MSGSZ;


switch(risposta) {
	case 1:
	{
	sbuf->mtype = 1;
	printf("\nInserire il numero del destinatario: ");
	scanf("%d",&sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	printf("\nInserire il messaggio (max 128 caratteri): ");
	while ((c = getchar()) != '\n' && c != EOF);
		for (i = 0; ((c = getchar()) != '\n'); i++){
			sbuf->mtext[i] = c;
		}	
	sbuf->mtext[strlen(sbuf->mtext)] = '\0';
	break;
	}


	case 2:
	{
	sbuf->mtype = 2;
	printf("\nInserire il numero dell'archivio: ");
	scanf("%d", &sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	strcpy(sbuf->mtext, "Richiesta visualizzazione archivio ");
	break;
	}

	case 3:
	{
	sbuf->mtype = 3;
	printf("\nInserire il numero dell'archivio da cancellare: ");
	scanf("%d", &sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	strcpy(sbuf->mtext, "Richiesta eliminazione archivio ");
	break;
	}

	case 4:
	{
	exit(0);
	}
} /*fine switch*/


if (msgsnd(msqid, &sbuf, buf_length, IPC_NOWAIT) < 0)
	{
	perror("\nErrore nella msgsnd\n");
	exit(1);
	}


pid_upost = fork();
if (pid_upost == 0)
	{
	rbuf = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
	if (rbuf == NULL) {
		printf("\n\nErrore: impossibile allocare il messaggio");
		exit(1); 
		}

	temp = msgrcv(msqid, &rbuf, MSGSZ, 0, MSG_NOERROR);
	if (temp < 0)
		{
		perror("\nErrore nella msgrcv\n");
		exit(-1);
		}

	switch (rbuf->destinatario) {
		case 1:
			{
			key1 = ftok("/home/...../file1.tmp", 'b');
			if (msqid1 = msgget(key1, IPC_CREAT | 0666) < 0)
				{
				perror("\nErrore nella msgget\n");
				exit(-1);
				}
			buf_length = MSGSZ;
			if (msgsnd(msqid1, &rbuf, buf_length, IPC_NOWAIT) < 0)
				{
				perror("\nErrore nella msgsnd\n");
				exit(-1);
				}

			pid1 = fork();
			if (pid1 == 0)
				{
				rbuf1 = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
				if (rbuf1 == NULL) {
				printf("\n\nErrore: impossibile allocare il messaggio");
				exit(-1); 
				}
				temp1 = msgrcv(msqid1, &rbuf1, MSGSZ, 0, MSG_NOERROR);
				if (temp1 < 0)
					{
					perror("\nErrore nella msgrcv\n");
					exit(-1);
					}

				if ((fp1 = fopen("/home/...../Scrivania/archivio1", "a")) == NULL)				
					{	
					printf("\nErrore nella fopen\n");
					}
				printf("\nAggiorno archivio numero %d", rbuf1->destinatario);
				fprintf(fp1, "Destinatario: %d\n", rbuf1->destinatario);				
				fprintf(fp1, "Messaggio: %s\n\n", rbuf1->mtext);
				fclose(fp1);

				rbufK = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
				if (rbufK == NULL) {
				printf("\n\nErrore: impossibile allocare il messaggio");
				exit(1); 
				}
				rbufK->mtype = 4;
				if (rbuf1->mtype == 3)
					{
					if (remove_res = remove("archivio1") != 0)
						{
						strcpy(rbufK->mtext, "Impossibile rimuovere il file");
						}
					else 
						{
						strcpy(rbufK->mtext, "Archivio 1 rimosso");
						}
					}
				else
					{
					strcpy(rbufK->mtext, "Messaggio inserito correttamente");
					}

				if (msgsnd(msqid1, &rbufK, buf_length, IPC_NOWAIT) < 0)
					{
					perror("\nErrore nella msgsnd\n");
					exit(-1);
					}

				}
			break;
			} /*fine case 1 esterno */

		case 2:
			{
                        /*...................................*/
			} /*fine case 2 esterno */

		case 3:
			{
			/*.......................................*/
			} /*fine case 3 esterno */

	}/*fine switch*/


	waitpid(pid1, &status, 0);	
	rbufK2 = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
		if (rbufK2 == NULL) {
			printf("\n\nErrore: impossibile allocare il messaggio");
			exit(-1); 
			}
	temp4 = msgrcv(msqid1, &rbufK2, MSGSZ, 4, MSG_NOERROR);
	if (temp4 < 0)
		{
		perror("\nErrore nella msgrcv\n");
		exit(-1);
		}
	else
		{
		printf("\nMESSAGGIO %s RICEVUTO \n", rbufK2->mtext);
		}

	}

waitpid(pid_upost, &status, 0);

}
while (risposta != 4);
}
Screwface è offline   Rispondi citando il messaggio o parte di esso
Old 10-09-2008, 20:36   #3
Screwface
Junior Member
 
Iscritto dal: Jul 2008
Messaggi: 10
Così il programma funziona perfettamente, ma come posso fare per mandare un messaggio dal processo pid1 al padre? Se apro una nuova coda poi il processo padre non la vede... Qualche suggerimento?

Codice:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/msg.h>
#include <sys/ipc.h>
#include <sys/types.h>

#define MSGSZ 128


main ()
{
FILE *fp1, *fp2, *fp3;
char nomefile[70];
int fs_res;
size_t wr_res;

int remove_res;
int msqid, msqid1, msqid2, msqid3, msqidK;
int status;
int msgflg = IPC_CREAT | 0666;
key_t key;
key_t key1, key2, key3, keyK, keyK2;
size_t buf_length;
int pid_interfaccia;
int pid_upost, pid1, pid2, pid3;
int temp, temp1, temp2, temp3, temp4, temp5;
int risposta;
int i;
int c;
int maxmsgsz;
int msgsz;
struct msgbuf {
	long mtype;
	char mtext[MSGSZ];
	long destinatario;
} *sbuf, *rbuf, *rbuf1, *rbuf2, *rbuf3, *rbufK, *rbufK2;


do
{

printf("\n\t\t1) Inviare un nuovo messaggio");
printf("\n\t\t2) Visualizzare i messaggi memorizzati");
printf("\n\t\t3) Eliminare i messaggi memorizzati");
printf("\n\t\t4) Uscire dal programma");
printf("\n\n\t\tScegliere un'opzione e premere INVIO\n");

sbuf = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
do 
  {
  scanf("%d", &risposta);
  } while ((risposta < 1) || (risposta > 4));


key = ftok("/home/...../file.tmp", 'a');
if (msqid = msgget(key, msgflg) < 0)
	{
	perror("\nErrore nella msgget\n");
	exit(-1);
	}
	buf_length = MSGSZ;


switch(risposta) {
	case 1:
	{
	sbuf->mtype = 1;
	printf("\nInserire il numero del destinatario: ");
	scanf("%d",&sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	printf("\nInserire il messaggio (max 128 caratteri): ");
	while ((c = getchar()) != '\n' && c != EOF);
		for (i = 0; ((c = getchar()) != '\n'); i++){
			sbuf->mtext[i] = c;
		}	
	sbuf->mtext[strlen(sbuf->mtext)] = '\0';
	break;
	}


	case 2:
	{
	sbuf->mtype = 2;
	printf("\nInserire il numero dell'archivio: ");
	scanf("%d", &sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	strcpy(sbuf->mtext, "Richiesta visualizzazione archivio ");
	break;
	}

	case 3:
	{
	sbuf->mtype = 3;
	printf("\nInserire il numero dell'archivio da cancellare: ");
	scanf("%d", &sbuf->destinatario);
	if ((sbuf->destinatario < 1) || (sbuf->destinatario > 3))
		{
		printf("\nErrore: inserire un numero compreso fra 1 e 3\n");
		exit(-1);			
		}
	strcpy(sbuf->mtext, "Richiesta eliminazione archivio ");
	break;
	}

	case 4:
	{
	exit(0);
	}
} /*fine switch*/


if (msgsnd(msqid, &sbuf, buf_length, IPC_NOWAIT) < 0)
	{
	perror("\nErrore nella msgsnd\n");
	exit(1);
	}


pid_upost = fork();
if (pid_upost == 0)
	{
	rbuf = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
	if (rbuf == NULL) {
		printf("\n\nErrore: impossibile allocare il messaggio");
		exit(1); 
		}

	temp = msgrcv(msqid, &rbuf, MSGSZ, 0, MSG_NOERROR);
	if (temp < 0)
		{
		perror("\nErrore nella msgrcv\n");
		exit(-1);
		}

	switch (rbuf->destinatario) {
		case 1:
			{
			key1 = ftok("/home/...../file1.tmp", 'b');
			if (msqid1 = msgget(key1, IPC_CREAT | 0666) < 0)
				{
				perror("\nErrore nella msgget\n");
				exit(-1);
				}
			buf_length = MSGSZ;
			if (msgsnd(msqid1, &rbuf, buf_length, IPC_NOWAIT) < 0)
				{
				perror("\nErrore nella msgsnd\n");
				exit(-1);
				}

			pid1 = fork();
			if (pid1 == 0)
				{
				rbuf1 = (struct msgbuf*)malloc((unsigned)(sizeof(struct msgbuf) - sizeof sbuf->mtext + 128));
				if (rbuf1 == NULL) {
				printf("\n\nErrore: impossibile allocare il messaggio");
				exit(-1); 
				}
				temp1 = msgrcv(msqid1, &rbuf1, MSGSZ, 0, MSG_NOERROR);
				if (temp1 < 0)
					{
					perror("\nErrore nella msgrcv\n");
					exit(-1);
					}

				if ((fp1 = fopen("/home/...../Scrivania/archivio1", "a")) == NULL)				
					{	
					printf("\nErrore nella fopen\n");
					}
				printf("\nAggiorno archivio numero %d", rbuf1->destinatario);
				fprintf(fp1, "Destinatario: %d\n", rbuf1->destinatario);				
				fprintf(fp1, "Messaggio: %s\n\n", rbuf1->mtext);
			     fclose(fp1);


				}
			break;
			} /*fine case 1 */

		case 2:
			{
                        /*...................................*/
			} /*fine case 2 */

		case 3:
			{
			/*.......................................*/
			} /*fine case 3  */

	}/*fine switch*/



}
while (risposta != 4);
}
Screwface è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


ASUS ROG Swift OLED PG34WCDN recensione: il primo QD-OLED RGB da 360 Hz ASUS ROG Swift OLED PG34WCDN recensione: il prim...
Recensione Nothing Phone (4a) Pro: finalmente in alluminio, ma dal design sempre unico Recensione Nothing Phone (4a) Pro: finalmente in...
WoW: Midnight, Blizzard mette il primo, storico mattone per l'housing e molto altro WoW: Midnight, Blizzard mette il primo, storico ...
Ecovacs Goat O1200 LiDAR Pro: la prova del robot tagliaerba con tagliabordi integrato Ecovacs Goat O1200 LiDAR Pro: la prova del robot...
Recensione Samsung Galaxy S26+: sfida l'Ultra, ma ha senso di esistere? Recensione Samsung Galaxy S26+: sfida l'Ultra, m...
PC più cari in arrivo: il boom de...
Tesla potrebbe realizzare un SUV elettri...
Secondo Elon Musk FSD è più...
Anche Cloudflare fissa il 2029 per la si...
Hacker sfruttano da mesi un bug segreto ...
ASUSTOR Lockerstor 24R Pro Gen2: 24 bay ...
Rigetti supera la soglia dei 100 qubit: ...
eFootball raggiunge il miliardo di downl...
Come provare OpenClaw facilmente grazie ...
Microsoft conferma: questo glitch dell'o...
Toyota bZ7: una berlina da oltre 5 metri...
Artemis II, le prime foto del lato nasco...
Sempre più pubblicità su YouTube: arriva...
Polestar fa +80% in Italia e tocca quota...
Il tuo Mac smette di connettersi a Inter...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 06:51.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Served by www3v