1. Список говнокодов пользователя kgm-rj

    Всего: 11

  2. JavaScript / Говнокод #19577

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    module Bert {
      export class Decoder {
        private b: ArrayBuffer;
        private d: DataView;
        private i: number = 0;
        result: any;
        constructor(packet: ArrayBuffer) {
          this.b = packet;
          this.d = new DataView(packet);
          if (131 == this.d.getUint8(this.i++)) {
            this.result = this.decode();
          } else {
            throw 'Not BERT';
          }
        }
        decode() {
          var tag = this.d.getUint8(this.i++);
          var r: any;
          switch (tag) {
            case 100: r = this.decodeAtom(); break; // latin1 atom
            case 107: r = this.decodeString(); break; // utf8 string
            case 109: r = this.decodeBinary(); break; // utf8 binary string
            case 115: r = this.decodeSmallAtom(); break; // latin1 atom
            case 118: r = this.decodeAtom(); break; // utf8 atom
            case 119: r = this.decodeSmallAtom(); break; // utf8 atom
          }
          return r;
        }
        decodeAtom() {
          var length = this.d.getUint16(this.i);
          this.i += 2;
          var dec = new Utf8.Decoder(this.b.slice(this.i, this.i + length));
          this.i += length;
          return dec.result;
        }
        decodeSmallAtom() {
          var length = this.d.getUint8(this.i++);
          var dec = new Utf8.Decoder(this.b.slice(this.i, this.i + length));
          this.i += length;
          return dec.result;
        }
        decodeString() {
          var length = this.d.getUint16(this.i);
          this.i += 2;
          var dec = new Utf8.Decoder(this.b.slice(this.i, this.i + length));
          this.i += length;
          return dec.result;
        }
        decodeBinary() {
          var length = this.d.getUint32(this.i);
          this.i += 4;
          var dec = new Utf8.Decoder(this.b.slice(this.i, this.i + length));
          this.i += length;
          return dec.result;
        }
        ...
      }
    }

    Перед тем, как избавлюсь от повторяющегося кода в нижней части
    (typescript)

    kgm-rj, 04 Марта 2016

    Комментарии (5)
  3. C# / Говнокод #19306

    +1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    92. 92
    93. 93
    94. 94
    95. 95
    96. 96
    97. 97
    98. 98
    99. 99
    namespace SmalltalkPHP
    {
    	class Model
    	{
    		internal static void CreateClass(string className)
    		{
    			ClassObject = new Class(className);
    		}
    
    		public static Class ClassObject { get; set; }
    		public class Message
    		{
    			public class Arguments
    			{
    				private SortedList arguments = new SortedList();
    				public void Add(String key, String name)
    				{
    					this.arguments.Add(key, name);
    				}
    				public String AsPhp()
    				{
    					String[] sb = new String[arguments.Count];
    					int i = 0;
    					foreach (DictionaryEntry arg in arguments)
    					{
    						if ((String)(arg.Value) != "") sb[i] = "$" + arg.Value;
    						i++;
    					}
    					return String.Join(", ", sb);
    				}
    				public String MakeFunctionName()
    				{
    					String[] sb = new String[arguments.Count];
    					int i = 0;
    					foreach (DictionaryEntry arg in arguments)
    					{
    						if ((String)(arg.Key) != "") sb[i] = (String)arg.Key;
    						i++;
    					}
    					return String.Join("_", sb);
    				}
    			}
    			public class Generic
    			{
    				public virtual string AsPhp()
    				{
    					return "nya";
    				}
    			}
    			public class Unary : Generic
    			{
    				public Unary(String name, Boolean isStatic = false)
    				{
    					this.Name = name;
    					this.Arguments = new Arguments();
    					this.IsStatic = isStatic;
    				}
    				public string Name { get; set; }
    				public Arguments Arguments { get; set; }
    				public Boolean IsStatic { get; set; }
    				public string PhpHeader
    				{
    					get
    					{
    						return String.Format("public {0}function {1}()", IsStatic ? "static " : "", Name);
    					}
    				}
    
    				public override string AsPhp()
    				{
    					return PhpHeader;
    				}
    			}
    			public class Keyword : Generic
    			{
    				public Keyword(Boolean isStatic = false)
    				{
    					this.Arguments = new Arguments();
    					this.IsStatic = isStatic;
    				}
    				public string Name { get { return Arguments.MakeFunctionName(); } }
    				public Arguments Arguments { get; set; }
    				public Boolean IsStatic { get; set; }
    				public string PhpHeader
    				{
    					get
    					{
    						return String.Format("public {0}function {1}({2})", IsStatic ? "static " : "", Name, Arguments.AsPhp());
    					}
    				}
    
    				public override string AsPhp()
    				{
    					return PhpHeader;
    				}
    			}
    		}
    	}
    }

    Писал конвертер Smalltalk -> PHP
    Где-то еще валяется Smalltalk -> Erlang

    kgm-rj, 14 Января 2016

    Комментарии (3)
  4. Python / Говнокод #19301

    −47

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    for x in data:
    	id = int(x['id'])
    	if id >= 1:
    		idx = '00000'
    	if id >= 10:
    		idx = '0000'
    	if id >= 100:
    		idx = '000'
    	if id >= 1000:
    		idx = '00'
    	if id >= 10000:
    		idx = '0'
    	if id >= 100000:
    		idx = ''
    	path = urlparse(x['url']).path
    	ext = os.path.splitext(path)[1]
    	filename = idx + str(id) + '.' + ext

    Даже говнокодом назвать сложно, наверное. Писалось-то для себя по принципу написал-пользуйся.

    kgm-rj, 13 Января 2016

    Комментарии (4)
  5. PHP / Говнокод #19211

    +1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    $product = ORM::factory('product');
    
    // $product-> ... = ...;
    
    $price = ORM::factory('price');
    $price->save();
    $product->price = $price->id;
    $product->save();
    $price->product = $product->id;
    
    // $price-> ... = ...;
    
    $price->save();

    Для гарантии

    kgm-rj, 22 Декабря 2015

    Комментарии (14)
  6. PHP / Говнокод #19176

    +1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    var cloths = {
      <?php foreach ($clothList as $cloth): ?>
        "<?=$cloth->id()?>": {
          "id": <?=$cloth->id()?>,
          "name": "<?=$cloth->name()?>",
          "public_name": "<?=str_replace('"', '\"', $cloth->public_name())?>"
        },
      <?php endforeach; ?>
      "dummy": {}
    };

    kgm-rj, 14 Декабря 2015

    Комментарии (3)
  7. JavaScript / Говнокод #19129

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    jQuery.AdImage = function(props) {
    				li = $('<li>');
    				li.css({ position: 'relative' });
    				li.css('text-align', 'center');
    				img = $('<img src="'+Path.small+props.lamp+props.index+'.jpg" class="'+props.orientation+'" />');
    				img.css('display', 'inline');
    				img.css('height', '180px');
    				img.css('margin', '10px');
    				imga = $('<a>');
    				imga.attr('title', props.title);
    				imga.attr('rel', 'lightbox');
    				imga.attr('href', 'javascript:;');
    				imga.click(function() {
    					$.easybox(Path.large+props.lamp+props.index+'.jpg', props.title, {});
    				});
    				imga.append(img);
    				li.append(imga);
    				div = $('<div>');
    				div.text(props.title);
    				li.append(div);
    				$('.img_group:first').append(li);
    	hidden = $('<input type="hidden" />');
    	hidden.attr('value', props.id);
    				li.append(hidden);
    	togglePic = function() {
    		x = $(this);
    		b = $(this).closest('li');
    		h = b.children(':input');
    		n = h.attr('value')
    		jQuery.ajax('/lamper/delpic/'+n).done(function(data) {
    			obj = jQuery.parseJSON(data);
    			if (obj.status == 'deleted') {
    				b.addClass('hidden');
    				x.text('Восстановить');
    			}
    			if (obj.status == 'restored') {
    				b.removeClass('hidden');
    				x.text('Удалить');
    			}
    		});
    	};
    	btn_del = $('<button>').css('float', 'right');
    	btn_del.text(props.exists ? 'Удалить' : 'Восстановить');
    	//btn_del.css('display', 'none');
    	li.append(btn_del);
    	if (!props.exists) li.addClass('hidden');
    	btn_del.click(togglePic);
    	return li;
    }

    Из старой админки. Управление отображением товара на сайте. Префикс Ad, насколько я помню, сокращение от Admin

    kgm-rj, 03 Декабря 2015

    Комментарии (0)
  8. Куча / Говнокод #19110

    −4

    1. 1
    https://github.com/kagami-ryuuji/kuroneko

    По просьбам пользователей

    kgm-rj, 30 Ноября 2015

    Комментарии (40)
  9. PHP / Говнокод #19071

    +1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    <?php
            $gudir = opendir("../text/$book");
            $guarray = Array();
            while(false != ($gufile = readdir($gudir)))
            {
                    if(strstr($gufile, "gu@"))
                    {
                            $guarray[count($guarray)] = $gufile;
                    }
            }
            closedir($gudir);
            if(count($guarray))
            {
                    rsort($guarray);
                    foreach($guarray as $gucomment)
                    {
                            /*Здесь движок отображения комментариев*/
                            include "../text/$book/$gucomment";
                    }
            }
    ?>

    Я не знаю, что делает этот код. Никаких файлов с символами gu@ в каталогах не осталось. Лет 8 назад с другом книгу писали, решили замутить сайт. Ту книгу мы потом посчитали фигней и забросили. Про БД я тогда и не подозревал. Все хранилось в таких файлах:

    chapter#prae#prae#Предисловие#previous#0 #0#next#1#1
    chapter#1#1#Глава 1.1#previous#prae#prae#next#1#2
    chapter#1#2#Глава 1.2#previous#1#1#next#0#0

    kgm-rj, 23 Ноября 2015

    Комментарии (13)
  10. Си / Говнокод #19036

    −98

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    #include "memory.h"
    #include "core.h"
    #include "start.h"
    
    #include <stdio.h>
    
    int main(int argc, char *argv[]) {
        printf("Halo Virtual Machine version 0.01\n");
        initCore(&proc, ram);
        run(&proc);
        return 0;
    }

    Главное - пафосное название

    kgm-rj, 17 Ноября 2015

    Комментарии (86)
  11. PHP / Говнокод #19031

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    48. 48
    49. 49
    50. 50
    51. 51
    52. 52
    53. 53
    54. 54
    55. 55
    56. 56
    57. 57
    58. 58
    59. 59
    60. 60
    61. 61
    62. 62
    63. 63
    64. 64
    65. 65
    66. 66
    67. 67
    68. 68
    69. 69
    70. 70
    71. 71
    72. 72
    73. 73
    74. 74
    75. 75
    76. 76
    77. 77
    78. 78
    79. 79
    80. 80
    81. 81
    82. 82
    83. 83
    84. 84
    85. 85
    86. 86
    87. 87
    88. 88
    89. 89
    90. 90
    91. 91
    92. 92
    93. 93
    94. 94
    95. 95
    96. 96
    97. 97
    98. 98
    99. 99
    $breadcrumb = array();
    $breadcrumb[0] = new Json();
    $breadcrumb[0]->url = URL::base().'cat';
    $breadcrumb[0]->caption = 'Каталог';
    try {
    	if(isset($_GET['q'])) {
    		$qs = $_GET['q'];
    		$matches = array();
    		$count = preg_match_all("/\d+/", $qs, $matches);
    		if ($count > 1) {
    			$lc = $matches[0][0];
    			$vc = $matches[0][1];
    			list ($totalCount, $thumbnails, $lamps_orm, $formCount) = Imp::getVariants($lc, $vc, $p);
    			list ($form, $formList) = Imp::getForms($lamps_orm[0]->f->latin);
    			$this->template->title = $lamps_orm[0]->cyrillic;
    			$lampName = $lamps_orm[0]->cyrillic;
    			$breadcrumb[1] = new Json();
    			$breadcrumb[1]->url = URL::base().'cat/'.$form->c->latin;
    			$breadcrumb[1]->caption = $form->c->cyrillic;
    			$breadcrumb[2] = new Json();
    			$breadcrumb[2]->url = URL::base().'lamp/'.$form->latin;
    			$breadcrumb[2]->caption = $form->cyrillic;
    			$breadcrumb[3] = new Json();
    			$breadcrumb[3]->url = URL::base().'lamp/search/?q='.$lamps_orm[0]->code;
    			$breadcrumb[3]->caption = $lamps_orm[0]->cyrillic;
    			$breadcrumb[4] = new Json();
    			$breadcrumb[4]->url = NULL;
    			$breadcrumb[4]->caption = $thumbnails[0]->code;
    		} elseif ($count == 1) {
    			$lc = $matches[0][0];
    			list ($totalCount, $thumbnails, $lamps_orm, $formCount) = Imp::getVariants($lc, NULL, $p);
    			list ($form, $formList) = Imp::getForms($lamps_orm[0]->f->latin);
    			$this->template->title = $lamps_orm[0]->cyrillic;
    			$lampName = $lamps_orm[0]->cyrillic;
    			$breadcrumb[1] = new Json();
    			$breadcrumb[1]->url = URL::base().'cat/'.$form->c->latin;
    			$breadcrumb[1]->caption = $form->c->cyrillic;
    			$breadcrumb[2] = new Json();
    			$breadcrumb[2]->url = URL::base().'lamp/'.$form->latin;
    			$breadcrumb[2]->caption = $form->cyrillic;
    			$breadcrumb[3] = new Json();
    			$breadcrumb[3]->url = NULL;
    			$breadcrumb[3]->caption = $lamps_orm[0]->cyrillic;
    		} else {
    			list ($totalCount, $thumbnails, $lamps_orm, $formCount) = Imp::getVariants($qs, NULL, $p);
    			list ($form, $formList) = Imp::getForms($lamps_orm[0]->f->latin);
    			if (count($lamps_orm) > 1) {
    				$this->template->title = $form->cyrillic;
    				$lampName = $form->cyrillic;
    				$breadcrumb[1] = new Json();
    				$breadcrumb[1]->url = URL::base().'cat/'.$form->c->latin;
    				$breadcrumb[1]->caption = $form->c->cyrillic;
    				$breadcrumb[2] = new Json();
    				$breadcrumb[2]->url = NULL;
    				$breadcrumb[2]->caption = $form->cyrillic;
    				if ($formCount > 1) {
    					$breadcrumb = array();
    					$breadcrumb[0] = new Json();
    					$breadcrumb[0]->url = NULL;
    					$breadcrumb[0]->caption = 'Результаты поиска';
    					$this->template->title = 'Результаты поиска по запросу "'.$qs.'"';
    					$lampName = 'Результаты поиска по запросу "'.$qs.'"';
    				}
    			} else {
    				$this->template->title = $lamps_orm[0]->cyrillic;
    				$lampName = $lamps_orm[0]->cyrillic;
    				$breadcrumb[1] = new Json();
    				$breadcrumb[1]->url = URL::base().'cat/'.$form->c->latin;
    				$breadcrumb[1]->caption = $form->c->cyrillic;
    				$breadcrumb[2] = new Json();
    				$breadcrumb[2]->url = URL::base().'lamp/'.$form->latin;
    				$breadcrumb[2]->caption = $form->cyrillic;
    				$breadcrumb[3] = new Json();
    				$breadcrumb[3]->url = NULL;
    				$breadcrumb[3]->caption = $lamps_orm[0]->cyrillic;
    			}
    		}
    		$pagination = Imp::getPagination($totalCount, 16, $p, 'lamp/search/:page/?q='.$qs);
    	} else {
    		list ($form, $formList) = Imp::getForms($f);
    		if (isset($_GET['y'])) {
    			list ($totalCount, $thumbnails, $lamps_orm, $formCount) = Imp::getVariants($form, 'form', $p, array(0, 1), $_GET['y'], $_GET['m'], $_GET['d']);
    			$paginationUrlFormat = 'lamp/'.$f.'/:page/?y='.$_GET['y'].'&m='.$_GET['m'].'&d='.$_GET['d'];
    			$lampName = $form->cyrillic.' <span style="color: #666; font-style: oblique;"><small>Показаны обновления от '.D::_($_GET['y'].'-'.$_GET['m'].'-'.$_GET['d']).'.    <a href="'.URL::base().'lamp/'.$f.'" style="font-weight: normal; font-style: normal;">Показать все варианты ›</a></small></span>';
    		}
    		else {
    			list ($totalCount, $thumbnails, $lamps_orm, $formCount) = Imp::getVariants($form, 'form', $p);
    			$paginationUrlFormat = 'lamp/'.$f.'/:page';
    			$lampName = $form->cyrillic;
    		}
    		$this->template->title = $form->cyrillic;
    		$pagination = Imp::getPagination($totalCount, 16, $p, $paginationUrlFormat);
    		$breadcrumb[1] = new Json();
    		$breadcrumb[1]->url = URL::base().'cat/'.$form->c->latin;
    		$breadcrumb[1]->caption = $form->c->cyrillic;
    		$breadcrumb[2] = new Json();
    		$breadcrumb[2]->url = NULL;
    		$breadcrumb[2]->caption = $form->cyrillic;
    	}

    Кусок контроллера трехлетней давности. В данный момент готовлю это к утилизации. А, когда я это писал, мне казалось, что я крут.
    В то время на хостинге не было json_encode/json_decode, поэтому сделал класс Json. Хотя, использовал его просто так, чтобы не создавать кучу специализированных классов.

    kgm-rj, 16 Ноября 2015

    Комментарии (1)