Skip to content

Instantly share code, notes, and snippets.

View justwagle's full-sized avatar
🎯
Focusing

Bibek Wagle justwagle

🎯
Focusing
View GitHub Profile
****************************************************
-- The C compiler identification is GNU 8.2.0
-- The CXX compiler identification is GNU 8.2.0
-- Check for working C compiler: /opt/mn/gcc/8.2.0/bin/gcc
-- Check for working C compiler: /opt/mn/gcc/8.2.0/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /opt/mn/gcc/8.2.0/bin/g++
sudo apt update && sudo apt dist-upgrade
sudo apt remove --purge pantheon-mail pantheon-online-accounts-plugin-fastmail pantheon-online-accounts-plugin-lastfm pantheon-online-accounts-plugin-mail epiphany-browser io.elementary.code switchboard-plug-online-accounts noise
gsettings set io.elementary.files.preferences single-click false
gsettings set io.elementary.files.preferences restore-tabs false
gsettings set io.elementary.terminal.settings remember-tabs false
sudo apt install gedit chromium-browser cmake build-essential libboost-all-dev libhwloc-dev libjemalloc-dev vim libvtk7-dev libyaml-cpp-dev git python-pip gmsh menulibre software-properties-common texlive-full sane sane-utils libsane-extras libgtk-3-dev libglib2.0-dev libgio2.0-cil-dev libwingpanel-2.0-dev meson valac ninja-build libgee-0.8-dev
sudo add-apt-repository ppa:philip.scott/elementary-tweaks && sudo apt install elementary-tweaks
git clone https://github.com/zant95/elementary-dropbox /tmp/elementary-dropbox && bash /tmp/elementary-dropbox/i
****************************************************
-- The C compiler identification is GNU 6.3.0
-- The CXX compiler identification is GNU 6.3.0
-- Check for working C compiler: /opt/mn/gcc/6.3.0/bin/gcc
-- Check for working C compiler: /opt/mn/gcc/6.3.0/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /opt/mn/gcc/6.3.0/bin/g++
@article{huck2015autonomic,
title={An autonomic performance environment for exascale},
author={Huck, Kevin A and Porterfield, Allan and Chaimov, Nick and Kaiser, Hartmut and Malony, Allen D and Sterling, Thomas and Fowler, Rob},
journal={Supercomputing frontiers and innovations},
volume={2},
number={3},
pages={49--66},
year={2015}
}
@justwagle
justwagle / generate-ssh-key.sh
Created August 4, 2018 23:07 — forked from grenade/01-generate-ed25519-ssh-key.sh
Correct file permissions for ssh keys and config.
ssh-keygen -t rsa -b 4096 -N '' -C "rthijssen@gmail.com" -f ~/.ssh/id_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "rthijssen@gmail.com" -f ~/.ssh/github_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "rthijssen@gmail.com" -f ~/.ssh/mozilla_rsa
@justwagle
justwagle / PingPong.cpp
Created January 27, 2017 15:35
Toy Application
//Ping Pong HPX Toy application
#include <hpx/hpx_init.hpp>
#include <hpx/hpx.hpp>
#include <hpx/include/iostreams.hpp>
#include <hpx/include/async.hpp>
#include <hpx/include/serialization.hpp>
#include <vector>
#include <complex>
srun -p ariel -N 1 ./makeintel.sh
-- The CXX compiler identification is Intel 15.0.2.20150121
-- The C compiler identification is Intel 15.0.2.20150121
-- Check for working CXX compiler: /opt/intel/composer_xe_2015.2.164/bin/intel64/icpc
-- Check for working CXX compiler: /opt/intel/composer_xe_2015.2.164/bin/intel64/icpc -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working C compiler: /opt/intel/composer_xe_2015.2.164/bin/intel64/icc
-- Check for working C compiler: /opt/intel/composer_xe_2015.2.164/bin/intel64/icc -- works
-- Detecting C compiler ABI info

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream