SoloCodigo

Asuntos Oficiales => La taberna del BIT => Mensaje iniciado por: geobeid en Miércoles 13 de Septiembre de 2006, 07:04

Título: Para Envidia De Todos Uds
Publicado por: geobeid en Miércoles 13 de Septiembre de 2006, 07:04
QUE BUENA REMERA!!!!!!
ACEPTO OPINIONES
(SI, ESE GORDO CON CARA DE GEEK TERRORISTA SOY YO :P LOL)
Título: Re: Para Envidia De Todos Uds
Publicado por: Geo en Miércoles 13 de Septiembre de 2006, 07:18
¡Está padre!

Lo único que me preocuparía de usarla sería que en la calle se me queden viendo raro, los que entiendan de HTML me van a considerar más que geek, y los demás más que loco :P.

Saludos,
JJ (Geo).
Título: Re: Para Envidia De Todos Uds
Publicado por: ArKaNtOs en Miércoles 13 de Septiembre de 2006, 07:30
Cita de: "Geo"
¡Está padre!

Lo único que me preocuparía de usarla sería que en la calle se me queden viendo raro, los que entiendan de HTML me van a considerar más que geek, y los demás más que loco :P.

Saludos,
JJ (Geo).
nel a mi me late, de hecho estoy empezando a considerar mandar a hacer una asi :P
Título: Re: Para Envidia De Todos Uds
Publicado por: geobeid en Miércoles 13 de Septiembre de 2006, 07:35
YO LA MANDE A HACER. LA ORIGINAL LA VI EN THINKGEEK.COM (MUCHOS MODELOS PARA COPIAR AHI JEJEJEJE)
Título: Re: Para Envidia De Todos Uds
Publicado por: Bicholey en Miércoles 13 de Septiembre de 2006, 08:54
:P  :P  :P


yo la queria pero con algo asi:


_AX=1
asm int 0x33

porque me gustan los ratones...
Título: Re: Para Envidia De Todos Uds
Publicado por: shakka en Miércoles 13 de Septiembre de 2006, 17:01
Yo intente que me srigrafiaran una camiseta negra con el logo de Debian, y nunca lo hicieron  <_<  siempre me dieron excusas, incluso pensaban que se trataban de un simbolo satanico (quizas  :P  )

 :comp:
Título: Re: Para Envidia De Todos Uds
Publicado por: ciber_lep en Jueves 14 de Septiembre de 2006, 18:54
pues para ser sincero,  a mi tambien me parece buena idea eso de la serigrafia, y como dijo alguien los que entiendas del  lenguaje en cuestion le verán el sentido, mas los que no pensarán que somos unos locos.  yo me haria algo asi.
while ( Genero ==_mujer)
{
   find();
}

 :rolleyes:
Título: Re: Para Envidia De Todos Uds
Publicado por: ArKaNtOs en Jueves 14 de Septiembre de 2006, 19:07
Muy buena ciberlep :P
aunque tambien esta buena lo de la firma de geobeid para un estampado no creen?
Título: Re: Para Envidia De Todos Uds
Publicado por: Bicholey en Jueves 14 de Septiembre de 2006, 19:21
:P  :P  :P  :P  :P


Y si nadie nos entiende y si piensan que estamos locos que mas da no me importa yo si la usaria ...

y si pudiera pondria todo esto en un playera:

