Rethinking the default class hierarchy: an Object’s tale
Talk
git clone --bare https://github.com/edi33416/dotfiles.git $HOME/.cfg | |
function config { | |
/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME "$@" | |
} | |
mkdir -p .config-backup | |
config checkout | |
if [ $? = 0 ]; then | |
echo "Checked out config."; | |
else | |
echo "Backing up pre-existing dot files."; |
[Unit] | |
Description=Keeps a tunnel to 'fep.grid.pub.ro' open | |
After=network-online.target ssh.service | |
[Service] | |
User=<user-name> | |
# -p [PORT] | |
# -l [user] | |
# -M 0 --> no monitoring | |
# -N Just open the connection and do nothing (not interactive) |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDROmBhHnX4o12oIWRuDUUf4bOWBEJRHjvFfH+SE7fKPo7HJzIskPElgBKBqnpdAYdvJd6patrOmUMd/6GFA0n+aJSeolE/RoqZxHA8dcX57zzeq3dKymRaGOhpXXS1c+j1YiPwsFsSulOdi4WKh5V0+njNqI6bs1buwdIu4qJcgx0PpIcbbUZc8RPPlyiI5EXasa7VtQbH+FUDjrbg+2rtMtvWcuUWCkgytnZZQu7lk1yUiauLQWFJOwMDUEHVGu0oEhysNcGegix+2UbTkSDka9o1/slUYyHQbGivdRRHgcFRkT8MVa0hxsLimju09RgROVio4iNx0KhYgyfmEndJ fawkes@LAPTOP-7SIL4P0D |
In recent years, the D programming language has gained more and more attention and existing C and C++ codebases are starting to incrementally integrate D components.
In order to be able to use D components, a C or C++ interface to them must be provided; in C and C++, this is done through header files. Currently, this process is entirely
Cristian is a very good and independent student.
He delved very quickly into the project, promptly understanding what are it's challenges and goals. He has stepped right away into DPP's codebase, even solving some issues.
He has successfully completed all the tasks of this milestone and he has even started working on some of the tasks of the next milestone.
Cristian has kept up with his good work and continued to do good progress during the 2nd milestone.
He started to incrementally find and fix bugs in dpp
, and he kept the community posted through the forum posts.
We are very pleased with his progress, autonomy and community interaction.
# Download and compile gcc | |
GCC_VERSION=9.3.0 | |
ROOT=~/gcc | |
mkdir -p "${ROOT}/gcc-${GCC_VERSION}" | |
cd "${ROOT}/gcc-${GCC_VERSION}" | |
wget https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.gz | |
tar xvf gcc-${GCC_VERSION}.tar.gz | |
mv gcc-${GCC_VERSION} src-gcc-${GCC_VERSION} |
This gist I write, because I couldn't find step by step instructions | |
how to install and start postgresql locally and not globally in the | |
operating system (which would require sudo). | |
I hope, this will help especially people new to postgresql! | |
#################################### | |
# create conda environment | |
#################################### |
/* | |
* Hook main() using LD_PRELOAD, because why not? | |
* Obviously, this code is not portable. Use at your own risk. | |
* | |
* Compile using 'gcc hax.c -o hax.so -fPIC -shared -ldl' | |
* Then run your program as 'LD_PRELOAD=$PWD/hax.so ./a.out' | |
*/ | |
#define _GNU_SOURCE | |
#include <stdio.h> |