This file contains hidden or 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
| % used within a section, just replace "\sub" with "\" and it can be used as sections | |
| % the beginning and the end should be tailored according to the paper/document | |
| %@InProceedings{Jedlitschka2005, | |
| % author = {A. Jedlitschka and D. Pfahl}, | |
| % title = {Reporting guidelines for controlled experiments in software engineering}, | |
| % booktitle = {2005 International Symposium on Empirical Software Engineering, 2005.}, | |
| % year = {2005}, | |
| % month = {Nov}, | |
| % pages = {10 pp.-}, |
This file contains hidden or 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/wp-content/themes/enfold/config-events-calendar/views/single-event.php | |
| +++ b/wp-content/themes/enfold/config-events-calendar/views/single-event.php | |
| @@ -55,7 +55,7 @@ $event_id = get_the_ID(); | |
| <?php echo tribe_event_featured_image($event_id, 'entry_with_sidebar', false); ?> | |
| <?php the_content(); ?> | |
| </div><!-- .tribe-events-single-event-description --> | |
| - <div class='av-single-event-meta-bar av-single-event-meta-bar-mobile'> | |
| + <div class='av-single-event-meta-bar'> | |
| <div class='av-single-event-meta-bar-inner'> | |
| <!-- Event meta --> |
This file contains hidden or 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
| /* https://kriesi.at/support/topic/sticky-header-for-smart-mobile-phone/ */ | |
| /* sticky header on smartphone */ | |
| .html_header_top.html_header_sticky #header { | |
| position: fixed !important; | |
| } | |
| @media only screen and (max-width: 767px) { | |
| .responsive #main { | |
| padding-top: 0px !important; | |
| margin-top:80px !important; /* fix for slide-show on start page, 80 px is max-height of header. */ | |
| } |
This file contains hidden or 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/bash -x | |
| # | |
| # simple nested ubuntu vm testcase | |
| # | |
| # (c) 2014,2015 Chris J Arges <christopherarges@gmail.com> | |
| L1_NAME="nested-L1" | |
| L2_NAME="nested-L2" | |
| L1_MEMORY="1024" | |
| L2_MEMORY="768" |
This file contains hidden or 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
| ffmpeg -i input.mp4 -vcodec h264 -vf scale=1920x1080 -an -pix_fmt yuv420p output.mp4 |
This file contains hidden or 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
| compile_pdf: | |
| image: kmindi/latex-docker | |
| script: | |
| - latexmk -C -cd -outdir="M2" -auxdir="M2" M2/M2.tex | |
| - latexmk -lualatex -pdf -cd -outdir="M2" -auxdir="M2" M2/M2.tex | |
| artifacts: | |
| paths: | |
| - "M2/M2.pdf" | |
| expire_in: 1 week | |
| except: |