Skip to content

Instantly share code, notes, and snippets.

We can make this file beautiful and searchable if this error is corrected: It looks like row 7 should actually have 15 columns, instead of 8. in line 6.
undefined,filename,type,title,contributor1,contributor2,contributor3,contributor4,contributor5,contributor6,contributor7,contributor8,contributor9,contributor10,year
1,"Cara16b","Paper","Marea: a Semi-automatic Decision Support System for Breaking Dependency Cycles","Caracciolo, A.","Aga, B.","Lungu, M.","Nierstrasz, O.",,,,,,,"2016"
2,"Cara16c","Paper","Evaluating an Architecture Conformance Monitoring Solution","Caracciolo, A.","Lungu, M.","Truffer, O.","Levitin, K.","Nierstrasz, O.",,,,,,"2016"
3,"Nier16a-death-of-oop","Paper","The Death of Object-Oriented Programming","Nierstrasz, O.",,,,,,,,,,"2016"
4,"Osma16a","Paper","Tracking Null Checks in Open-Source Java Systems","Osman, H.","Leuenberger, M.","Lungu, M.","Nierstrasz, O.",,,,,,,"2016"
5,"Osma16b","Paper","Against the Mainstream in Bug Prediction","Osman, H.",,,,,,,,,,"2016"
6,"Schn16a","Paper","CuboidMatrix: Exploring Dynamic Structural Connections in Software Components using Space-Time Cube","Schneider, T.","Tymchuk, Y.","Salgado, R.","Bergel, A."
@selinerdominik
selinerdominik / Shop.php
Created August 16, 2013 15:09
In order to locally test prestashop with phpunit, change line 313 in classes/shop/shop.php from $id_shop = ""; to $id_shop = 1; and include /config/config.inc.php into your test
$id_shop = 1;
@selinerdominik
selinerdominik / product_attribute_list
Last active December 20, 2015 19:28
Get All Prestashop product_attribute combinations with their ean13 code and supplier_reference
SELECT ppl.name, group_concat(al.name SEPARATOR ',') as attributes, pa.ean13, pa.supplier_reference
FROM ps_product AS pp, ps_product_lang AS ppl, ps_attribute_lang AS al, ps_product_attribute AS pa, ps_product_attribute_combination AS pac
WHERE pp.id_product = ppl.id_product
AND pp.id_product = pa.id_product
AND pa.id_product_attribute = pac.id_product_attribute
AND pac.id_attribute = al.id_attribute
AND ppl.id_lang =4
AND al.id_lang =4
AND id_supplier =5
GROUP BY pa.id_product_attribute