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
[Desktop Entry] | |
Name=Obsidian | |
Exec=obsidian --no-sandbox %U | |
Terminal=false | |
Type=Application | |
Icon=/opt/obsidian/obsidian.png | |
StartupWMClass=obsidian | |
X-AppImage-Version=1.5.12 | |
Comment=Obsidian | |
MimeType=x-scheme-handler/obsidian; |
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
/* | |
============================================================================ | |
Name : rpncalc.c | |
Author : Gonzalo G. Fernandez | |
Email : [email protected] | |
Institution : Universidad El Bosque | |
Year : 2022 | |
Version : 1.0 | |
Copyright : License MIT | |
Description : Reverse Polish notation (RPN) is a mathematical notation in |
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
/* | |
============================================================================ | |
Name : getmonth.c | |
Author : Gonzalo G. Fernandez | |
Email : [email protected] | |
Institution : Universidad El Bosque | |
Year : 2022 | |
Version : 1.0 | |
Copyright : License MIT | |
Description : Program to obtain month name from the corresponding index. |
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=dwm | |
Comment=Dynamic window manager | |
Exec=dwm | |
Icon=dwm | |
Type=XSession |
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
biber example_doc |
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
# From: https://stackoverflow.com/questions/3173320/text-progress-bar-in-the-console | |
# Print iterations progress | |
def printProgressBar(iteration, total, prefix='', suffix='', | |
decimals=1, length=100, fill='█'): | |
""" | |
Call in a loop to create terminal progress bar | |
@params: | |
iteration - Required : current iteration (Int) | |
total - Required : total iterations (Int) | |
prefix - Optional : prefix string (Str) |
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
/* | |
EXAMPLE FROM THE GNU C LIBRARY | |
http://www.gnu.org/software/libc/manual/html_node/Variadic-Example.html#Variadic-Example | |
*/ | |
#include <stdarg.h> | |
#include <stdio.h> | |
int add_em_up (int count,...){ | |
va_list ap; |