Skip to content

Instantly share code, notes, and snippets.

View No3x's full-sized avatar

Christian Zöller No3x

View GitHub Profile
@No3x
No3x / gh-dl-release
Last active June 15, 2023 03:49 — forked from maxim/gh-dl-release
Download assets from private Github releases
#!/usr/bin/env sh
# execute before running the script:
# export GITHUB_TOKEN='<mytoken>'
# usage:
# <org/repo> <filename> <version or 'latest'> <savefilename>
# e.g.
# <org/repo> file.pdf latest latest_version_file.pdf
if [ $# -lt 4 ] ;then
echo "Usage: <org/repo> <filename> <version or 'latest'> <savefilename>"
exit 1
<!-- Activate responsiveness in the "child" page -->
<script src="https://cdn.jsdelivr.net/gh/npr/responsiveiframe/dist/jquery.responsiveiframe.js"></script>
<script>
var ri = responsiveIframe();
ri.allowResponsiveEmbedding();
</script>
<div>The Content</div>
@No3x
No3x / glyphicons.php
Created August 19, 2015 10:56
Bootstrap Glyphicons Markup Helper to generate html
<html>
<head>
<!-- Das neueste kompilierte und minimierte CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optionales Theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Das neueste kompilierte und minimierte JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>