This file contains hidden or 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 | |
size="128" | |
for file in *.svg; do | |
convert -background transparent -geometry ${size}x${size} -gravity Center -extent ${size}x${size} ${file} ${file%%.*}_1x1.png | |
done |
This file contains hidden or 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
import { h, Component } from 'preact'; | |
import '@fullcalendar/core/vdom.js'; | |
import { | |
CalendarApi, CalendarDataProvider, | |
CalendarContent, CalendarRoot | |
} from '@fullcalendar/common'; | |
export default class FullCalendar extends Component | |
{ |
This file contains hidden or 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 | |
# One-paste-install: | |
# sh -c "$(curl -fsSL https://gist.githubusercontent.com/Buom01/c8e332bc56e9076c29645af8aa532875/raw/minilibx-linux-installer.sh)" | |
function install_failed() | |
{ | |
echo "Installation failed!" | |
exit 1 | |
} |
This file contains hidden or 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/bash | |
MEDIA_PATH="/run/media/user/" | |
VIDEO_PATH=$(find $MEDIA_PATH -name "VIDEO*") | |
mplayer -nogui $VIDEO_PATH -fs -framedrop -dr -ontop -panscan 1 -stop-xscreensaver -vsync -loop 0 |
This file contains hidden or 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
;... | |
[Generator] | |
Generator=Composable | |
BiomeGen=Constant | |
ConstantBiome=Forest | |
ShapeGen=HeightMap | |
HeightGen=Flat | |
FlatHeight=0 | |
CompositionGen=SameBlock |
This file contains hidden or 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
; ... | |
[Generator] | |
Generator=Composable | |
BiomeGen=Constant | |
ConstantBiome=Forest | |
ShapeGen=HeightMap | |
HeightGen=Flat | |
FlatHeight=64 | |
CompositionGen=Classic |
This file contains hidden or 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
<!--- | |
IMPORTANT NOTE: This gist in now useless since splashscreen are now supported: https://github.com/GoogleChromeLabs/svgomg-twa/pull/23/files#diff-4ad2826e1292d083a4995de57bfaf133 | |
--> | |
<!-- import here your svg logo (in drawables) | |
See https://stackoverflow.com/questions/30923205/easiest-way-to-use-svg-in-android/39266840#39266840 | |
--> |
This file contains hidden or 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
/* | |
Code based on: https://github.com/VeliovGroup/Meteor-Files/wiki/DropBox-Integration/5bc0adcba782f404994ff6a972fdf18ee5fec14a | |
This forked version probably need any verifications | |
*/ | |
import { | |
blog_schema //Using simple-schema | |
} from "../schema/collection.blog.js"; | |
import { |