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/env ruby | |
`open "http://www.google.com/search?client=safari&rls=en&q=#{ARGV.join '+'}&ie=UTF-8&oe=UTF-8"` |
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
➜ ~ 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 |
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
#!/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 |
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 <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}; |
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 <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 |
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
puts gets.chop.to_s[/\.(\d+)/, 1] || "Format: #.#" |
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
#if __cplusplus | |
#include <iostream> | |
#else | |
#include <stdio.h> | |
#endif |
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
# 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 |
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/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 |
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
<!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%; } |