GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset
function filter_posts() { | |
global $typenow; | |
if( 'podcast' == $typenow ){ | |
/* push each taxonomy name, which is used in this plugin | |
* into _tax array. filter_posts() uses this array | |
* to know which taxonomy is used and display filter options | |
* for that | |
*/ |
GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset
octave:> imagesc(rand(5,10)), colorbar, colormap gray; | |
octave:> title('50 shades of gray') |
# Can't wait for April 1st? Run over to someone's terminal and drop this line. | |
echo 'echo "sleep 1" >> ~/.bashrc' >> ~/.bashrc |
# CC is the compiler which will be used | |
CC=gcc | |
# CFLAGS are the options I'll pass to the compiler | |
CFLAGS=-c -Wall | |
all: hello | |
hello: main.o factorial.o hello.o | |
$(CC) main.o factorial.o hello.o -o hello |
Sub CmdButton_Click() | |
On Error Goto CmdButton_Click_Error | |
' | |
' export Macro | |
Selection.Copy | |
'create new workbook | |
Workbooks.Add | |
' Paste into it |
Map<String, String[]> parameters = request.getParameterMap(); | |
for(String parameter : parameters.keySet()) { | |
if(!parameter.toLowerCase().startsWith("submitbutton")) { | |
String[] values = parameters.get(parameter); | |
//your code here | |
%> <p> <%= parameter %>: <strong><%= values[0] %></strong> </p> <% | |
} | |
} |
$ wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ | |
--restrict-file-names=windows \ | |
--domains website.org \ | |
--no-parent \ | |
www.website.org/tutorials/html/ |
git config --global user.name "Tim Berglund"
git config --global user.email "[email protected]"
git config --global color.ui auto
git init atlanta
git add caesar.txt
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all | |
sleep 1 | |
done |