可以使用MARS来编汇编,MARS是一个用java编的IDE,它是一个模拟环境. 样例:重要的句子输出三遍 .data str: .asciiz "weidiao is great\n" .text j main f: la $a0,str li $v0, syscall jr $ra main: li $t1, li $t2,3 loop: bgt $t1,$t2,over addi $t1,$t1, jal f j loop syscall 指令文档:链接 下面程序为一个四则运算程…
Python 爬取所有51VOA网站的Learn a words文本及mp3音频 #!/usr/bin/env python # -*- coding: utf-8 -*- #Python 爬取所有51VOA网站的Learn a words文本及mp3音频 import os import sys import time import urllib as req from threading import Thread import urllib2 import urllib from thre…
文章来源:http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/ Learn Vim Progressively TL;DR: You want to teach yourself vim (the best text editor known to human kind) in the fastest way possible. This is my way of doing it. You start by l…
1.you can't avoid office politics 2.you'll never have a job which you "can't quit" - if you are being mistreated,exploited or under-appreciated...LEAVE.You'll eventuslly find another job(although it may not be a better one) 3.you learn by listen…
没做出来 第四题 (List)写一个函数reverseList,该函数能够接受一个List,然后把该List 倒序排列. 例如: List list = new ArrayList(); list.add(“Hello”); list.add(“World”); list.add(“Learn”); //此时list 为Hello World Learn reverseList(list); //调用reverseList 方法之后,list 为Learn World Hello package…
Learn RxJava http://reactivex.io/documentation/operators.html https://github.com/ReactiveX/RxJava/wiki/The-RxJava-Android-Module https://github.com/ReactiveX/RxJava How the New York Times is building its Android app with Groovy/RxJava by Mohit Pandey…