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

    Всего: 4

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

    +8

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    if(user.pass = pass_to_hash(password)){
           return done(null, user);
    }else{
           return done('incorrect password');
    }

    Факир был пьян, и запер дверь, забыв ее закрыть)

    Darth, 15 Декабря 2015

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

    +5

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    function createUUID() {
    	var s = [];
    	var hexDigits = "0123456789abcdef";
    	for (var i = 0; i < 36; i++) {
    		s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
    	}
    	s[14] = "4";
    	s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);
    	s[8] = s[13] = s[18] = s[23] = "-";
    	var uuid = s.join("");
    	return uuid.substring(0, 18);
    }

    Интересно, тот кто это писал сам то понял что написал.. и зачем?

    P.S. взято отсюда - https://github.com/flashphoner/flashphoner_client/blob/wcs_api/client/src/Flashphoner.js

    Darth, 02 Ноября 2015

    Комментарии (11)
  4. JavaScript / Говнокод #18757

    +2

    1. 1
    2. 2
    3. 3
    4. 4
    var date_match=time.split('.');
    date_match=new Date(
    	date_match[1]+'-'+date_match[0]+'-'+/[\w\W]+(\d{4,4})\/(\d{4,4})[\w\W]+/.exec(document.title)[(date_match[1]>6)?1:2]//Gangsta
    );

    Darth, 23 Сентября 2015

    Комментарии (0)
  5. JavaScript / Говнокод #18496

    +143

    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
    if(touch){
    //				e.initUIEvent();
    				try{
    					var where=document.elementFromPoint(lastx,lasty);//Уфф...
    					//var t=obj_to_html(where);
    					//var t=obj_to_html(e.target.tagName||'no target');
    					//t+=obj_to_html(e.target.id||'no id');
    					//t+=obj_to_html(e.target.className||'no class');
    //					var t='';//=obj_to_html('no offsetXY');
    					//t+=obj_to_html(e.screenX||'no sX');
    					//t+=obj_to_html(e.screenY||'no sY');
    //					var touch = e.targetTouches[0];
    					// Place element where the finger is
    	//				t+=obj_to_html(lastx||'no lastX');
    	//				t+=obj_to_html(lasty||'no lastY');
    					//t+=obj_to_html(event.changedTouches[event.changedTouches.length-1].target.id||'no e id');
    					//t+=obj_to_html(event.changedTouches[event.changedTouches.length-1].target.tagName||'no e tag');
    //					t+=obj_to_html(event.changedTouches[event.changedTouches.length-1].target.className||'no e class');
    //					t+=obj_to_html(e.which.tagName||'el from offsetXY have no tag');
    //					t+=obj_to_html(e.which.id||'el from offsetXY have no id');
    //					t+=obj_to_html(document.elementFromPoint(lastx,lasty).id||'el from offsetXY have no id');
    					//t+=obj_to_html(document.elementFromPoint(lastx,lasty).tagName||'el from offsetXY have no tag');
    					//t+=obj_to_html(e.targetTouches||'no TT');
    					//t+=obj_to_html(e.touches||'no TT');
    		//			document.getElementById('debug').innerHTML+='Res:'+t;
    			//		return;
    //					t+=obj_to_html(e.targetTouches||'no touches');
    //					node_log(t);
    					//obj_to_html(e)+obj_to_html(where);
    				}catch(err){
    //					var t=obj_to_html(err);
    //					document.getElementById('debug').innerHTML+='Error:'+t;//obj_to_html(e)+obj_to_html(where);
    					document.getElementById('debug').innerHTML+='Error:'+err.message;
    //					node_log(t);
    					//obj_to_html(e)+obj_to_html(where);
    				}
    				//return;
    //				e = fixEvent(e);
    //				http://192.168.56.1:3000
    			//var where=e.target;//document.elementFromPoint(e.clientX,e.clientY);
    			}else{
    				e = fixEvent(e);
    				var where=document.elementFromPoint(e.clientX,e.clientY);
    			}
    //			document.getElementById('debug').innerHTML=obj_to_html(e)+obj_to_html(where);

    Небольшая история о том,что бы мы делали без console.log.

    Darth, 19 Июля 2015

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