Source: Tailor · Build amazing page layouts using WordPress for free!
Category: Uncategorized
The Definitive Platform for Modern Apps | DC/OS
Based on the production proven Apache Mesos, combining years of experience, and best practices of building and running modern applications in production.
The Definitive Platform for Modern Apps | DC/OS
Based on the production proven Apache Mesos, combining years of experience, and best practices of building and running modern applications in production.
networking – How do I make a connection private on Windows Server 2012 R2 – Server Fault
ngrok – secure introspectable tunnels to localhost
ngrok secure introspectable tunnels to localhost webhook development tool and debugging tool
How to reset mysql root password
service mysql stop mysqld_safe --skip-grant-tables & mysql --user=root mysql update user set Password=PASSWORD('new-password') where user='root'; flush privileges; exit; service mysql start
Create Office365 DNS Template for ISPConfig – ashok JP’s Blog
This is a guide prepared with latest version of ISPConfig as on Dec 2014 version 3.0.5.4.p5 ISPConfig comes with option to define DNS Templates. Any user can select a template…
Source: Create Office365 DNS Template for ISPConfig – ashok JP’s Blog
VACUUM returning disk space to operating system
Delete multi-line text from a file using sed
sed '/--#else--/,/--#endif--/{//!d}' test.xml
this will delete the lines between else
and endif
if you want to delete else
and endif
as well use this:
sed '/--#else--/,/--#endif--/d' test.xml
in the case you mentioned in the comments try this:
sed -n '/--#else--/,/--#endif--/p' test.xml
-n
is dont print by default and /p
does the print while /!d
does the delete
Convert mp3 to mp4 using ffmpeg
ffmpeg -f lavfi -i color=s=160x120:r=2 -i audio.mp3 -c:v libx264 -preset ultrafast -c:a copy -shortest output.mp4