CitarHala por favor que verguenza!
No me cansaré nunca de hacer el ridículo.........
Nah, no te procupes, seguramente no estabas siguiendo el proyecto del canal IRC, así que naturalmente no sabías que bianca es un bot ...
Saludos.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarHala por favor que verguenza!
No me cansaré nunca de hacer el ridículo.........
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
# include <windows.h>
# define MAX_HOSTNAME_LEN MAX_COMPUTERNAME_LENGTH
# define mGetComputerName(x,y) !GetComputerNameExA(ComputerNameDnsHostname,x,y)
#else
# include <unistd.h>
/* Nos guiamos por lo que define el estandar POSIX, otros sistemas Unix/Unix-Like usan HOST_NAME_MAX */
# define MAX_HOSTNAME_LEN 255
# define mGetComputerName(x,y) gethostname(x,y)
#endif
char* getComputerName()
{
char* mName = (char*) malloc(MAX_HOSTNAME_LEN +1);
if (mGetComputerName(mName,MAX_HOSTNAME_LEN) != 0)
{
free(mName);
mName = 0;
}
return mName;
}
int main()
{
printf("Hostname : %s",getComputerName());
return 0;
}
#include <stdio.h>
#include <stdlib.h>
/* que sería en binario -> 0000 0000 0000 0000 0000 0000 0000 0001 */
#define BIT_HI 0x1
/* que sería en binario -> 0000 0000 0000 0000 0000 0000 0000 0010 */
#define BIT_WORLD 0x2
/* que sería en binario -> 0000 0000 0000 0000 0000 0000 0000 0100 */
#define BIT_ELHACKER 0x4
/* los 1 no deben superponerse*/
int bitCheck(int Flags,int Bit){return ((Flags & Bit)== Bit);}
void bitAdd(int Flags,int Bit){Flags|=Bit;}
void bitToggle(int Flags,int Bit){Flags^=Bit;}
void bitUnset(int Flags,int Bit){Flags &= ~Bit;}
void mFuncion(int mMask)
{
if (bitCheck(mMask,BIT_HI)) printf(" Hola");
if (bitCheck(mMask,BIT_WORLD)) printf(" Mundo");
if (bitCheck(mMask,BIT_ELHACKER)) printf(" de elhacker.net");
}
int main()
{
printf("\r\nUsando BIT_HI y BIT_WORLD : ");
mFuncion(BIT_HI|BIT_WORLD);
printf("\r\nUsando BIT_HI, BIT_WORLD y BIT_ELHACKER: ");
mFuncion(BIT_HI|BIT_WORLD|BIT_ELHACKER);
return 0;
}
Citar
Is it safe to work or stand near an active Point to Point wireless LAN antenna?
RF safety is always a concern when working around microwave radiation. The FCC has set safety standards that are meant to guard against potentially harmful RF fields. In a "controlled" environment (where the people near the antenna know of the hazards), the FCC limit is 5.0 mw/cm^2. In an "uncontrolled" environment (where the people near the antenna are unaware), the FCC limit is 1.0 mw/cm^2. These limits are directly related to the EIRP of the antenna system along the main beam. Other frequencies and powers may be calculated at this site: RF safety Here are some other excellent links: ARRL - RF Exposure, ARRL - RF Safety, FDA, WLANA - Health