slovodefinícia
bugger
(encz)
bugger,buzerant n: Zdeněk Brož
bugger
(encz)
bugger,hlupák n: Zdeněk Brož
bugger
(encz)
bugger,kašlat na něco v: Zdeněk Brož
bugger
(encz)
bugger,prevít n: Zdeněk Brož
bugger
(encz)
bugger,sodomita n: Zdeněk Brož
bugger
(encz)
bugger,zbabrat v: Rostislav Svoboda
Bugger
(gcide)
Bugger \Bug"ger\, n. [F. bougre, fr. LL. Bulgarus, a Bulgarian,
and also a heretic; because the inhabitants of Bulgaria were
infected with heresy. Those guilty of the crime of buggery
were called heretics, because in the eyes of their
adversaries there was nothing more heinous than heresy, and
it was therefore thought that the origin of such a vice could
only be owing to heretics.]
1. One guilty of buggery or unnatural vice; a sodomite.
[1913 Webster]

2. A wretch; -- sometimes used humorously or in playful
disparagement. [Low]
[1913 Webster]
bugger
(wn)
bugger
n 1: someone who engages in anal copulation (especially a male
who engages in anal copulation with another male) [syn:
sodomite, sodomist, sod, bugger]
v 1: practice anal sex upon [syn: sodomize, sodomise,
bugger]
podobné slovodefinícia
debugger
(mass)
debugger
- debugger, ladiaci program
debugger
(msas)
debugger
- debugger
debugger
(msasasci)
debugger
- debugger
bugger off
(encz)
bugger off,odprejsknout v: Zdeněk Brož
buggers
(encz)
buggers,obtěžuje v: Zdeněk Brožbuggers,otravuje v: Zdeněk Brož
buggery
(encz)
buggery,sodomie n: Zdeněk Brož
debugger
(encz)
debugger,debugger n: Zdeněk Broždebugger,ladící program Zdeněk Brož
debuggers
(encz)
debuggers,ladící programy Zdeněk Brož
jitterbugger
(encz)
jitterbugger,osoba tančící jitterbug Zdeněk Brož
debugger
(czen)
debugger,debuggern: Zdeněk Brož
Bugger
(gcide)
Bugger \Bug"ger\, n. [F. bougre, fr. LL. Bulgarus, a Bulgarian,
and also a heretic; because the inhabitants of Bulgaria were
infected with heresy. Those guilty of the crime of buggery
were called heretics, because in the eyes of their
adversaries there was nothing more heinous than heresy, and
it was therefore thought that the origin of such a vice could
only be owing to heretics.]
1. One guilty of buggery or unnatural vice; a sodomite.
[1913 Webster]

2. A wretch; -- sometimes used humorously or in playful
disparagement. [Low]
[1913 Webster]
Buggery
(gcide)
Buggery \Bug"ger*y\, n. [OF. bougrerie, bogrerie, heresy. See
Bugger.]
Unnatural sexual intercourse; sodomy.
[1913 Webster]
Humbugger
(gcide)
Humbugger \Hum"bug`ger\, n.
One who humbugs.
[1913 Webster]
Humbuggery
(gcide)
Humbuggery \Hum"bug`ger*y\, n.
The practice of imposition.
[1913 Webster]
bugger all
(wn)
bugger all
n 1: little or nothing at all; "I asked for a raise and they
gave me bugger-all"; "I know sweet Fanny Adams about
surgery" [syn: bugger all, fuck all, Fanny Adams,
sweet Fanny Adams]
bugger off
(wn)
bugger off
v 1: leave immediately; used usually in the imperative form;
"Scram!" [syn: scram, buzz off, fuck off, get,
bugger off]
buggery
(wn)
buggery
n 1: intercourse via the anus, committed by a man with a man or
woman [syn: sodomy, buggery, anal sex, {anal
intercourse}]
debugger
(wn)
debugger
n 1: a program that helps in locating and correcting programming
errors
debugger
(foldoc)
debugger
debugging tool

A tool used by a programmer to monitor
and control a program he is trying to fix. The most important
functions of a debugger are tracing, stepping, breakpoints and
watches.

Tracing displays a step-by-step report on what statement the
program is currently executing, allowing the programmer to follow
the flow of control through if statements, loops (loop),
subroutine calls, etc.

Breakpoints and watches both pause execution of the program
and return control to the debugger under certain conditions. A
breakpoint triggers when execution reaches a particular
statement in the program and a watch triggers whenever a
specific variable is modified. Stepping is like a breakpoint on
every statement, often with the option to step "into" or "over" a
subroutine, i.e. continue stepping through the statements of the
subroutine or just execute it without pausing and resume stepping
when it returns.

