uBlock Origin : Add blocker (Faster less resource intensive than adblock)
Lazarus: Form Recovery (just started using) http://lazarus.interclue.com/
Add to Amazon Wishlist (occasional use)
uBlock Origin : Add blocker (Faster less resource intensive than adblock)
Lazarus: Form Recovery (just started using) http://lazarus.interclue.com/
Add to Amazon Wishlist (occasional use)
Dunfermline
| function disp2( varargin ) | |
| %DISP2 Similar to disp but ... | |
| % But no requirment for [] string concatination, | |
| % Numerics automatically converted to strings. | |
| str = ''; | |
| for i=1:length(varargin) | |
| element = varargin(i); element = element{:}; | |
| if isnumeric(element) |
| #!/usr/bin/env ruby | |
| # Direct Purchase Cost | |
| iphone16 = 539 | |
| iphone64 = 619 | |
| puts "Memory upgrade costs #{iphone64 - iphone16 }" | |
| # £5 a month PAYG on Three |
| #!/usr/bin/env ruby | |
| ## Install Gem | |
| # gem install stock_quote | |
| require "stock_quote" | |
| ## Get price of DLG.DE stocks | |
| stock = StockQuote::Stock.quote("DLG.DE").ask | |
| noremap <Up> :echo 'Use k'<CR> | |
| noremap <Down> :echo 'Use j'<CR> | |
| noremap <Left> :echo 'Use h'<CR> | |
| noremap <Right> :echo 'Use l'<CR> |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/stat.h> | |
| //## include <sys/stat.h> required for mkdir | |
| // gcc c_mkdir_example.c -o c_mkdir_example | |
| // c_mkdir_example | |
| // ls -l | |
| main () { |
| #!/bin/sh | |
| gcc file_example_main.c file_example.c -o file_example |