06 2015 档案

摘要:如果只想简单的设置,可进行如下设置 Tools->IDE Options->Editor->Colors and Fonts->Editor Font->Font 但是这里边似乎也没有什么舒服的字体,在网上找了找,还真找到了一个比较不错的字体,现呈现给大家 IAR的 用户配置文件 在这里进行替换即可 阅读全文
posted @ 2015-06-30 23:09 IAmAProgrammer 编辑
摘要:https://www.kernel.org/doc/Documentation/crc32.txtA brief CRC tutorial.A CRC is a long-division remainder. You add the CRC to the message, and the wh... 阅读全文
posted @ 2015-06-29 02:31 IAmAProgrammer 编辑
摘要:AN4187 - Using the CRC peripheral in the STM32 familyAt start up, the algorithm sets CRC to the Initial_Crc XOR with the Input_Data.Once CRC MSB is eq... 阅读全文
posted @ 2015-06-29 00:14 IAmAProgrammer 编辑
摘要:http://www.cardwerk.com/smartcards/smartcard_standard_ISO7816-4_annex-a.aspxAnnex A: Transportation of APDU messages by T=0A.1 Case 1A.2 Case 2 ShortA... 阅读全文
posted @ 2015-06-28 15:22 IAmAProgrammer 编辑
摘要:http://pcsclite.alioth.debian.org/ccid_extended_apdu.htmlTo be able to use an extended APDU you need to have:A T=1 cardA smart card reader working in ... 阅读全文
posted @ 2015-06-28 15:09 IAmAProgrammer 编辑
摘要:http://www.cardwerk.com/smartcards/smartcard_standard_ISO7816-4_7_transmission_interindustry_commands.aspx7. Transmission-oriented Interindustry Comma... 阅读全文
posted @ 2015-06-28 14:06 IAmAProgrammer 编辑
摘要:/* The Quest Operating System * Copyright (C) 2005-2010 Richard West, Boston University * * This program is free software: you c... 阅读全文
posted @ 2015-06-28 01:33 IAmAProgrammer 编辑
摘要:Everyone knows that STM32F1xx, STM32F2xx, STM32F4xx have a hardware unit with a polynomial CRC32 0x04C11DB7.And he, in general, work.But only a checks... 阅读全文
posted @ 2015-06-27 23:07 IAmAProgrammer 编辑
摘要:/关闭警告#pragma diag_suppress=Pe940uint8_t GetMyData(void){ asm(“MOV R0, #0x550F”);}//恢复警告#pragma diag_warning=Pe940 阅读全文
posted @ 2015-06-27 18:51 IAmAProgrammer 编辑
摘要:http://www.barrgroup.com/Embedded-Systems/How-To/Additive-ChecksumsCRC Series, Part 1: Additive ChecksumsSat, 2007-12-01 23:21-webmasterbyMichael Barr... 阅读全文
posted @ 2015-06-27 13:46 IAmAProgrammer 编辑
摘要:Acquired from: ftp.adelaide.edu.au:/pub/rocksoft/crc_v3.txt or ftp://ftp.rocksoft.com/papers/crc_v3.txt or http://www.repairfaq.org/filipg/LINK/... 阅读全文
posted @ 2015-06-27 13:11 IAmAProgrammer 编辑
摘要:// STM32 CRC32 Test App - sourcer32@gmail.com#include #include DWORD Crc32( DWORD Crc, DWORD Data ){ int i; Crc = Crc ^ Data; for ( i = 0; i > ... 阅读全文
posted @ 2015-06-27 13:09 IAmAProgrammer 编辑
摘要:uint32_t reverse_32( uint32_t data ){ asm("rbit r0,r0"); return data;};uint32_t crc32_ether( char *buf, int len, int clear ){ uint32_t *p = (uint32... 阅读全文
posted @ 2015-06-27 13:06 IAmAProgrammer 编辑
摘要:http://supp.iar.com/Support/?note=64424&from=note+11927BackgroundThe STM32 devices from ST Micro have a built-in hardware CRC32 calculator. (So using ... 阅读全文
posted @ 2015-06-27 12:41 IAmAProgrammer 编辑
摘要:对于STM32的32位CRC,如果假定它的一个主要目的是为了校验往内部FLASH存储数据的可靠性,那么(余数)初值是全1当然是比较合理的。由于STM32的32位CRC是纯32位,即每次必须输入32位的数,所以如果数据不到32位,应该往低位用1来填充比较合理;另外,如果输入数据是 "1234"-0x3... 阅读全文
posted @ 2015-06-27 12:36 IAmAProgrammer 编辑
摘要:So, lets look at how CBC works first. The following picture shows the encryption when using CBC (in this case, using AES as the cipher).Basically, Cip... 阅读全文
posted @ 2015-06-27 00:01 IAmAProgrammer 编辑
摘要:http://speakspeak.com/resources/english-grammar-rules/various-grammar-rules/either-neither-bothOne of the tricky things abouteither,neitherandbothis k... 阅读全文
posted @ 2015-06-26 23:28 IAmAProgrammer 编辑
摘要:http://www.usingenglish.com/quizzes/answers.php?quiz_id=44This page displays the answers to the 'Both, Either & Neither' quiz.Q1 -____ were ill so the... 阅读全文
posted @ 2015-06-26 23:26 IAmAProgrammer 编辑
摘要:http://www.grammar.cl/english/both-either-neither.htmBoth, Either, Neither Summary ChartWe useboth,eitherandneitherto refer to two people or things.BO... 阅读全文
posted @ 2015-06-26 23:22 IAmAProgrammer 编辑
摘要:How to convert a byte to its binary string representationFor example, the bits in a byteBare10000010, how can I assign the bits to the stringstrlitera... 阅读全文
posted @ 2015-06-26 11:53 IAmAProgrammer 编辑
摘要:how convert large HEX string to binaryI have a string with 14 characters . This is a hex represantation of 7bytes. I want to convert it to binary.int3... 阅读全文
posted @ 2015-06-26 02:53 IAmAProgrammer 编辑
摘要:http://codereview.stackexchange.com/questions/2050/tiny-encryption-algorithm-tea-for-arbitrary-sized-data#ifndef __TEA.H__#define __TEA.H__#include vo... 阅读全文
posted @ 2015-06-25 18:59 IAmAProgrammer 编辑
摘要:/* Validation sets: * * Single-length key, single-length plaintext - * Key : 0123 4567 89ab cdef * Plain : 0123 4567 89ab cde7 * Cipher : c957 442... 阅读全文
posted @ 2015-06-25 18:38 IAmAProgrammer 编辑
摘要:IELFTOOL Checksum - Basic actionsEW targets:ARM, RH850, RX, SH, STM8EW component:General issuesLast update:September 6, 2013Below follows the steps ne... 阅读全文
posted @ 2015-06-23 02:03 IAmAProgrammer 编辑
摘要:#include // The type of a pointer into the init table.typedef void const * table_ptr_t;// The type of an initialization routine. It takes a pointer to... 阅读全文
posted @ 2015-06-22 18:47 IAmAProgrammer 编辑
摘要:http://blog.grexit.com/manage-data-across-clouds/That the average small business uses a cloud service to enable collaboration and backup is pretty muc... 阅读全文
posted @ 2015-06-21 15:12 IAmAProgrammer 编辑
摘要:支持多种服务器和主流云网盘进行同步http://www.icecoldapps.com/Unlock Code :xda201506Unlock Code : icecoldapps201506Download :Synchronize Ultimate APK 2.8.22Synchronize ... 阅读全文
posted @ 2015-06-21 12:02 IAmAProgrammer 编辑
摘要:Table of contentList of test vectors for AES/ECB encryption modeAES ECB 128-bit encryption modeAES ECB 128-bit encryption modeAES ECB 128-bit encrypti... 阅读全文
posted @ 2015-06-19 23:26 IAmAProgrammer 编辑
摘要:This optimized AES implementation conforms to FIPS-197.aes.h#ifndef _AES_H#define _AES_H#ifndef uint8#define uint8 unsigned char#endif#ifndef uint32... 阅读全文
posted @ 2015-06-19 22:46 IAmAProgrammer 编辑
摘要:http://ark.intel.com/compare/52275,65728Product NameIntel® Xeon® Processor E3-1260L (8M Cache, 2.40 GHz)Intel® Xeon® Processor E3-1265L v2 (8M Cache, ... 阅读全文
posted @ 2015-06-18 22:25 IAmAProgrammer 编辑
摘要:http://homeservershow.com/forums/index.php?/topic/6596-hp-microserver-gen8-processor-faq/This guide is a work in progress. After reading some other pe... 阅读全文
posted @ 2015-06-18 21:13 IAmAProgrammer 编辑
摘要:5. Basic Organizations5.1 Data structures5.2 Security architecture of the card5.3 APDU message structure5.4 Coding conventions for command headers, da... 阅读全文
posted @ 2015-06-18 17:51 IAmAProgrammer 编辑
摘要:Annex A: Transportation of APDU messages by T=0A.1 Case 1A.2 Case 2 ShortA.2S.1 Le acceptedA.2S.2 Le definitely acceptedA.2S.3 Le not accepted, La ind... 阅读全文
posted @ 2015-06-18 17:50 IAmAProgrammer 编辑
摘要:http://java.inf.elte.hu/java-1.3/javacard/iso7816.txt============================================================================= ISO7816 ... 阅读全文
posted @ 2015-06-18 15:19 IAmAProgrammer 编辑
摘要:https://www.eftlab.com.au/index.php/site-map/knowledge-base/118-apdu-response-listList of APDU responses for EMV processing with their description.Not... 阅读全文
posted @ 2015-06-18 15:18 IAmAProgrammer 编辑
摘要:英语姓名的一般结构为:教名+自取名+姓。如 William Jafferson Clinton。但在很多场合中间名往往略去不写,如 George Bush,而且许多人更喜欢用昵称取代正式教名,如 Bill Clinton。上述教名和中间名又称个人名。现将英语民族的个人名、昵称和姓氏介绍如下:I. 个... 阅读全文
posted @ 2015-06-17 17:18 IAmAProgrammer 编辑
摘要:/* * FIPS-197 compliant AES implementation * * Copyright (C) 2006-2007 Christophe Devine * * Redistribution and use in source and binary forms, wi... 阅读全文
posted @ 2015-06-16 22:27 IAmAProgrammer 编辑
摘要:// advanced encryption standard// author: karl malbrain, malbrain@yahoo.comtypedef unsigned char uchar;#include #include // AES only supports Nb=4#def... 阅读全文
posted @ 2015-06-16 22:08 IAmAProgrammer 编辑
摘要:COMPARISON OF YUBIKEY VERSIONSBASICSTANDARD & NANOBASICEDGE & EDGE-NPREMIUMNEO & NEO-NFIDO U2F SPECIALSECURITY KEYPRICE – SINGLE QUANTITY$25$30$50$18B... 阅读全文
posted @ 2015-06-14 21:46 IAmAProgrammer 编辑
摘要:Smartcard features on the YubiKey NEOYubiKeys are a line of small and low-cost hardware security tokens popular for their one-time password (OTP) func... 阅读全文
posted @ 2015-06-14 21:45 IAmAProgrammer 编辑
摘要:A single YubiKey has multiple functions for protecting access to your email, your apps and your physical spaces. Useone or more Yubikey features, or u... 阅读全文
posted @ 2015-06-14 21:43 IAmAProgrammer 编辑
摘要:The YubiKey NEOTheYubiKeyline of hardware one-time-password (OTP) generators has been on the market for a few years now—in 2010,we looked at theearlie... 阅读全文
posted @ 2015-06-14 21:17 IAmAProgrammer 编辑
摘要:常用地址英语:室/房Room,村(乡)Village,号No.,宿舍Dormitory,楼/层F,住宅区/小区ResidentialQuarter,甲/乙/丙/丁A/B/C/D,巷/弄Lane,单元Unit,号楼/幢Building,厂Factory,酒楼/酒店Hotel,路Road,花园Garde... 阅读全文
posted @ 2015-06-14 18:23 IAmAProgrammer 编辑
摘要:MultCloudhttps://www.multcloud.com/是一款在线服务,可以在一个地方管理众多网盘,支持国产百度盘,最具有特色的地方是你可以直接在MultCloud里操作将Dropbox的文件传输到百度盘中。MultCloud支持的国外网盘较多,Dropbox、Google Drive... 阅读全文
posted @ 2015-06-12 23:56 IAmAProgrammer 编辑
摘要:1.什么叫现汇兑现钞~~一个国家的货币(本币)不存在以上问题,但是外国货币在其他国家(比如美元在中国)就有了“汇”和“钞”的问题。首先,所谓的外钞/现钞就是外国货币的纸币(比如美元纸币,1美元,20美元,100美元等),而外汇/现汇就是外国货币的记录形式。当你在美国使用他们时是没有区别的,但是如果你... 阅读全文
posted @ 2015-06-10 21:00 IAmAProgrammer 编辑
摘要:git提供了文件忽略系统,当对工作区某个目录或文件设置了忽略后,在执行status查看状态时,被忽略的文件即使存在也不会显示出来。这样我就可以把那些不需要上传,不需要保留的文件或目录忽略掉(比如一些动态生成的log,或者编译出来的文件等等)。对于忽略文件,git提供了3种方式(我们组的大神又告诉我了... 阅读全文
posted @ 2015-06-10 01:40 IAmAProgrammer 编辑
摘要:Google Docs protocol completely replaced with Google DriveIn May 2015, the older Google Docs API was shut down by Google, and it can no longer be used... 阅读全文
posted @ 2015-06-09 23:21 IAmAProgrammer 编辑
摘要:Syncovery Pro(原名叫做Super Flexible Synchronizer)是目前功能最为强大的实时自动备份工具,连FTP、WebDAV等全部支持!最近从V6开始改用比较好记、易懂的新名称 SynCovery 了。功能与Super Flexible Synchronizer仍然完全相... 阅读全文
posted @ 2015-06-09 23:17 IAmAProgrammer 编辑
摘要:Folderpairs - Edit folderpair -Sync options -Instant syncSelect this for instant sync on change. Only detects changes on local device.Use with care!Se... 阅读全文
posted @ 2015-06-09 22:59 IAmAProgrammer 编辑
摘要:Help - Tacit Dynamics Help This page describes the various features of FolderSync and how to use them. If you have problems, try consulting the FAQ or 阅读全文
posted @ 2015-06-08 22:32 IAmAProgrammer 编辑
摘要:First of all the full version is required.The full version works as a Tasker plugin - when you configure a new task in Tasker you are presented with a... 阅读全文
posted @ 2015-06-08 21:03 IAmAProgrammer 编辑
摘要:Creative Commons,简称CC,中国大陆正式名称为知识共享,台湾正式名称为创用CC。是一个非营利组织,也是一种创作的授权方式。此组织的主要宗旨是增加创意作品的流通可及性,作为其他人据以创作及共享的基础,并寻找适当的法律以确保上述理念。传统的著作权通常为两种极端,一端是“保留所有权利”,另... 阅读全文
posted @ 2015-06-08 18:03 IAmAProgrammer 编辑
摘要:How do I restart SSH service under Linux or UNIX operating systems?The command to restart ssh are as follows (you must login as root user):CentOS / RH... 阅读全文
posted @ 2015-06-08 17:35 IAmAProgrammer 编辑
摘要:Node.js是一个事件驱动I/O服务端JavaScript环境,基于Google的V8引擎。目的是为了提供撰写可扩充网络程序,如Web服务。第一个版本由Ryan Dahl于2009年发布,后来,Joyent雇用了Dahl,并协助发展Node.js。其他编程语言的类似开发环境,包含Twisted于P... 阅读全文
posted @ 2015-06-08 16:42 IAmAProgrammer 编辑
摘要:Windows:BlogDeskBlogJetBlog WriterChrysanth WebStoryDeepest Sender(Firefox或SeaMonkey扩展,跨平台- Deepest Sender能在Firefox可运行的操作系统上运行)EctoElicitFlockJBlogEdi... 阅读全文
posted @ 2015-06-07 16:03 IAmAProgrammer 编辑
摘要:Saw an interesting blog post on Twitter today aboutstoring WordPress FTP information in wp-config.php. The article was written in German so I sent the... 阅读全文
posted @ 2015-06-07 12:14 IAmAProgrammer 编辑
摘要:IntroductionWhen working with WordPress in a more secure environmentwhere websites are not entirely world-writable,you will notice upgrades request FT... 阅读全文
posted @ 2015-06-07 12:01 IAmAProgrammer 编辑
摘要:WordPress will only prompt you for your FTP connection informationwhile trying to install plugins or a wordpress updateif it cannot write to/wp-conten... 阅读全文
posted @ 2015-06-07 11:57 IAmAProgrammer 编辑
摘要:Recently I ran into an issue where an installation of WordPress that had never had any issues updating stopped being able to update via the admin upda... 阅读全文
posted @ 2015-06-07 11:54 IAmAProgrammer 编辑
摘要:LNMP一键安装包里的Pureftpd安装脚本是需要MySQL支持的,安装前需要已经安装好LNMP,这个自带一个PHP编写的用户管理界面。安装进入lnmp解压后的目录,执行:./pureftpd.sh会显示如下图:按提示输入当前MySQL的root密码,输入完成,回车确认,会提示如下信息:这一步是设... 阅读全文
posted @ 2015-06-06 17:57 IAmAProgrammer 编辑
摘要:一般情况下不建议对生产环境进行升级,升级开始后会停止LNMP相关服务。本文仅适用于LNMP1.2及以后版本!在LNMP目前LNMP v1.2中已经包含了Nginx、MySQL/MariaDB、PHP的升级脚本,可以帮助搭建对环境中的程序进行升级。(注意:以下操作均需要在lnmp压缩包解压后的目录里运... 阅读全文
posted @ 2015-06-06 17:47 IAmAProgrammer 编辑
摘要:LNMP一键安装包除去安装所必须的依赖包,还会默认安装以下软件: Nginx、MySQL/MariaDB、PHP、phpMyAdmin、Zend Optimizer/Zend GuardLoader。用户可以根据自己的需要安装其他组件,如FTP服务器、缓存组件,也可以使用升级脚本对Nginx、MyS... 阅读全文
posted @ 2015-06-06 17:45 IAmAProgrammer 编辑
摘要:VPS技术介绍利用最新虚拟化技术Xen在一台物理服务器上创建多个相互隔离的虚拟私有主机(“Virtual Private Server”简称 “VPS”)。这些VPS以最大化的效率共享硬件、软件许可证以及管理资源。对其用户和应用程序来讲,每一个VPS平台的运行和管理都与一台独立主机完全相同,因为每一... 阅读全文
posted @ 2015-06-06 17:28 IAmAProgrammer 编辑
摘要:LAMP指的是:Linux+Apache+MySQL+Perl/PHP/PythonLAMP是一个缩写,它指一组通常一起使用来运行动态网站或者服务器的自由软件:Linux,操作系统;Apache,网页服务器;MySQL,数据库管理系统(或者数据库服务器);PHP和 Perl 或 Python。Pro... 阅读全文
posted @ 2015-06-06 16:29 IAmAProgrammer 编辑
摘要:Mount Manager, Cifs manager :Manage your CIFS/NFS network shareswas working, but the command from the terminal was not.For me anyway, it turned out th... 阅读全文
posted @ 2015-06-05 08:43 IAmAProgrammer 编辑
摘要:FolderSync是一款支持各大国外网盘同步的软件,目前支持SkyDrive, Dropbox, SugarSync, Ubuntu One, Box.net,LiveDrive, HiDrive, NetDocuments, Amazon S3,FTP, FTPS, SFTP, WebDAV和w... 阅读全文
posted @ 2015-06-05 01:10 IAmAProgrammer 编辑
摘要:单向/双向皆可,针对任何一侧的文件进行处理,两侧文件都进行更新文件同步的操作过程是:确保两处或多处包含完全一致、及时更新 的各种文件。当对某一处进行文件添加、更改或删除,则同步操作将对对应的 另一处的相关文件进行添加、更改和删除。相关文件将在两侧进行复制以确保两 处保持一致。GoodSync 除了有... 阅读全文
posted @ 2015-06-05 01:05 IAmAProgrammer 编辑
摘要:http://forum.miata.net/vb/showthread.php?t=536601Hey all!About 5 years ago, there was a great thread on reverse engineering the NC ECU (http://forum.m... 阅读全文
posted @ 2015-06-04 16:19 IAmAProgrammer 编辑
摘要:http://www.romraider.com/forum/viewtopic.php?f=25&t=6303All of the 16-bit guidance in the following posts is from Elevenpoint7five. Thank him for his ... 阅读全文
posted @ 2015-06-04 16:17 IAmAProgrammer 编辑
摘要:虚拟信用卡海外网购、购买国外域名空间、ebay等一些国外网站账号的激活这些情况都需要用到国际信用卡,如果没有信用卡或者有信用卡但是对于安全性有所顾虑怎么办?其实有一种东西叫做虚拟信用卡,正规银行发行,绝对合法,手续简单,几分钟便能拿到卡,海外购物的话可以购买特定面值的虚拟信用卡进行一次性消费,而且此... 阅读全文
posted @ 2015-06-04 09:53 IAmAProgrammer 编辑
摘要:BandwagonHost(习惯称作搬瓦工),属于IT7公司旗下的产品,搬瓦工虽然是新起的商家,但是有实力雄厚的公司背景在一定程度上还是可以放心使用的。很多用户在选择这款低价VPS的时候都担心是否稳定、甚至是否跑路等问题。但到目前为止,可以看到从原先的佛罗里达、凤凰城,以及新上线的洛杉矶数据中心,而... 阅读全文
posted @ 2015-06-03 15:48 IAmAProgrammer 编辑
摘要:vultr官方网站:www.vultr.comdigitalocean官方网站:www.digitalocean.comlinode官方网站:www.linode.com一般来说我们买VPS的时候都会从多方面来考虑,慨括来说就是好用还他妈的便宜,对吧?这里我来简单的说说vultr.com、digit... 阅读全文
posted @ 2015-06-03 15:36 IAmAProgrammer 编辑
摘要:基础设施即服务(Infrastructure as a Service,简称IaaS)是消费者使用处理、储存、网络以及各种基础运算资源,部署与执行操作系统或应用程序等各种软件。客户端无须购买服务器、软件等网络设备,即可任意部署和运行处理、存储、网络和其它基本的计算资源,不能控管或控制底层的基础设施,... 阅读全文
posted @ 2015-06-03 15:15 IAmAProgrammer 编辑
摘要:国际信用卡是一种银行联合国际信用卡组织签发给那些资信良好的人士并可以在全球范围内进行透支消费的卡片,同时该卡也被用于在国际网络上确认用户的身份。国际发卡组织是一个由全世界银行参与的非营利的国际性组织,会员由银行等金融机构组成,建立起一个全球的支付和金融服务的网络。国际上的信用卡组织国际上的信用卡组织... 阅读全文
posted @ 2015-06-03 15:06 IAmAProgrammer 编辑
摘要:Syncthing是一款跨平台的文件同步工具。即你在一台设备上创建、修改或删除文件,在其他设备上会同步执行相同的操作。Syncthing不会将你的数据上传到云端,而是在你的多台设备同时在线时对指定的文件执行同步。Syncthing 与 BitTorrent Sync的区别二者有很多不同且并无任何关系... 阅读全文
posted @ 2015-06-01 13:00 IAmAProgrammer 编辑
摘要:语言值南非荷兰语af阿姆哈拉语am阿拉伯语ar巴斯克语eu孟加拉语bn保加利亚语bg加泰罗尼亚语ca中文(中国香港)zh-HK中文(简体)zh-CN中文(繁体)zh-TW克罗地亚语hr捷克语cs丹麦语da荷兰语nl英语(英国)en-GB英语(美国)en-US爱沙尼亚语et菲律宾语fil芬兰语fi法语... 阅读全文
posted @ 2015-06-01 09:17 IAmAProgrammer 编辑

点击右上角即可分享
微信分享提示