Skip to content

Instantly share code, notes, and snippets.

!!! strict
!!! XML
%html
-# Self closing tags
%img{:src => "happy.jpg"}/
%div.myclass
.myclass1
function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fish"
# Clear earlier bindings, if any
bind --erase --all
# This is the default binding, i.e. the one used if no other binding matches
bind "" self-insert
bind \n execute
ruby -e 'C=`stty size`.scan(/\d+/)[1].to_i;S=["2743".to_i(16)].pack("U*");a={};puts "\033[2J";loop{a[rand(C)]=0;a.each{|x,o|;a[x]+=1;print "\033[#{o};#{x}H \033[#{a[x]};#{x}H#{S} \033[0;0H"};$stdout.flush;sleep 0.1}'
#include <iostream>
#include <cstdio>
using namespace std;
int main (int argc, char const* argv[])
{
// 2x4
int m[2][4];
for(int i=0; i<2; ++i)
for(int j=0; j<4; ++j)
@zuigon
zuigon / calc.cpp
Last active December 30, 2015 07:39
#include <stdio.h>
#include <math.h>
double a, b;
void unesi(int n){
printf("a: ");
scanf("%lf", &a);
if(n==2){
printf("b: ");
@zuigon
zuigon / sin.c
Last active December 30, 2015 01:49
#include <stdio.h>
#include <math.h>
int R, S;
char m[51][51];
int zaokr(double n){
double t = n-(int)n;
return (t<0.5)?(int)n:(int)n+1;
}
#include <iostream>
using namespace std;
int n, nd, m[100][100];
void ispis(){
cout<<"m[][]:"<<endl;
for(int i=0; i<n; ++i){
for(int j=0; j<n; ++j)
cout<<m[i][j]<<" ";
@zuigon
zuigon / osam.cpp
Last active December 28, 2015 23:49
#include <iostream>
#include <cstdlib>
using namespace std;
int m[3][4];
/*
X 0 X
0 0 0
#include <stdio.h>
int main(){
int m[25]={0}, // matrica sati, sve nule
n, i, j, ta, tb, mmax=1;
scanf("%d", &n);
for(i=0; i<n ; ++i){
scanf("%d%d", &ta, &tb);
for(j=ta; j<=tb; ++j)
m[j]++;
@zuigon
zuigon / lv6_1.c
Last active December 28, 2015 17:39
#include <stdio.h>
int main(){
int n, P[100], i, snep=0, nnep=0;
scanf("%d", &n);
if(2 <= n && n <= 100){ printf("2 <= n && n <= 100 !!"); return 1; }
for(i=0; i<n; ++i)
scanf("%d", &P[i]);
printf("Parni brojevi: ");