- Documentation @ http://git.kernel.org/cgit/network/connman/connman.git/tree/doc
-
Scan for access points (run multiple times for more complete scan):
# connmanctl scan wifi
Scan completed for wifi
Scan for access points (run multiple times for more complete scan):
# connmanctl scan wifi
Scan completed for wifi
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; |
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using System.Windows.Forms; | |
using Microsoft.Win32; | |
namespace RunOnStartup | |
{ | |
/// <summary> | |
/// It attempts to write to HKEY_LOCAL_MACHINE first, which will run on startup on all user accounts. |
package com.mridulahuja.appname; | |
import android.util.Log; | |
import com.loopj.android.http.JsonHttpResponseHandler; | |
import org.json.JSONObject; | |
import cz.msebera.android.httpclient.Header; |
try: | |
from xml.etree.cElementTree import XML | |
except ImportError: | |
from xml.etree.ElementTree import XML | |
import zipfile | |
""" | |
Module that extract text from MS XML Word document (.docx). | |
(Inspired by python-docx <https://github.com/mikemaccana/python-docx>) |
""" | |
Author : Mridul Ahuja | |
Github : https://github.com/mridah/csv2vcf | |
Description : A small command line tool to convert CSV files to VCard files | |
""" | |
import os | |
import sys | |
import csv |
/** | |
* Return a timestamp with the format "m/d/yy h:MM:ss TT" | |
* @type {Date} | |
*/ | |
function timeStamp() { | |
// Create a date object with the current time | |
var now = new Date(); | |
// Create an array with the current month, day and time |