如何区分 IT 青年的“普通/文艺/二逼”属性?


我来用一幅图区别一下:普通青年 VS 文艺青年 VS 二逼青年
普通青年 VS 文艺青年 VS 二逼青年

Sunny 1.4k

it 人物 程序员
3条评论 | 修改 | 链接
  • 楼澈1甜瓜

    呵呵,有没有些样本数据?比如:随便100个IT青年,然后说明他们谁是三类中的某类或其它,就可以根据他们各自的其它属性做Machine Learning了。

  • gaosboy

    原来文艺的都是玩guitar hero的

  • Amelie

    苦逼青年和问题青年怎么办啊?

10 个回答


  • gaosboy gaosboy 1.5k

    普通程序员这么写HelloWorld

    Class HelloWorld {
       public static void main(String []args) {
          System.out.println("Hello, World!");
       }
    }

    文艺程序员这么写HelloWorld

    UILabel *helloLbl = [[UILabel alloc] initWithFrame:
                           CGRECTMake(0.f, 0.f, 320.f, 20.f)];
    helloLbl.textLabel.text = @"Hello, World.";
    [self.view addSubview:helloLbl];
    [helloLbl release];

    2B程序员这么写HelloWorld
    syntax error.

    gaosboy 1.5k

    2条评论 | 修改 | 链接
    • agassi_yzh

      文艺青年自我感觉好2B啊`~~~~

    • akira

      @gaosboy 为毛是cocoa...

  • Mini_Dragon Mini_Dragon 157

    普通

    <div id="header">

    文艺

    <header>

    2B

    <table id="header">
    1条评论 | 修改 | 链接
    • willerce

      前端界的青年。

  • Amelie Amelie 280

    普通程序员:

    printf("hello world!");

    文艺程序员:

    printf("hello kitty!");

    二逼程序员:

    printf("segmentation fault");
    0条评论 | 修改 | 链接
  • JemyGraw JemyGraw 125

    普通程序员

    Class HelloWorld {
       public static void main(String []args) {
          System.out.println("Hello, World!");
       }
    }

    文艺程序员

    print("Hello World")

    2B

    #include<System>
    class HelloWorld
    {
      static void main()
      {
        printf("Hello World\n");
      }
    }
    5条评论 | 修改 | 链接
  • DouO DouO 56

    普通程序员

    fuck(you)

    文艺程序员

    (fuck you)

    2B

    self.fuck(self)

    好像在哪听过这个典故

    DouO 56

    8条评论 | 修改 | 链接
    • Romoo

      求解释典故(凑够六个字)

    • fen

      看不懂,求解释 >_<

    • 酿泉

      @Romoo @fen 普通,面向过程。 文艺,lisp函数式编程。 2B,面向对象。

    • 显示隐藏的5条评论
  • Sunny Sunny 1.4k

    2B IT青年的属性是这个样子的~~
    亮点很多,自己寻找!

    2BIT青年

    4条评论 | 修改 | 链接
  • ThinkInWC ThinkInWC 1

    Javascript
    普通青年写程序

    function HelloWorld(){
        return "Hello World";
    }
    alert(HelloWorld());

    文艺青年写程序

    alert((function HelloWorld(s){
       return(s);
    })("Hello World"));

    2B青年写程序

    alert("Hello World");

    ThinkInWC 1

    0条评论 | 修改 | 链接
  • mywaiting mywaiting 60

    我也来一个吧,纯粹凑热闹...轻拍...

    请输入图片描述

    0条评论 | 修改 | 链接
  • TooLazyToBreathe TooLazyToBreathe 1

    普通程序员

    print("Hello World")

    文艺程序员

    p "Hello World"

    2B

    Class HelloWorld {
       public static void main(String []args) {
          System.out.println("Hello, World!");
       }
    }
    0条评论 | 修改 | 链接
  • April.L April.L 400

    普通

    #include <stdio.h>
    int main(void)
    {
       printf("Hello, world!\n");
       return 0;
    }

    文艺

    '("Hello World")

    2b

    using System;
    
    public class HelloWorld
    {
        public static int Main(string[] args)
        {
            ConsoleHelper.WriteLine("Hello, World!");
            return 0;
        }
    }
    
    public class ConsoleHelper
    {
    //    public static string ReadLine()
    //    {
    //        //TODO
    //    }
    //
        public static void WriteLine(string s)
        {
            Console.WriteLine(s);
        }
    }

    April.L 400

    2条评论 | 修改 | 链接