黑莓

十大非著名之父:手机,黑莓,iPod,FORTRAN,远程办公,鼠标,垃圾邮件,DSL,Java,WIFI说,我爸是...-asp.net关注

醉酒当歌 提交于 2020-04-05 22:18:02
不为人知的科技之父们 - Lzhi's Views 如今,当你打着手机、听着iPod、在电脑前点击鼠标,你知道这些都是谁发明创始的吗?岁末年初,当我们回首盘点,别搞错了,iPod并非著名的史蒂夫· 乔布斯发明,手机也不是诺基亚的谁谁创造,而鼠标更非罗技的专利。当我们享受着科技的便利时,那些改变了科技的人,却依然“非著名”着。近日,由美国《网 络世界》杂志评出的十大非著名科技之父,在网上被热议。1.手机之父马蒂·库珀(Marty Cooper)... 如今,当你打着手机、听着iPod、在电脑前点击鼠标,你知道这些都是谁发明创始的吗?岁末年初,当我们回首盘点,别搞错了,iPod并非著名的史蒂夫· 乔布斯发明,手机也不是诺基亚的谁谁创造,而鼠标更非罗技的专利。当我们享受着科技的便利时,那些改变了科技的人,却依然“非著名”着。近日,由美国《网 络世界》杂志评出的十大非著名科技之父,在网上被热议。 1.手机之父马蒂·库珀(Marty Cooper) 库珀于1973年申请了一项无线电话系统专利,当时他是一名摩托罗拉员工。他明确表示,自己发明手机的灵感来自于热门电视剧《星际旅行》。目前,他是ArrayComm的创始人、CEO。 2.黑莓之父迈克·拉扎里迪斯(Mike Lazaridis) 拉扎里迪斯12岁的时候,因阅读了当地公共图书馆中所有科学书籍而获得了奖励。1984年,他辍学创建了RIM公司

一个更容易检测设备的JavaScript库——device.js

我的未来我决定 提交于 2020-03-27 09:31:28
decice.js的 github地址 device.js是一个可以用来检测设备的平台、操作系统和方向的JavaScript库。device.js 通过操作系统(比如 iOS,安卓,黑莓,Windows,Firefox OX),方向(横屏或者竖屏),类型(平板或者移动设备),来为设备添加 CSS Class ,并且它还提供了一些Javascript 函数用来判断设备。 比如在PC端打开引入了device.js的 html 页面时会在<html>标签里添加" desktop landscape "的class。 device支持的设备 iOS: iPhone, iPod, iPad Android: Phones & Tablets Blackberry: Phones & Tablets Windows: Phones & Tablets Firefox OS: Phones & Tablets device.js的使用 直接在html页面的头部引入即可使用: <script type="text/javascript" src="device.js"></script> 根据设备的不同生成的CSS **Device** **CSS Classes** iPhone ios iphone mobile iPod ios ipod mobile Android Phone

BlackBerry App之Hello World

独自空忆成欢 提交于 2020-03-24 03:50:20
1. 安装BlackBerry_Email_MDS_4.1.4.exe和BlackBerry_Simulators_5.0.0.228_9700.exe 2. 安装eclipse3.6 3. 安装BlackBerry Java Plug-in for Eclipse v1.1 4. 创建BlackBerry工程,File -> New -> Project -> BlackBerry -> BlackBerry Project Project name: HelloWorld Click "Finish" 完成项目创建 5. 创建一个新的java类,名称为HelloWorld,内容如下: import net.rim.device.api.ui.Field; import net.rim.device.api.ui.UiApplication; import net.rim.device.api.ui.component.Dialog; import net.rim.device.api.ui.component.LabelField; import net.rim.device.api.ui.component.RichTextField; import net.rim.device.api.ui.container.MainScreen; public class

使用device.js检测设备并实现不同设备展示不同网页

夙愿已清 提交于 2020-03-13 11:09:22
device.js cdn地址,打开下面地址,选择版本 http://www.bootcdn.cn/device.js/ 现在很多时候会用@media来控制页面在不同分辨率的设备商展示不同效果,但是有些时候想在直接在PC上展示一个做好的页面,在mobile展示另一个页面。这个时候可以借助device.js来检测设备,然后打开不同的页面(device.js 是一个可以用来检测设备,操作系统和方向的js库)。当然这种做法需要一次跳转。 假设有个m.html想用于mobile端展示,pc.html想用于pc端展示。这个时候可以用index.html作为入口,在<head>内引入device.js来检测设备,然后用js来实现跳转。 当设备为Mobile和tablet的时候展示m.html 否则展示pc.html <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>responsive demo</title> <script src="device.js"></script> </head> <body style="margin: auto; position: absolute; width:100%; height: 100%"> <script> var isMobile = device

