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
# Links | |
# - http://ubuntuforums.org/showthread.php?t=1832456 | |
# - https://foldingforum.org/viewtopic.php?f=16&t=25075 | |
Section "ServerLayout" | |
Identifier "Layout0" | |
Screen 0 "Screen0" 0 0 | |
Screen 1 "Screen1" 1280 0 | |
Screen 2 "Screen2" 1280 0 | |
Screen 3 "Screen3" 1280 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
#!/bin/bash | |
echo "<h1>BACKGROUND TEST</h1>" > test.html | |
for f in *.JPG; do echo "<p>$f</p><div style=\"background-image: url($f); height: 500px;\"></div>" >> test.html; 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
~/Téléchargements/ffmpeg-2.4.3-64bit-static/ffmpeg -f image2 -pattern_type glob -i "*.JPG" -r 60 -vcodec libx264 timelapse.mp4 |
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
Search: \r\n(.+)\r\n\1S | |
Replace with: \r\n\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
[Desktop Entry] | |
Name=Blender | |
Comment=To place in /usr/share/applications/ or $HOME/.local/share/applications/ | |
Exec=/PATH/TO/BLENDER/FOLDER/blender %U | |
Terminal=false | |
Type=Application | |
Encoding=UTF-8 | |
Icon=/PATH/TO/BLENDER/FOLDER/icons/scalable/apps/blender.svg | |
StartupNotify=true | |
StartupWMClass=Blender |
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
<?php | |
// Must be run as root | |
$arp_scan = shell_exec('arp-scan --interface=eth0 --localnet'); | |
$arp_scan = explode("\n", $arp_scan); | |
$matches; | |
foreach($arp_scan as $scan) { |
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
<link href="../topeka-elements/category-icons.html" rel="import"> | |
<link href="../core-icon/core-icon.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; |
NewerOlder