Simple directed layout to pack different-sized circles as close as possible
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://github.com/mt3/dotfiles/blob/master/.gitignore_global | |
# To add this file as a global ignore list - git config --global core.excludesfile ~/.gitignore_global | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so |
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
Niektórzy niemądrzy ludzie | |
Pyski maczają w wódzie | |
Ja się w wódce nie lubuję ! | |
Co innego proponuję. | |
Cóż to może być, spytacie ? | |
Czy o piwie mówisz bracie ? | |
Ani piwo, ani wódka | |
Która jest jak szczurza trutka ! |
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
var l = document.querySelectorAll("li.session ul.thumbnail"); | |
var f = function(e){ console.log(e.querySelector('.thumbnail-title').innerText+"\t"+e.querySelector('.thumbnail-id').innerText.split(' ')[1]);} | |
for(var i=0; i<l.length; i++){ f(l[i]) } |
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
00D1E5 | |
0111E | |
0115 | |
011ED | |
011F1E1D | |
011F1E1D5 | |
015E | |
01AF | |
01D1E |
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
license: gpl-3.0 | |
height: 960 | |
border: no |
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
#!/usr/bin/env bash | |
# set -x | |
convert(){ | |
avconvert --source $1 --output ${1/\.mp4/-$2.m4v} --preset $2 | |
} | |
presets=( | |
"Preset640x480" | |
"Preset960x540" |
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
#!/bin/sh | |
# Fix on Xcode problem with git-lfs | |
# Simply skip the git-lfs check if there is GIT_EXEC_PATH /Applications/Xcode.app/Contents/Developer/usr/libexec/git-core | |
if [ -z "$GIT_EXEC_PATH" ] | |
then | |
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.\n"; exit 2; } | |
git lfs post-checkout "$@" | |
else |
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
/* | |
Add this to the page: | |
<divid="breakpoint-debug"><spanclass="xs">xs</span><spanclass="sm">sm</span><spanclass="md">md</span><spanclass="lg">lg</span><spanclass="xl">xl</span><spanclass="xxl">xxl</span></div> | |
Sizes: https://getbootstrap.com/docs/5.0/layout/breakpoints/ | |
*/ | |
#breakpoint-debug { | |
// display:none; | |
position: absolute; | |
width: 100vw; |
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
#include <raylib.h> | |
int main(void) { | |
const int screenWidth = 800; | |
const int screenHeight = 450; | |
SetConfigFlags(FLAG_VSYNC_HINT); | |
SetConfigFlags(FLAG_WINDOW_RESIZABLE); | |
SetConfigFlags(FLAG_WINDOW_HIGHDPI); |
OlderNewer