Skip to content

Instantly share code, notes, and snippets.

View Rpsl's full-sized avatar
😶‍🌫️
i miss coding

Виктор Диктор Rpsl

😶‍🌫️
i miss coding
View GitHub Profile
@Rpsl
Rpsl / img_optim.sh
Created June 11, 2014 09:28
Image Optimize
for file in `find . -iname "*.jpg" -or -iname "*.png" -or -iname "*.jpeg"`;do
ext=${file##*.}
if [ -n "$ext" ]; then
if [ "$ext" = "jpg" ]; then
echo "optimizing ${file} as jpeg file with jpegtran"
jpegtran -copy none -optimize -perfect -outfile temp_abracadabra_filename.jpg $file
mv -f temp_abracadabra_filename.jpg $file;
fi
if [ "$ext" = "jpeg" ]; then
echo "optimizing ${file} as jpeg file with jpegtran"
(function() {
try {
var $_console$$ = console;
Object.defineProperty(window, "console", {
get: function() {
if ($_console$$._commandLineAPI)
throw "Sorry, for security reasons, the script console is deactivated on netflix.com";
return $_console$$
},
set: function($val$$) {
@Rpsl
Rpsl / terminal.sh
Last active May 25, 2021 19:28
Open iTerm terminal from PhpStorm ( NativeNeighbourhood plugin );
cd ~/Library/Application\ Support/WebIde70/NativeNeighbourhood/classes/org/intellij/plugins/nativeNeighbourhood/icons/macosx
echo '#!/bin/sh
#
# Reveal a directory in the Terminal.
#
# The script takes one argument, the qualified name of a directory.
#
# Note that the script is necessary because osascript before osx 10.4 could not
# pass arguments.
@Rpsl
Rpsl / gist:3689563
Created September 10, 2012 08:03
PHP check zombie process
<?php
//Проверка на зависший процесс
$pid = '/tmp/filestart.pid';
$timeout = 3 * 60 * 60;
if ( is_file( $pid ) )
{
$pidInfo = explode( '|', file_get_contents( $pid ) );
if ( isset( $pidInfo[1] ) AND $pidInfo[1] + $timeout > time() )
{
@Rpsl
Rpsl / twig_str2javascript_helper.php
Created September 3, 2012 09:35
Twig filter "String 2 Javascript"
<?php
/**
* Вывод текста через javascript, чтобы он не индексировался поисковиками.
*
* @param $str
* @return string|bool
*/
function str2javascript( $str = FALSE )
{