Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env ruby
`open "http://www.google.com/search?client=safari&rls=en&q=#{ARGV.join '+'}&ie=UTF-8&oe=UTF-8"`
➜ ~ ab -c 10 -n 10000 http://127.0.0.1:8815/index.html
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 127.0.0.1 (be patient)
Completed 1000 requests
Completed 2000 requests
Completed 3000 requests
Completed 4000 requests
#!/bin/sh
# show Shorewall rules from dom0 in table
ssh dom0 "cat /etc/shorewall/rules.d/moje" | grep "^DNAT" | awk '{print $3 " " $4 " " $5}' | sed 's:^loc\:::g; s:\:: :g' | awk '{print $4 " -> " $1 " :" $2 " " $3}' | column -t | sort -n
#include <iostream>
// func. za kompariranje
int c(const void *aa, const void *bb){
int* a=(int*)aa; int* b=(int*)bb;
return (*a==*b)?0:(*a < *b)?-1:1;
}
int main(int argc, char* argv[]){
int i, numbers[10]={5,7,8,1,3,4,2,0,9,6};
#include <stdio.h>
#include <stdlib.h>
int main(){
int n, i; char *buffer;
printf("Duljina stringa? "); scanf("%d", &n);
buffer=(char*)malloc(n+1); //'+1' zbog \0 na kraju stringa
if (buffer==NULL) exit(1); //ako nije uspio alocirati
puts gets.chop.to_s[/\.(\d+)/, 1] || "Format: #.#"
#if __cplusplus
#include <iostream>
#else
#include <stdio.h>
#endif
# Racuna skolsku smjenu upisanog datuma ovisno o smjeni prvog tjedna nastave
require "date"
def input msg=nil
print "> #{msg}: " if msg
return gets.chop
end
def smjena datum
#!/usr/bin/env ruby
require "date"
def input msg=nil
print "> #{msg}: " if msg
return gets.chop
end
def smjena datum
# (38 - 39 % 2 = 1 + 1)%2 = 0
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>UP3</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<style type="text/css" media="screen">
body { background-color: lightblue; }
#container { position: absolute; top: 30%; width: 100%; }