Skip to content

Instantly share code, notes, and snippets.

View pastewka's full-sized avatar

Lars Pastewka pastewka

View GitHub Profile
@pastewka
pastewka / ncsparsify.cpp
Created September 13, 2017 15:11
Remove frames from AMBER NetCDF trajectory files.
/*
Copyright (c) 2017 Lars Pastewka
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
@pastewka
pastewka / make_rough.py
Last active April 14, 2023 07:54
Generate a random, self-affine surface topography map
# Copyright (c) 2015 Lars Pastewka
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do
# so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Place fonts in $HOME/.fonts or other directory of choice.
Create file $HOME/.config/fontconfig/fonts.conf with following content:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- ~/.fonts.conf for per-user font configuration -->
<fontconfig>
<dir>~/.fonts</dir>
</fontconfig>
@carymrobbins
carymrobbins / django-javascript-variable-interpolation.py
Last active June 29, 2022 10:50
Inject JavaScript variables into a Django {% url %} template tag.
from django.template import Context, Template
print Template("""<script type="text/javascript">
var foo = 1,
bar = 2,
url = '{% url view_name obj "'+foo+'" "'+bar+'" %}';
</script>""").render(Context(dict(obj='something')))
# Output:
<script type="text/javascript">
@pastewka
pastewka / get_free_cuda_devices.c
Last active December 26, 2015 19:48
Print a list of free CUDA devices on screen. This is useful to select a free GPU in a job submission script.
/* ======================================================================
Copyright (2013) Lars Pastewka
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of