This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby -w | |
require 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
$KCODE = 'u' | |
(50..67).each do |count| | |
html = open("http://whoswho.openfoundry.org/workshop/details/#{count}") rescue "404 Not Found" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TITLE Reversing a String | |
INCLUDE Irvine32.inc | |
.data | |
buffer BYTE 100 DUP(0) | |
byteCount DWORD ? | |
.code | |
main PROC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INCLUDE Irvine32.inc | |
.data | |
text DWORD 10 DUP(?) | |
.code | |
main PROC | |
mov esi, 0 | |
L1: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INCLUDE Irvine32.inc | |
.data | |
text DWORD 100 DUP(0), 0 ;text[100], init to 0 | |
.code | |
main PROC | |
mov esi, 0 ;int i = 0 | |
L1: | |
call ReadInt ;scanf("%d", &test[i]) |
NewerOlder