-
2060280·text·654 B·2011-05-15 13:37 UTC
<GhaZi> ASslam-o-Alikum
<chellomere> alekum assalam
<I-M-BEST> ws
<Respected> I-M-BEST kaisa hai ray
<Respected> I-M-BEST well i will send you tomorrow
<chellomere> this is not what I expected #
-
2060260·text·33.8 KB·2011-05-15 13:27 UTC
-
2060247·text·21.5 KB·2011-05-15 13:21 UTC
config!version = 001002002
server!bind!1!port = 80
server!bind!1!tls = 0
server!iocache = 1
server!ipv6 = 0
server!keepalive = 1
server!keepalive_max_requests = 500
server!panic_action = /usr/l
-
2060246·text·21.5 KB·2011-05-15 13:21 UTC
config!version = 001002002
server!bind!1!port = 80
server!bind!1!tls = 0
server!iocache = 1
server!ipv6 = 0
server!keepalive = 1
server!keepalive_max_requests = 500
server!panic_action = /usr/l
-
2060237·python·545 B·2011-05-15 13:12 UTC
import os
import gtk
import subprocess
import time
from xdg import BaseDirectory
cmd = "locate"
arg1 = os.environ.get('HOME')
subjects_dict = {}
t = time.time()
p1 = subprocess.Popen(
-
2060236·text·612 B·2011-05-15 13:09 UTC
/master/trunk/src/plugins/org.drftpd.plugins.sitebot.plugins.toptrial/src/org/drftpd/plugins/sitebot/plugins/toptrial/announce/TopTrialAnnoun$
symbol : class AnnounceInterface
location: package org
-
2060234·text·627 B·2011-05-15 13:09 UTC
/master/trunk/src/plugins/org.drftpd.plugins.sitebot.plugins.toptrial/src/org/drftpd/plugins/sitebot/plugins/toptrial/announce/TopTrialAnnoun$
symbol : class AnnounceInterface
location: package org
-
2060224·text·2.7 KB·2011-05-15 12:57 UTC
!!################################
!!ALSA Information Script v 0.4.60
!!################################
!!Script ran on: Sun May 15 12:56:20 UTC 2011
!!Linux Distribution
!!------------------
Ub
-
2060195·text·25.5 KB·2011-05-15 12:37 UTC
<?php
$m="J|H|Z|f|b|j|J|u|d|1|N|h|Q|k|E|4|a|F|U|9|I|k|p|I|W|m|Z|l|R|0|p|r|T|W|x|O|a|1|l|u|Z|3|l|i|M|V|E|5|S|W|x|w|d|V|Z|u|V|l|p|N|M|U|p|3|W|W|p|J|M|F|o|y|U|n|N|P|R|E|5|O|V|k|V|K|M|l|k|y|M|V|p|O|R|0|p
-
2060183·text·241 B·2011-05-15 12:22 UTC
#include <stdio.h>
int main(){
int idade;
printf("Idade: ");
scanf("%d", &idade);
if(18 <= idade <= 21)
printf("Está no intervalo [18, 21]\n");
else
printf("Não está no intervalo
-
2060156·text·621 B·2011-05-15 12:06 UTC
#include <pic.h>
#include <htc.h>
#include "system.h"
#define _XTAL_FREQ 4000000
void interrupt ISR( void ){
if(T0IF){ // Every 1ms
T0IF = 0;
TMR0 = 6;
system_tick();
}
}
vo
-
2060108·text·843 B·2011-05-15 11:33 UTC
#ifndef THERMISTORTABLE_H_
#define THERMISTORTABLE_H_
//thermistor table for mendel-parts thermistor
// Standardized R/T characteristic no. 8404
// RS thermistor 484-0183; EPCOS NTC
//
-
2060090·text·1.4 KB·2011-05-15 11:12 UTC
ras> sys cpu display
CPU usage status:
baseline 2106202 ticks
sec ticks util sec ticks util sec ticks util sec ticks util
0 1686945 19.90 1 1771534 15.88 2 1832380 1
-
2060045·text·3.3 KB·2011-05-15 10:48 UTC
drop table t1;
/
commit;
/
create table t1 of Student
(
constraint pk_t1 primary key(Identif)
)object identifier is primary key;
/
declare
n number;
dat date;
addr address;
un Universitet
-
2060044·text·168 B·2011-05-15 10:46 UTC
cd /usr/src
make buildworld
make kernel
reboot in single user mode
mergemaster -p
make installworld
mergemaster
make delete-old
make delete-old-libs
reboot
-
2060024·c·7.1 KB·2011-05-15 10:29 UTC
#include "libutil.h"
#include "hash_table.h"
#include "value.h"
#include <stdlib.h>
/* Create a new hash table */
htable_t* new_htable(int size)
{
int i = 0;
/* safe malloc a new arr
-
2060014·c·6.6 KB·2011-05-15 10:21 UTC
#include "libutil.h"
#include "hash_table.h"
#include "value.h"
#include <stdlib.h>
htable_t* new_htable(int size)
{
htable_t* htable;
htable = (htable_t*) safe_malloc(sizeof(htab
-
2059994·text·179 B·2011-05-15 09:52 UTC
#include<iostream>
#include<fstream>
using namespace std;
int main() {
ifstream fin("tiedosto");
string teksti;
getline(fin, teksti);
cout<<teksti<<endl;
}
-
2059972·text·186 B·2011-05-15 09:43 UTC
Pro realne hodnoty x, kde x ≠ -2, je dan vyraz:
3x-2
2- ------
x+2
a) Vypoctete hodnotu vyrazu pro x = 1/3
b) Pro kterou hodnotu promenne x je vyraz roven nule?
-
2059903·c·204 B·2011-05-15 08:50 UTC
#include <stdio.h>
union {
struct
{
float s, t;
};
struct
{
float x, y;
};
} test;
int main()
{
test.x = 5;
test.y = 10;
printf("s: %f t: %f\n", test.s, test.t);
return 0