js判断移动端与pc端

时间秒杀一切 提交于 2020-01-04 17:31:32
js判断移动端与pc端 这里介绍下使用device.js插件来判断移动端设备 地址: https://github.com/matthewhudson/device.js 示例: 1 2 3 4 5 6 7 if (device.mobile()){ window.location.href = "移动端地址" ; //alert("移动端"); } else { window.location.href = "PC端地址" ; //alert("PC端"); }    更多设备判断如下表格: Device JavaScript Method Mobile device.mobile() Tablet device.tablet() Desktop device.desktop() iOS device.ios() iPad device.ipad() iPhone device.iphone() iPod device.ipod() Android device.android() Android Phone device.androidPhone() Android Tablet device.androidTablet() BlackBerry device.blackberry() BlackBerry Phone device.blackberryPhone()

检测移动设备的最佳方法是什么?

三世轮回 提交于 2019-12-07 20:49:42
有没有可靠的方法来检测用户是否在jQuery中使用移动设备? 类似于CSS @media属性吗? 如果浏览器在手持设备上,我想运行其他脚本。 jQuery $.browser 函数不是我想要的。 #1楼 对我来说,小就是美丽,所以我正在使用这种技术: 在CSS文件中: /* Smartphones ----------- */ @media only screen and (max-width: 760px) { #some-element { display: none; } } 在jQuery / JavaScript文件中: $( document ).ready(function() { var is_mobile = false; if( $('#some-element').css('display')=='none') { is_mobile = true; } // now i can use is_mobile to run javascript conditionally if (is_mobile == true) { //Conditional script here } }); 我的目标是让我的网站“移动友好”。 因此,我使用CSS Media Queries根据屏幕大小显示/隐藏元素。 例如,在我的移动版本中,我不想激活Facebook Like Box

检测移动设备的最佳方法是什么?

亡梦爱人 提交于 2019-12-07 11:20:28
有没有可靠的方法来检测用户是否在jQuery中使用移动设备? 类似于CSS @media属性吗? 如果浏览器在手持设备上,我想运行其他脚本。 jQuery $.browser 函数不是我想要的。 #1楼 对我来说,小就是美丽,所以我正在使用这种技术: 在CSS文件中: /* Smartphones ----------- */ @media only screen and (max-width: 760px) { #some-element { display: none; } } 在jQuery / JavaScript文件中: $( document ).ready(function() { var is_mobile = false; if( $('#some-element').css('display')=='none') { is_mobile = true; } // now i can use is_mobile to run javascript conditionally if (is_mobile == true) { //Conditional script here } }); 我的目标是让我的网站“移动友好”。 因此,我使用CSS Media Queries根据屏幕大小显示/隐藏元素。 例如,在我的移动版本中,我不想激活Facebook Like Box

Strange BlackBerry log

匿名 (未验证) 提交于 2019-12-03 09:14:57
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using the code below , as part of my push notifications implementation: private static final String BPAS_URL = "http://pushapi.eval.blackberry.com"; private static final String APP_ID = "3582-M4687r9k9k836r980kO2395i32i66y11a34"; String registerUrl = formRegisterRequest(BPAS_URL, APP_ID, null) + ";deviceside=false;ConnectionType=mds-public"; System.out.println("\n\n\n !!msg registerBPAS URL is: "+ registerUrl + "\n\n"); where : private static String formRegisterRequest(String bpasUrl, String appId, String token) { StringBuffer sb = new

BlackBerry - Changes are not getting reflected in my app

匿名 (未验证) 提交于 2019-12-03 02:41:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Suddenly my changes are not getting reflected when I run my app. I have tried the following things. Restarted the eclipse and tried. created a new eclipse workspace. Uninstall and installed the blackberry jde. As I read "Blackberry simulator not creating COD file" , I have deleted some java files and images then tried. Nothing works. Could any one help in this issue. Thanks. 回答1: Make sure your project is "Activated for BlackBerry" like this: 回答2: Next best thing you can do is go to simulator folder in bb plugin and: delete < ProjectName >.*

mod_rewrite %{HTTP_USER_AGENT} not equal + or condition (list)

匿名 (未验证) 提交于 2019-12-03 02:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My current condition goin like that: RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] I wonder how can i swap this condition into "if not" one of the values above. I tought about something like that: RewriteCond %{HTTP_USER_AGENT} !="android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] but its doesnt work. 回答1: The problem is you've got a space between opera and mobile , which causes mod_rewrite to parse it as multiple