Install xvfb
apt-get install xvfb x11-xkb-utils xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic x11-apps
Some tips at: xvfb init script for Ubuntu
Install xvfb
apt-get install xvfb x11-xkb-utils xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic x11-apps
Some tips at: xvfb init script for Ubuntu
Table of Contents generated with DocToc
| $ curl http://192.168.1.1/api/device/information | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <response> | |
| <DeviceName>E303</DeviceName> | |
| <SerialNumber>K3XBYAxxxxxxxxxx</SerialNumber> | |
| <Imei>xxxxxxxxxxxxxxx</Imei> | |
| <Imsi>xxxxxxxxxxxxxxx</Imsi> | |
| <Iccid>xxxxxxxxxxxxxxxxxxxx</Iccid> | |
| <Msisdn></Msisdn> | |
| <HardwareVersion>CH2E303SM</HardwareVersion> |
Note: This will be a contrived example, but hopefully illustrates some real-world trade-offs.
Example scenario: Suppose you're an independent web developer, and a client asks you to prototype a redesign of their website header. You'll be paid for your time, and if the client likes it, you'll be hired to do the full implementation. Your incentive is to show the client a quick, functional demo of the updated header. The problem is that quick and functional tend to be mutually-exclusive.
| /* | |
| * configure_wininet_proxy - Configure Internet Options proxy on Windows | |
| * Copyright (C) 2017 Hitachi ID Systems, Inc. | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, |
npm install -g npm to update npm to the latest versionNow you can use npm and node from windows cmd or from bash shell like Git Bash of msysgit.
| #!/usr/bin/python2.6 | |
| # | |
| # Author: Olivier Gillet ([email protected]) | |
| """Class and functions to read and write numpy array from and to audio files.""" | |
| import copy | |
| import logging | |
| import numpy | |
| import struct |
| sudo add-apt-repository ppa:openjdk-r/ppa | |
| sudo apt-get update | |
| sudo apt-get install openjdk-7-jre | |
| # install openjdk | |
| sudo apt-get install openjdk-7-jdk | |
| # download android sdk | |
| wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz |
| # create sdk folder | |
| export ANDROID_HOME=/opt/android-sdk-linux | |
| sudo mkdir -p $ANDROID_HOME | |
| # install openjdk | |
| sudo apt-get install openjdk-8-jdk | |
| # download android sdk | |
| cd $ANDROID_HOME | |
| sudo wget https://dl.google.com/android/repository/tools_r25.2.3-linux.zip |
| #!/usr/bin/python | |
| # | |
| # Simple script intended to abuse SMTP server's VRFY command to leak | |
| # usernames having accounts registered within it. | |
| # | |
| # Mariusz B., 2016 | |
| # | |
| import socket | |
| import sys |