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
Top Spenders OVERALL | |
The Hon Tony Abbott MP - $1057673 | |
The Hon Julie Bishop MP - $866653 | |
Mr Tony Pasin MP - $851482 | |
Mr Tim Watts MP - $556863 | |
The Hon Andrew Robb AO MP - $539247 | |
The Hon Darren Chester MP - $529344 | |
Mr Wyatt Roy MP - $526258 | |
Senator the Hon Simon Birmingham - $523191 |
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
# Better… not really. Nicer… maybe. | |
$('#main-navbar .search').scope | |
$('input').css | |
border: '1px solid #cccccc' | |
$('button').hide() | |
$('.results').html(loading) | |
$('.active, .results').show() |
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
def f(ra,n) | |
r=0 | |
ra.each {|x| r+=1 if x.include? n} | |
r | |
end |