Download the repo https://github.com/lwfinger/rtlwifi_new. Unzip it and in terminal do
cd /the_path_to_this_folder/rtlwifi_new make sudo make install sudo modprobe rtl8723be
# add key | |
cd /root/documents/coding/test | |
eval `ssh-agent -s` | |
ssh-add ../rsa.key | |
# master push | |
git checkout master | |
git pull | |
#date > date.txt | |
#git add --all |
#include <windows.h> | |
#include <gdiplus.h> | |
#include <atlbase.h> | |
#pragma comment(lib,"gdiplus.lib") | |
/* GDI+ startup token */ | |
ULONG_PTR gdiplusStartupToken; | |
/* Declare Windows procedure */ | |
LRESULT CALLBACK WindowProcedure(HWND, UINT, WPARAM, LPARAM); |
# -*- coding:utf-8 -*- | |
import MySQLdb | |
import sae.const | |
import urllib2,httplib,urllib,sys | |
from cgi import parse_qs, escape | |
html_front = ''' | |
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> |
Download the repo https://github.com/lwfinger/rtlwifi_new. Unzip it and in terminal do
cd /the_path_to_this_folder/rtlwifi_new make sudo make install sudo modprobe rtl8723be
package com.example.speccall.lua; | |
import org.keplerproject.luajava.LuaObject; | |
import org.keplerproject.luajava.LuaState; | |
import org.keplerproject.luajava.LuaStateFactory; | |
import android.content.Context; | |
import android.telephony.TelephonyManager; | |
import android.util.Log; |
file1.lua
一个简单的函数,计算两个数相加
function plus(a, b)
return a + b;
end
This post is to make libs for armeabi
, armeabi-v7a
, x86
and mips
instruction sets.
But the official tutorial is not clear in Windows
platform, and the version is too old. So I just write them down.
To begin with, you should have already installed Cygwin32
, and change the path to your own path first!
And, a key point is too add TARGET_SYS=Linux
when in Windows platform.