Saturday, October 7, 2017

THRID BRILLIANT IDEA IS

And if they are using finger prints access ...then open the box and erase it on the module refer

SECOND BRILLIANT DISCOUVER IS


search for the blue diy and unlock the code access...did u like it?

First brilliant discouver is...use a nokia and live display the codes memorized

Display Live Arduino Sensor Readings on a Nokia 5110 LCD

http://www.instructables.com/id/Arduinonokia-lcd-data-display-EASY-VERSION/

Ok. security alarm ( digit code, old news from the 50ths until today) work now with an output of a router, that's the movement sensor features included (and encryption) what I think is, we can connect the midi flash generator and reader and converter its on the video out put of the alarm, therefore chosing a streaming url (where its based our animation sequence)

Real Time Messaging Protocol with Flowplayer

RTMP is a protocol developed by Adobe Systems for streaming audio, video and data over the Internet, between a Flash player and a server.
The above example uses the RTMP streaming plugin to stream a video from an Wowza Media Server hosted by MaxCDN. Try seeking to any part of the timeline.
The following RTMP servers are the most popular and they are all supported by this streaming plugin:

Features

This plugin offers the following features:
  • Random seeking to any part of the timeline at any time.
  • Ability to combine a group of clips into one gapless stream.
  • Starting playback in the middle of the clip's timeline
  • Stopping before the clip file actually ends without downloading the whole file.
  • Playback of live streams.
  • Streaming MP3 audio with random seeking.

THEN YOU NEED A CONVERTER OF SWF FILES TO SVG ONE'S

Description

Given the file names of a sequence of SVG files, this function could convert them into a Flash file (.swf).

Friday, October 6, 2017

THEREFORE ....we will use ONLINE LaTeX equation editor , it supports svg files

You can use CodeCogs LaTeX. It supports .svg format too.
  1. Enter equation.
  2. Choose .svg as format and options.
  3. Download image.

so...gang! we have a table with 6 possibilities, with scrolling 0-9 numbers, meaning next sequency after the all rolling down,(the first combination is 0.0.0.0.0.0) will be 0.0.0.0.0.1 , therefore we will have 10 possibilities in 1 second! How then, to make an analogic "phone call" to the alarm with 10 possibilities a second? what kind of potentimeter, or cable, or converter of integers to frequencies ...? because we program according to hardware. we already have the web design code

Jesus Christ! I'm almost there! then...what's the problem about the DSL connection over the modem of the provider?

wikiHow to Turn Off MAC Filtering


MAC (Multimedia Access Control) addresses are unique sets of codes assigned to electronic devices that identify the devices on a network. MAC filters work by either allowing or denying only specific MAC addresses. MAC filters are a great security measure; however, if your network needs to be open to public or guests, or you're adding and removing devices often, then you should consider turning off MAC filtering.

Already have CAT 6 cables and a wired connection between the DVD and the modem, with internet setupt network ok? now I'm going to download trough an "media" device usb :) this software

Proxifier allows network applications that do not support working through proxy servers to operate through a SOCKS or HTTPS proxy and chains.
  • Work with any Internet client through a proxy.
  • Improve network performance or ensure privacy.
  • Flexible rule system.
  • Easy yet powerful UI with live data.
  • Up to date with new technologies.


STEP 2


Elsa David and download trought the DVD web connection, from the usb
Responder4 min
Gerir



Description

rEFInd is a fork of the rEFIt boot manager. Like rEFIt, rEFInd can auto-detect your installed EFI boot loaders and it presents a pretty GUI menu of boot options. rEFInd goes beyond rEFIt in that rEFInd better handles systems with many boot loaders, gives better control over the boot loader search process, and provides the ability for users to define their own boot loader entries.