Whenever control returns to the debugger it lets the programmer
ask to see the values of variables, and possibly modify them,
before resuming execution. Some debuggers can be set to
automatically perform some action like display a variable value
and resume.

A debugger can interact with the target program in different ways.
Some debuggers require the program to be loaded into the debugger
which may then modify or "instrument" the program for debugging.
Others can "attach" to a program that is already running. Some
are built into the normal program execution environment (e.g. an
interpreter) and can be set to run under certain conditions,
e.g. errors.

Early debuggers such as Unix's adb only knew about the
compiled executable code so sometimes debugging had to be done at
the level of machine code instructions and numerical memory
locations. If you were lucky, the debugger could access the
program's symbol table and display the original names of
subroutines and variables. Sometimes this required the program to
be "compiled for debugging". Since compiling every program for
debugging would add significantly to the size of a distribution
of a whole operating system, it is common for programs to be
distributed without debugging support but for individual programs
to be made available with it.

A major advance in debuggers was source-level debugging. This
gives the programmer a view of their source code annotated with
breakpoints and a pointer to the statement currently being
executed. Such a view is commonly part of an {integrated
development environment} like Visual Basic.

(2014-08-23)
portable scheme debugger
(foldoc)
Portable Scheme Debugger

(PSD) A package for source code debugging of R4RS-compliant
Scheme under GNU Emacs by Kellom ?ki Pertti
. Version 1.1. Distributed under GNU GPL.
It works with scm, Elk and Scheme->C.

(ftp://ftp.cs.tut.fi/pub/src/languages/schemes/psd.tar.Z).

(1992-10-08)
rotary debugger
(foldoc)
rotary debugger

(Commodore) Essential equipment for those late-night or
early-morning debugging sessions. Mainly used as sustenance
for the hacker. Comes in many decorator colours, such as
Sausage, Pepperoni, and Garbage.

(1995-01-11)
source-level debugger
(foldoc)
source-level debugger

A debugger that shows the programmer the
line or expression in the source code that resulted in a
particular machine code instruction of a running program
loaded in memory. This helps the programmer to analyse a
program's behaviour in the high-level terms like source-level
flow control constructs, procedure calls, named
variables, etc instead of machine instructions and memory
locations. Source-level debugging also makes it possible to
step through execution a line at a time and set source-level
breakpoints.

In order to support source-level debugging, the program must
be compiled with this option enabled so that extra information
is included in the executable code to identify the
corresponding positions in the source code.

A symbolic debugger is one level lower - it displays symbols
(procedure and variable names) stored in the executable but
not individual source code lines.

GDB is a widely used example of a source-level debugger.

(2007-04-03)
turbo debugger
(foldoc)
Turbo Debugger

A source-level debugger designed for use with
Borland and other compilers.

(http://borland.com/).

(1999-04-23)
universal debugger
(foldoc)
Universal Debugger
udb

(udb) KSR's interactive {source level
debugger} for serial and parallel programs written in KSR,
Fortran, KSR C and KSR1 assembly language.

Udb is a source level debugger for testing and debugging
serial and parallel programs; it is compatible with GDB and
dbx. The user can direct udb either by typing commands or
graphically through an X-based window interface; the latter
provides simultaneous display of source code, I/O and
instructions. For parallel programs, operations can be
carried out per-thread.

{Home
(http://tc.cornell.edu/Parallel.Tools/tools/udb.html)}.

(1995-05-07)
rotary debugger
(jargon)
rotary debugger
n.

[Commodore] Essential equipment for those late-night or early-morning
debugging sessions. Mainly used as sustenance for the hacker. Comes in many
decorator colors, such as Sausage, Pepperoni, and Garbage. See {ANSI
standard pizza}.
BUGGERY
(bouvier)
BUGGERY, crim. law. The detestable crime of having commerce contrary to the
order of nature, by mankind with mankind, or with brute beasts, or by
womankind with brute beasts. 3 Inst. 58; 12 Co. 36; Dane's Ab. Index, h. t.;
Merl. Repert. mot Bestialie. This is a highly penal offence.

Nenašli ste slovo čo ste hľadali ? Doplňte ho do slovníka.

na vytvorenie tejto webstránky bol pužitý dictd server s dátami z sk-spell.sk.cx a z iných voľne dostupných dictd databáz. Ak máte klienta na dictd protokol (napríklad kdict), použite zdroj slovnik.iz.sk a port 2628.

online slovník, sk-spell - slovníkové dáta, IZ Bratislava, Malé Karpaty - turistika, Michal Páleník, správy, údaje o okresoch V4