Skip to content

Instantly share code, notes, and snippets.

We can't make this file beautiful and searchable because it's too large.
fmlkdvfdnaxqgd.net,Cryptolocker
sqvlaujjnyxnff.biz,Cryptolocker
gebjdmneajvtws.ru,Cryptolocker
xumqlbbtyahqte.org,Cryptolocker
ywrdkshglmmfdn.co.uk,Cryptolocker
ymcplrjuljftbd.info,Cryptolocker
aohckjphxvkiby.com,Cryptolocker
adqhxtbobkvoft.net,Cryptolocker
bfvtwlhbnwbdok.biz,Cryptolocker
buggxkjpnttrfl.ru,Cryptolocker
We can't make this file beautiful and searchable because it's too large.
google.com,Alexa
microsoft.com,Alexa
www.google.com,Alexa
safebrowsing.googleapis.com,Alexa
facebook.com,Alexa
doubleclick.net,Alexa
g.doubleclick.net,Alexa
clients4.google.com,Alexa
windowsupdate.com,Alexa
ctldl.windowsupdate.com,Alexa
@Avasz
Avasz / run.sh
Created December 31, 2016 01:23
#!/bin/sh
#Script for searx
sed -i "s|base_url : False|base_url : $BASE_URL|g" searx/settings.yml
sed -i "s/image_proxy : False/image_proxy : $IMAGE_PROXY/g" searx/settings.yml
sed -i "s/ultrasecretkey/`openssl rand -hex 16`/g" searx/settings.yml
python searx/webapp.py
#!/bin/bash
echo "deb http://www.deb-multimedia.org jessie main non-free" >> /etc/apt/sources.list
apt-get update
apt-get install deb-multimedia-keyring
apt-get update
apt-get install -y motion ffmpeg v4l-utils python-pip python-dev curl libssl-dev libcurl4-openssl-dev libjpeg-dev
pip install motioneye
mkdir -p /etc/motioneye
cp /usr/local/share/motioneye/extra/motioneye.conf.sample /etc/motioneye/motioneye.conf
mkdir -p /var/lib/motioneye

#Tips on installing Debian (8, Jessie) in apu2c4

apu2c4 has only serial output, so it maybe a bit different installing not only debian but any Operating Systems in it. Following steps can help a lot in installing Debian in apu2c4.

  1. First prepare some serial console like minicom or picocom. (I use picocom). Connect the serial out of APU to your laptop using Serial-to-USB cables.
  2. Perform the following command as root:
picocom -b 115200 /dev/ttyUSB0
column1 column2
3 4
5 6
7 8
9 10
11 12
13 14
15 16
17 18
#!/bin/bash
#This script will run on every boot in odroid.
#The purpose of this script is to start firefox after boot in kiosk mode with predefined URL.
#This script will wait for 30 seconds before starting firefox so that the network can get stable.
#If you want to start firefox as soon as odroid boots and remove the 30 seconds delay then just comment or remove the
#line which says `sleep 30`
#Prepared by: Avash Mulmi
#If any help is required please contact <avashmulmi@gmail.com>
#Change the URL inside the quotation in the following line as per requirement
@Avasz
Avasz / interfaces
Last active May 23, 2016 23:11
odroid c1+ interfaces file
# interfaces(5) file used by ifup(8) and ifdown(8)
# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d
auto lo
iface lo inet loopback
#auto load dongle
#The connection will be brought up at boot,
# you can start it with ifup gprs or stop it with ifdown gprs.
@Avasz
Avasz / switcher.sh
Created May 20, 2016 09:01
Switch to CDMA if Ethernet is down and switch back to Ethernet once it is up. Tolerance time = 1minutes
#!/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
dir=/home/odroid/Switcher/
#Check for interface
INTERFACE=`head -n1 $dir/switcher.log | awk '{print $3}'`
eth_iface=`ls /sys/class/net | grep eth`
CDMA_NUM=`sed '2q;d' $dir/switcher.log | awk '{print $3}'`
hit=`cat $dir/hit`
new_hit=$(($hit+1))
xrandr --newmode 1280x1024_60.00
cvt 1280 1024
xrandr --newmode "1280x1024_60.00" 109.00 1280 1368 1496 1712 1024 1027 1034 1063 -hsync +vsync
xrandr --addmode VGA1 1280x1024_60.00
xrandr --output VGA1 --mode 1280x1024_60.00