Código: Text
  1.  
  2. The Evolution of a Programmer
  3. ----------------------------------------------------------------------------
  4.  
  5. High School/Jr.High
  6.  
  7.  10 PRINT &#34;HELLO WORLD&#34;
  8.  20 END
  9.  
  10. First year in College
  11.  
  12.  program Hello(input, output)
  13.    begin
  14.      writeln('Hello World')
  15.    end.
  16.  
  17. Senior year in College
  18.  
  19.  (defun hello
  20.    (print
  21.      (cons 'Hello (list 'World))))
  22.  
  23. New professional
  24.  
  25.  #include
  26.  void main(void)
  27.  {
  28.    char *message[] = {&#34;Hello &#34;, &#34;World&#34;};
  29.    int i;
  30.  
  31.    for(i = 0; i &#60; 2; ++i)
  32.      printf(&#34;%s&#34;, message[i]);
  33.    printf(&#34;&#092;n&#34;);
  34.  }
  35.  
  36. Seasoned professional
  37.  
  38.  #include
  39.  #include
  40.  
  41.  class string
  42.  {
  43.  private:
  44.    int size;
  45.    char *ptr;
  46.  
  47.  public:
  48.    string() : size(0), ptr(new char('&#092;0')) {}
  49.  
  50.    string(const string &s) : size(s.size)
  51.    {
  52.      ptr = new char[size + 1];
  53.      strcpy(ptr, s.ptr);
  54.    }
  55.  
  56.    ~string()
  57.    {
  58.      delete [] ptr;
  59.    }
  60.  
  61.    friend ostream &operator &#60;&#60;(ostream &, const string &);
  62.    string &operator=(const char *);
  63.  };
  64.  
  65.  ostream &operator&#60;&#60;(ostream &stream, const string &s)
  66.  {
  67.    return(stream &#60;&#60; s.ptr);
  68.  }
  69.  
  70.  string &string::operator=(const char *chrs)
  71.  {
  72.    if (this != &chrs)
  73.    {
  74.      delete [] ptr;
  75.     size = strlen(chrs);
  76.      ptr = new char[size + 1];
  77.      strcpy(ptr, chrs);
  78.    }
  79.    return(*this);
  80.  }
  81.  
  82.  int main()
  83.  {
  84.    string str;
  85.  
  86.    str = &#34;Hello World&#34;;
  87.    cout &#60;&#60; str &#60;&#60; endl;
  88.  
  89.    return(0);
  90.  }
  91.  
  92. Master Programmer
  93.  
  94.  [
  95.  uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820)
  96.  ]
  97.  library LHello
  98.  {
  99.      // bring in the master library
  100.      importlib(&#34;actimp.tlb&#34;);
  101.      importlib(&#34;actexp.tlb&#34;);
  102.  
  103.      // bring in my interfaces
  104.      #include &#34;pshlo.idl&#34;
  105.  
  106.      [
  107.      uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820)
  108.      ]
  109.      cotype THello
  110.   {
  111.   interface IHello;
  112.   interface IPersistFile;
  113.   };
  114.  };
  115.  
  116.  [
  117.  exe,
  118.  uuid(2573F890-CFEE-101A-9A9F-00AA00342820)
  119.  ]
  120.  module CHelloLib
  121.  {
  122.  
  123.      // some code related header files
  124.      importheader();
  125.      importheader();
  126.      importheader();
  127.      importheader(&#34;pshlo.h&#34;);
  128.      importheader(&#34;shlo.hxx&#34;);
  129.      importheader(&#34;mycls.hxx&#34;);
  130.  
  131.      // needed typelibs
  132.      importlib(&#34;actimp.tlb&#34;);
  133.      importlib(&#34;actexp.tlb&#34;);
  134.      importlib(&#34;thlo.tlb&#34;);
  135.  
  136.      [
  137.      uuid(2573F891-CFEE-101A-9A9F-00AA00342820),
  138.      aggregatable
  139.      ]
  140.      coclass CHello
  141.   {
  142.   cotype THello;
  143.   };
  144.  };
  145.  
  146.  #include &#34;ipfix.hxx&#34;
  147.  
  148.  extern HANDLE hEvent;
  149.  
  150.  class CHello : public CHelloBase
  151.  {
  152.  public:
  153.      IPFIX(CLSID_CHello);
  154.  
  155.      CHello(IUnknown *pUnk);
  156.      ~CHello();
  157.  
  158.      HRESULT  __stdcall PrintSz(LPWSTR pwszString);
  159.  
  160.  private:
  161.      static int cObjRef;
  162.  };
  163.  
  164.  #include
  165.  #include
  166.  #include
  167.  #include
  168.  #include &#34;thlo.h&#34;
  169.  #include &#34;pshlo.h&#34;
  170.  #include &#34;shlo.hxx&#34;
  171.  #include &#34;mycls.hxx&#34;
  172.  
  173.  int CHello::cObjRef = 0;
  174.  
  175.  CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)
  176.  {
  177.      cObjRef++;
  178.      return;
  179.  }
  180.  
  181.  HRESULT  __stdcall  CHello::PrintSz(LPWSTR pwszString)
  182.  {
  183.      printf(&#34;%ws&#092;n&#34;, pwszString);
  184.      return(ResultFromScode(S_OK));
  185.  }
  186.  
  187.  CHello::~CHello(void)
  188.  {
  189.  
  190.  // when the object count goes to zero, stop the server
  191.  cObjRef--;
  192.  if( cObjRef == 0 )
  193.      PulseEvent(hEvent);
  194.  
  195.  return;
  196.  }
  197.  
  198.  #include
  199.  #include
  200.  #include &#34;pshlo.h&#34;
  201.  #include &#34;shlo.hxx&#34;
  202.  #include &#34;mycls.hxx&#34;
  203.  
  204.  HANDLE hEvent;
  205.  
  206.   int _cdecl main(
  207.  int argc,
  208.  char * argv[]
  209.  ) {
  210.  ULONG ulRef;
  211.  DWORD dwRegistration;
  212.  CHelloCF *pCF = new CHelloCF();
  213.  
  214.  hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
  215.  
  216.  // Initialize the OLE libraries
  217.  CoInitializeEx(NULL, COINIT_MULTITHREADED);
  218.  
  219.  CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER,
  220.      REGCLS_MULTIPLEUSE, &dwRegistration);
  221.  
  222.  // wait on an event to stop
  223.  WaitForSingleObject(hEvent, INFINITE);
  224.  
  225.  // revoke and release the class object
  226.  CoRevokeClassObject(dwRegistration);
  227.  ulRef = pCF-&#62;Release();
  228.  
  229.  // Tell OLE we are going away.
  230.  CoUninitialize();
  231.  
  232.  return(0); }
  233.  
  234.  extern CLSID CLSID_CHello;
  235.  extern UUID LIBID_CHelloLib;
  236.  
  237.  CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */
  238.      0x2573F891,
  239.      0xCFEE,
  240.      0x101A,
  241.      { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
  242.  };
  243.  
  244.  UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */
  245.      0x2573F890,
  246.      0xCFEE,
  247.      0x101A,
  248.      { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
  249.  };
  250.  
  251.  #include
  252.  #include
  253.  #include
  254.  #include
  255.  #include
  256.  #include &#34;pshlo.h&#34;
  257.  #include &#34;shlo.hxx&#34;
  258.  #include &#34;clsid.h&#34;
  259.  
  260.  int _cdecl main(
  261.  int argc,
  262.  char * argv[]
  263.  ) {
  264.  HRESULT  hRslt;
  265.  IHello        *pHello;
  266.  ULONG  ulCnt;
  267.  IMoniker * pmk;
  268.  WCHAR  wcsT[_MAX_PATH];
  269.  WCHAR  wcsPath[2 * _MAX_PATH];
  270.  
  271.  // get object path
  272.  wcsPath[0] = '&#092;0';
  273.  wcsT[0] = '&#092;0';
  274.  if( argc &#62; 1) {
  275.      mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1);
  276.      wcsupr(wcsPath);
  277.      }
  278.  else {
  279.      fprintf(stderr, &#34;Object path must be specified&#092;n&#34;);
  280.      return(1);
  281.      }
  282.  
  283.  // get print string
  284.  if(argc &#62; 2)
  285.      mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1);
  286.  else
  287.      wcscpy(wcsT, L&#34;Hello World&#34;);
  288.  
  289.  printf(&#34;Linking to object %ws&#092;n&#34;, wcsPath);
  290.  printf(&#34;Text String %ws&#092;n&#34;, wcsT);
  291.  
  292.  // Initialize the OLE libraries
  293.  hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED);
  294.  
  295.  if(SUCCEEDED(hRslt)) {
  296.  
  297.      hRslt = CreateFileMoniker(wcsPath, &pmk);
  298.      if(SUCCEEDED(hRslt))
  299.   hRslt = BindMoniker(pmk, 0, IID_IHello, (void **)&pHello);
  300.  
  301.      if(SUCCEEDED(hRslt)) {
  302.  
  303.   // print a string out
  304.   pHello-&#62;PrintSz(wcsT);
  305.  
  306.   Sleep(2000);
  307.   ulCnt = pHello-&#62;Release();
  308.   }
  309.      else
  310.   printf(&#34;Failure to connect, status: %lx&#34;, hRslt);
  311.  
  312.      // Tell OLE we are going away.
  313.      CoUninitialize();
  314.      }
  315.  
  316.  return(0);
  317.  }
  318.  
  319. Apprentice Hacker
  320.  
  321.  #!/usr/local/bin/perl
  322.  &#036;msg=&#34;Hello, world.&#092;n&#34;;
  323.  if (&#036;#ARGV &#62;= 0) {
  324.    while(defined(&#036;arg=shift(@ARGV))) {
  325.      &#036;outfilename = &#036;arg;
  326.      open(FILE, &#34;&#62;&#34; . &#036;outfilename) || die &#34;Can't write &#036;arg: &#036;!&#092;n&#34;;
  327.      print (FILE &#036;msg);
  328.      close(FILE) || die &#34;Can't close &#036;arg: &#036;!&#092;n&#34;;
  329.    }
  330.  } else {
  331.    print (&#036;msg);
  332.  }
  333.  1;
  334.  
  335. Experienced Hacker
  336.  
  337.  #include
  338.  #define S &#34;Hello, World&#092;n&#34;
  339.  main(){exit(printf(S) == strlen(S) ? 0 : 1);}
  340.  
  341. Seasoned Hacker
  342.  
  343.  % cc -o a.out ~/src/misc/hw/hw.c
  344.  % a.out
  345.  
  346. Guru Hacker
  347.  
  348.  % cat
  349.  Hello, world.
  350.  ^D
  351.  
  352. New Manager
  353.  
  354.  10 PRINT &#34;HELLO WORLD&#34;
  355.  20 END
  356.  
  357. Middle Manager
  358.  
  359.  mail -s &#34;Hello, world.&#34; bob@b12
  360.  Bob, could you please write me a program that prints &#34;Hello,
  361. world.&#34;?
  362.  I need it by tomorrow.
  363.  ^D
  364.  
  365. Senior Manager
  366.  
  367.  % zmail jim
  368.  I need a &#34;Hello, world.&#34; program by this afternoon.
  369.  
  370. Chief Executive
  371.  
  372.  % letter
  373.  letter: Command not found.
  374.  % mail
  375.  To: ^X ^F ^C
  376.  % help mail
  377.  help: Command not found.
  378.  % damn!
  379.  !: Event unrecognized
  380.  % logout
  381.  
  382.  
Título: Re: Para Envidia De Todos Uds
Publicado por: ArKaNtOs en Jueves 14 de Septiembre de 2006, 19:24
jejejeje muy bueno, lastima que este muy largo :P
Título: Re: Para Envidia De Todos Uds
Publicado por: shakka en Jueves 14 de Septiembre de 2006, 20:26
Yo quiero una asi  :lol:

No importa que tenga demasiado contenido se pueden colocar las lineas en cualquier punto de la camisa que tenga espacio  :P
Título: Re: Para Envidia De Todos Uds
Publicado por: Bicholey en Jueves 14 de Septiembre de 2006, 20:30
:P  :P  :P

Al menos en la escuela estarian ala moda
Título: Re: Para Envidia De Todos Uds
Publicado por: ArKaNtOs en Jueves 14 de Septiembre de 2006, 20:45
jejejejeje malo para mi que me quedan solo unos meses de vida en la uni :P
Título: Re: Para Envidia De Todos Uds
Publicado por: Soultaker en Viernes 15 de Septiembre de 2006, 03:44
este mensaje deberia ir en la taberna del bit

 :comp:
Título: Re: Para Envidia De Todos Uds
Publicado por: geobeid en Viernes 15 de Septiembre de 2006, 04:16
1- si deveria ir en la taberna del bit pero ahi no todos entenderian lo de la remera (dude en donde postear. perdon moderadores si les parece inapropiado)

2- mi ortografia sucks pero mal-

3- la remera de bicholey sera larga pero se soluciona poniendole una barra de scroll a la remera (lol)

4-la remera con mi firma es la proxima en la lista para hacerla ( luego de una que un amigo quiere hacer para mis clases de programacion II que dice "java sucks" porque nuestro profesor es tan fanatico que ya lo titulamos "CAPITAN JAVA")

5-estaba por escribir algo pero no me lo acuerdo.

bytes guys bytes
Título: Re: Para Envidia De Todos Uds
Publicado por: Masiosare en Viernes 15 de Septiembre de 2006, 07:13
Pues de paso manda hacer una gorra igual con la etiqueta <HEAD> en el frente y </HEAD> en la nuca. Para que así tengas un código completo (Y de de una vez te veas más geek, sin ofender :lol:).

Ah, y también pienso que va en la taberna del bit.
Título: Re: Para Envidia De Todos Uds
Publicado por: ArKaNtOs en Viernes 15 de Septiembre de 2006, 07:32
que buena idea masiosare :) definitivamente lo intentare
Título: Re: Para Envidia De Todos Uds
Publicado por: Geo en Sábado 16 de Septiembre de 2006, 23:38
Cita de: "ArKaNtOs"
Muy buena ciberlep :P
aunque tambien esta buena lo de la firma de geobeid para un estampado no creen?
Cuando se te ocurra una idea ponla en práctica porque seguro a alguien más se le ocurrirá también :P:

http://www.thinkgeek.com/tshirts/frustrations/5aa9/zoom/ (http://www.thinkgeek.com/tshirts/frustrations/5aa9/zoom/)

Saludos,
JJ (Geo).
Título: Re: Para Envidia De Todos Uds
Publicado por: su - en Domingo 17 de Septiembre de 2006, 00:17
Lo gracioso es que cuando 2 en bits no me da 10 personas si no 01  :P
Saben, no recuerdo la pagina pero hay una playera de un codigo de encriptacion, solo lo podian vender a EU y no podias salir a otro pais con esta playera :blink:
<geek> :alien:
Título: Re: Para Envidia De Todos Uds
Publicado por: geobeid en Domingo 17 de Septiembre de 2006, 05:37
01 es 1 ::lol:: 10 es 2
11 es 3 etc... :kicking:
Título: Re: Para Envidia De Todos Uds
Publicado por: x.cyclop en Domingo 17 de Septiembre de 2006, 05:47
A mi me gustaría la de "ingeniero inverso": http://www.thinkgeek.com/tshirts/coder/31fc/ (http://www.thinkgeek.com/tshirts/coder/31fc/)  :D
Título: Re: Para Envidia De Todos Uds
Publicado por: Angel38 en Domingo 17 de Septiembre de 2006, 07:07
Podrian colocarle a sus hijos recien nacidos una que diga algo asi.


If BB < 1año then
        msgbox "Hola Mundo"
endif


Jejejeje, es una sugerencia.