hum NSA - National Security Agency ....can I really...really....give a loss of 112 million a year to camarada Isabel dos Santos-Angola ? with one modem, one router, one virtual server, and one hub? (what I need really ...guys..is another power source upgrade...and so..my Mom won't pay that...you have to bypass)

 DIVISION OF THE PROBLEM 1. 

How to remove the (52 at present!!!) "tunnel adapter Local Area connection" shown in IPCONFIG ALL?

At this time, please try the following steps and see how it works:

1.    Click Start, type cmd in the Start Search box, right click the cmd.exe, and then click Run as Administrator.
2.    In the Command Prompt, type netsh int isa set state disabled, and press Enter.



DIVISON OF THE PROBLEM 2.

RETRIES=3
while [ -z ${WANIP} ]; do
# PPPoE devices are on ppp0, all others are on vlan1 or eth1; we try all
for DEV in "eth1" "ppp0" "vlan1"; do
WANIP=`ip -4 addr show dev ${DEV} | grep inet | awk '{print $2}' | cut -d/ -f1`
if [ -n "$WANIP" ]; then
logger -st HE_tunnel "External IP ${WANIP} found on device ${DEV}"
break 2
fi
done
let RETRIES-=1
if [ "$RETRIES" -gt 0 ]; then
logger -st HE_tunnel "No external IP found; trying again in 10 secs..."
sleep 10
else
logger -st HE_tunnel "No external IP found after 30 seconds; quitting"
exit 1
fi
done

echo "External IP:" $WANIP >> $STARTUP_SCRIPT_LOG_FILE
if [ -n $WANIP ]
then
echo "configuring tunnel" >> $STARTUP_SCRIPT_LOG_FILE
# The following commands are straight from HE's website
modprobe ipv6
ip tunnel add he-ipv6 mode sit remote $SERVER_IP4_ADDR local $WANIP ttl 255
ip link set he-ipv6 up
ip addr add $CLIENT_IPV6_ADDR/64 dev he-ipv6
ip route add ::/0 dev he-ipv6
ip -f inet6 addr
TEMP_ADDR=`echo $ROUTED_64_ADDR'1'`
# These commands aren't on HE's website, but they're necessary for the tunnel to work
ip -6 addr add $TEMP_ADDR/64 dev br0
ip route add 2000::/3 dev he-ipv6
#Enable IPv6 forwarding
echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
# make sure to accept proto-41
iptables -I INPUT 2 -p ipv6 -i vlan1 -j ACCEPT
#make sure to not NAT proto-41
iptables -t nat -A POSTROUTING --proto ! 41 -o eth0 -j MASQUERADE
echo "starting radvd" >> $STARTUP_SCRIPT_LOG_FILE
#creating radvd.conf
echo "#generated by startup script" > $RADVD_CONFIG
echo "interface br0 {" >> $RADVD_CONFIG
echo "AdvSendAdvert on;" >> $RADVD_CONFIG
echo "prefix "$ROUTED_64_ADDR"/64 {" >> $RADVD_CONFIG
echo "AdvOnLink on;" >> $RADVD_CONFIG
echo "AdvAutonomous on;" >> $RADVD_CONFIG
echo "AdvRouterAddr on;" >> $RADVD_CONFIG
echo "};" >> $RADVD_CONFIG
echo "};" >> $RADVD_CONFIG
radvd -C $RADVD_CONFIG &
fi
}



Thursday, October 5, 2017

DECRYPT VAULT - WITH VIDEO GAME XML WAV IN REAL TIME




Ok, besides physics science, and interformeters, that (the answer is: need clear sight...I'm sorry) the sensors (ATM's , vaults, ) use LED's as reactive to thermal, movement, load balance, the LED's are the dimmers at the electronic board; I hv a hint! on this one!...the LED's sensors are jammed by white noise...follow me...if light in optics are jammed by noise, therefore, the sensors inside the vault, are reactive to white noise.

Elsa David ok, the led here on the alarm is a sensor, is a shift phase transformer...not a lamp electrical plug
GostoMostrar mais reações
Responder4 h
Gerir
Elsa David resume...1st ...you plug to a rf jammer with a whitenoise audio app, you approach the microphone to the door sensors...
GostoMostrar mais reações
Responder4 hEditado
Gerir
Elsa David then you use at the same time a gaussmeter...to measure when the alarm is off http://www.trifield.com/content/trifield-meter/
Trifield Meter measures all three types of electromagnetic field: AC magnetic field, AC electric field, and radio…
TRIFIELD.COM
GostoMostrar mais reações
ResponderEliminar pré-visualização4 h
Gerir
Elsa David the measure to get (it looks like) is above 4miligauss, and then the sensor disconnects (I need confirmation)
GostoMostrar mais reações
Responder4 h