This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
def parse_file(path): | |
parent = [None] | |
prevobj = None | |
prevlev = -1 | |
objs = [] | |
with open(path) as f: | |
for line in f: | |
""" fill object infos """ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
By Chloé Tigre Rouge | |
Public Domain or MIT license at the option of the user | |
*/ | |
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("www.facebook.com") { | |
/* font sizes for main content area */ | |
body, #contentArea p, div[role="main"] p |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<div class="sticky"> | |
<div class="sticky-inside"> | |
<p>My text goes here hey hey hey !<br /> | |
Whatever you may say</p> | |
<div class="sticky-bottom"> | |
</div> | |
</div><!-- inside --> | |
</div><!-- sticky --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('_PS_ROOT_DIR_', '/path/to/prestashop/root'); | |
define('_PS_ADMIN_DIR_', _PS_ROOT_DIR_.'admin_folder'); | |
require(_PS_ADMIN_DIR_.'/../config/config.inc.php'); | |
require(_PS_ADMIN_DIR_.'/functions.php'); | |
class Employee2 extends EmployeeCore | |
{ | |
public function isSuperAdmin() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery('.row-same-height').each(function(i, j) | |
{ | |
maxHeight = 0; | |
jQuery(j).children('[class*="col-"]').each(function(k, l) | |
{ | |
if (jQuery(l).height() > maxHeight) { | |
maxHeight = jQuery(l).height(); | |
} | |
}); | |
jQuery(j).children('[class*="col-"]').each(function(k, l) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
prestashop-lib — © 2015 Chloé Tigre Rouge <[email protected]> | |
This is licensed under the same terms as Prestashop. | |
PrestaShop library to create products, categories and all sorts of things | |
programmatically by passing arrays around | |
It needs a bootstrapped PrestaShop framework (you can get one by defining | |
_PS_ROOT_DIR_ and by a | |
require_once(_PS_ROOT_DIR_.'config/config.inc.php'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
prestashop-lib — © 2015 Chloé Tigre Rouge <[email protected]> | |
This is licensed under the same terms as Prestashop. | |
PrestaShop library to create products, categories and all sorts of things | |
programmatically by passing arrays around | |
It needs a bootstrapped PrestaShop framework (you can get one by defining | |
_PS_ROOT_DIR_ and by a | |
require_once(_PS_ROOT_DIR_.'config/config.inc.php'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A: | |
'0': | |
'0': | |
'0': {code: A000, label: Medicine & dentistry} | |
'1': | |
'0': | |
'0': {code: A100, label: Pre-clinical medicine} | |
'2': | |
'0': | |
'0': {code: A200, label: Pre-clinical dentistry} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AGRICOLA | http://agricola.nal.usda.gov/ | |
---|---|---|
AGRIS: Agricultural database | http://agris.fao.org/agris-search/index.do | |
Analytical sciences digital library | http://home.asdlib.org/ | |
Anthropological Index Online | https://aio.therai.org.uk/ | |
Arachne | http://arachne.uni-koeln.de/drupal/ | |
Arnetminer | https://aminer.org/ | |
arXiv | http://arxiv.org/ | |
Astrophysics Data System | http://adswww.harvard.edu/ | |
AULIMP: Air University Library's Index to Military Periodicals | http://www.dtic.mil/dtic/aulimp/ | |
BASE: Bielefeld Academic Search Engine | http://www.base-search.net/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# KEYBOARD CONFIGURATION FILE | |
# Consult the keyboard(5) manual page. | |
XKBMODEL="pc105" | |
XKBLAYOUT="us,us" | |
XKBVARIANT="dvorak-intl,dvorak" | |
XKBOPTIONS="grp:caps_toggle" | |
BACKSPACE="guess" |
OlderNewer