Skip to content

Instantly share code, notes, and snippets.

@l4p4
l4p4 / Galaxy Of Tutorial Torrents
Created May 10, 2018 14:18
Ultimate Galaxy Of Tutorial Torrents
=============================
**http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html
**http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html
**http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html
**http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html
**http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html
*http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html
*http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html
@l4p4
l4p4 / scan_ips_analyzing_ports.sh
Created May 6, 2016 03:31
IP Scanning with range and Scanning Operating system on target IP
nmap -sP 192.168.25.1/24 | grep -v 'Starting\|done' | awk "{if (length($1) > 35) print $1}" | grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}' | while read i; do echo -e "\n\t\t[!] Analyzing IP[${i}]"; nmap -O $i; done
#!/usr/bin/env python
from soco import SoCo
import requests
from pprint import pprint
pl = requests.get("http://22tracks.com/api/tracks/20")
playlist = pl.json()
file = playlist[0]['filename']
@l4p4
l4p4 / Brinks.java
Created April 19, 2015 17:02
Usa a classe Robot para fazer printscreens a cada 15s, e a cada 5s mover o mouse aleatóriamente e dar dois clicks.
package brinks;
import java.awt.AWTException;
import java.awt.Dimension;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.event.InputEvent;
import java.awt.image.BufferedImage;
import java.io.File;
@l4p4
l4p4 / ReaderFile.java
Last active August 29, 2015 14:19
ReadFile with JAVA 1.8
package java18;
import java.io.BufferedReader;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.NoSuchFileException;
import java.nio.file.Path;
import java.nio.file.Paths;