Saturday, April 14, 2018

also here
ARCHOIL Portugal | Nano Anticorrosivos - Nano Lubrificantes - Nano Aditivos
welcome back to war! Last call for today. We have here Emulsified Explosive Agent Polyisobutylene Succinimide anhydride , also PIBSA.
Hi, I recently Bought Archoil AR6400 Pro Petrol Cleaner PEA Concentrate for a Citroen C3 1.4 petrol. It would not start without pressing the gas pedal. AR6900-P MAX has…
EBAY.CO.UK

and also
SIFLOC 6290 é um polímero orgânico-sintético usado para o clareamento das águas industriais e águas residuais Usando este floculante garante alta claridade da água…
and here also
Clarifica a água, o floculante agrupa as particulas muito pequenas, que provocam a turvação da água em partículas de maior tamanho e peso, as quais podem ser retiradas com facilidade. Não altera o pH da água. Reduz consideravelmente o…
we can buy it
When properly applied, will effectively coagulate and flocculate a wide variety of suspended solids. F-20 Enviro Clear - 1 Quart. Privacy: We protect your personal…
...back to war...what can i say...this is a water treatment municipality shit ...they use Polyacrylamide emulsion, meaning ammonium nitrate prills, meaning also, explosive emulsion, meaning also, Anfex.
This is 2 components of a big bomby ....you have to smuggle this inside the airplane, or visiting the currais of the parliament...you have there ammonium nitrate in the form of granular ammunition, and liquid urea with fuel. I never catch on my ass, I even don't like sex that much...so my ass is out of the question...2nd, i don't have money for estetic surgery and fake botox implants...so...I just have a neck pain.

Mostrar mais reações

Friday, April 13, 2018

it complicates...and it complicates. and. it. complicates. and it's complicated...so, you to fucking use some asshool card...you need to have this connection to his phone...then you need to install AirDroid...and then finally NFCproxy...

Setup networking

This will let you find your pi locally using it's name, e.g. ping davepi.local
sudo apt-get update
sudo apt-get install avahi-daemon
Set a static ip
sudo nano /etc/network/interfaces
Then do something clever in here. Aftwards, make sure your ports are forwarded in your router, so the pi can be seen from the outside world.

Compile adb

Because you can't download adb for the pi.
Your development server adb will need to be the same version as the pi adb.
sudo apt-get install git build-essential libncurses5-dev libssl-dev
mkdir aosp
cd aosp
git clone https://android.googlesource.com/platform/system/core.git system/core
git clone https://android.googlesource.com/platform/external/zlib.git external/zlib
You might need to checkout a speific brach, tag, or commit here. See this page for branches / tags https://android.googlesource.com/platform/system/core/
cd system/core/adb
wget -O Makefile https://gist.github.com/jsonfry/62d59c9cc0295cc8de4f/raw/405031a85521364f3b04cfac435768d6bbc39408/Makefile
make adb
sudo cp adb /usr/local/bin/

Set correct permissions on adb

sudo chown root:mylovelyusername /usr/local/bin/adb
sudo chmod 4550 /usr/local/bin/adb

SSH Login

mkdir ~/.ssh
nano ~/.ssh/authorized_keys
Run cat ~/.ssh/id_rsa.pub on your development machine / ci server / who ever will be connecting to the pi and copy output into the open file
# Kill and local adb
adb kill-server
# Forward adb port
ssh -f user@example.com -L 5037:localhost:5037 -N
# Make sure remote adb server is running, and wait for it to start
ssh user@example.com "adb start-server"
# List the devices, just for fun!
adb devices
# Uninstall your app
adb devices | tail -n +2 | awk '{print $1}' | xargs -I {} adb -s {} uninstall com.example.app
# Run the tests, but still exit with success so jenkins carries on
./gradlew connectedAndroidTest lintDebug | true
# Grab the exit code of the tests, so we can fail the build later if we need to
export MY_EXIT=${PIPESTATUS[0]}
# Close the ssh tunnel
ps aux | grep "ssh -f" | grep "5037:" | awk '{print $2}' | xargs kill
# Fail the build, if the tests failed
(exit $MY_EXIT)
# Taken from this lovely post http://forum.xda-developers.com/showpost.php?p=55619695&postcount=70
SRCS+= adb.c
SRCS+= adb_client.c
SRCS+= commandline.c
SRCS+= console.c
SRCS+= file_sync_client.c
SRCS+= fdevent.c
SRCS+= get_my_path_linux.c
SRCS+= services.c
SRCS+= sockets.c
SRCS+= transport.c
SRCS+= transport_local.c
SRCS+= transport_usb.c
SRCS+= usb_linux.c
SRCS+= usb_vendors.c
SRCS+= adb_auth_host.c
VPATH+= ../libcutils
SRCS+= socket_inaddr_any_server.c
SRCS+= socket_local_client.c
SRCS+= socket_local_server.c
SRCS+= socket_loopback_client.c
SRCS+= socket_loopback_server.c
SRCS+= socket_network_client.c
SRCS+= load_file.c
VPATH+= ../libzipfile
SRCS+= centraldir.c
SRCS+= zipfile.c
VPATH+= ../../../external/zlib/src
SRCS+= adler32.c
SRCS+= compress.c
SRCS+= crc32.c
SRCS+= deflate.c
SRCS+= infback.c
SRCS+= inffast.c
SRCS+= inflate.c
SRCS+= inftrees.c
SRCS+= trees.c
SRCS+= uncompr.c
SRCS+= zutil.c
CPPFLAGS+= -DADB_HOST=1
CPPFLAGS+= -DHAVE_FORKEXEC=1
CPPFLAGS+= -DHAVE_SYMLINKS
CPPFLAGS+= -DHAVE_TERMIO_H
CPPFLAGS+= -DHAVE_OFF64_T
CPPFLAGS+= -D_GNU_SOURCE
CPPFLAGS+= -D_XOPEN_SOURCE
CPPFLAGS+= -DWORKAROUND_BUG6558362
CPPFLAGS+= -I.
CPPFLAGS+= -I../include
CPPFLAGS+= -I../../../external/zlib
CFLAGS+= -O2 -g -Wall -Wno-unused-parameter
#LDFLAGS= -static
LIBS= -lrt -lpthread -lcrypto -lssl
TOOLCHAIN=
CC= $(TOOLCHAIN)gcc
LD= $(TOOLCHAIN)gcc
OBJS= $(SRCS:.c=.o)
all: adb
adb: $(OBJS)
$(LD) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
clean:
rm -rf $(OBJS)
Connect to adb over a network. Useful for running jenkins in 'the cloud', but testing on real devices locally.  
GIST.GITHUB.COM