-
2128000·text·827 B·2012-03-14 03:26 UTC
Q8. Information on bullying is found under: Safety & Prevention > Health and Safety Topics > Bullying at Work. The WorkSafe website discusses details on what constitutes as bullying and who you can g
-
2127999·text·508 B·2012-03-14 03:25 UTC
n = degree
c = coefficient
prev = Root
node = Root
if not node:
if c:
Root = Node(n, c)
return
while node:
if node->degree == n:
if c == 0:
if node == Root:
Root = Root->
-
2127997·text·500 B·2012-03-14 03:22 UTC
n = degree
c = coefficient
prev = Root
node = Root
if not node:
if c:
Root = Node(n, c)
return
while node:
if node->degree == n:
if c == 0:
if node == Root:
Root = Root->
-
2127996·text·267 B·2012-03-14 03:17 UTC
Q8. Information on bullying is found under: Safety & Prevention > Health and Safety Topics > Bullying at Work. The WorkSafe website discusses details on what constitutes as bullying and who you can g
-
2127995·text·267 B·2012-03-14 03:17 UTC
Q8. Information on bullying is found under: Safety & Prevention > Health and Safety Topics > Bullying at Work. The WorkSafe website discusses details on what constitutes as bullying and who you can g
-
2127992·text·390 B·2012-03-14 02:53 UTC
n = degree
c = coefficient
prev = root
node = root
while node:
if node->degree == n:
if c == 0:
prev->next = node.next
delete (node)
else:
node->coefficient = c
elif n > no
-
2127991·text·389 B·2012-03-14 02:52 UTC
n = degree
c = coefficient
prev = root
node = root
while node:
if node->degree == n:
if c == 0:
prev->next = node.next
delete (node)
else:
node.coefficient = c
elif n > nod
-
2127980·text·1.1 KB·2012-03-14 02:09 UTC
week 1
Background and overview.
One-time encryption using stream ciphers.
Semantic security.
week 2
Block ciphers and pseudorandom functions.
Chosen plaintext security and modes of operation.
-
2127979·actionscript·111 B·2012-03-14 02:00 UTC
You can't separate pease from freedom because no one can be at peace unless he has his freedom.
-
2127976·cpp·905 B·2012-03-14 01:24 UTC
diff --git a/mythtv/programs/mythfrontend/themechooser.cpp b/mythtv/programs/mythfrontend/themechooser.cpp
index c61c4c1..45daac4 100644
--- a/mythtv/programs/mythfrontend/themechooser.cpp
+++ b/my
-
2127975·xml·1.3 KB·2012-03-14 01:21 UTC
<configuration>
<property>
<name>dfs.hosts.exclude</name>
<value>conf/excludes</value>
</property>
<property>
<name>dfs.http.address</name>
<value>namenodeip:50070</val
-
2127962·actionscript·111 B·2012-03-14 00:09 UTC
You can't separate pease from freedom because no one can be at peace unless he has his freedom.
-
2127960·text·955 B·2012-03-14 00:06 UTC
jbglaw@elle:/tmp/beamertest$ cat systematik_2009.tex
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{bibunits}
\usepackage{hyperref}
\usepackage[german]{babel}
\title{foo}
\autho
-
2127957·javascript·3.8 KB·2012-03-13 23:37 UTC
var j = jQuery.noConflict();
j(document).ready(function(){
var scntDiv = j('#p_scents');
var i = j('#p_scents p').size() + 1;
var i2 = i;
// Add information for additional p
-
2127950·java·2.0 KB·2012-03-13 23:19 UTC
package com.gmail.alternejtiw.AreaGuard;
import java.io.File;
import java.util.ArrayList;
import org.bukkit.plugin.java.JavaPlugin;
class area
{
private int xa;
private int ya;
-
2127943·text·488 B·2012-03-13 22:31 UTC
entnervt|chillt> ja
<entnervt|chillt> wollts gerade schreiben
<entnervt|chillt> bin mal gespannt
<entnervt|chillt> wann die gsg4 kommt
<entnervt|chillt> um mich zurechtzuweisen
<entnervt|chillt>
-
2127942·text·187.6 KB·2012-03-13 22:26 UTC
-
2127940·python·136 B·2012-03-13 22:08 UTC
for i in range(1,101):
print(("Fizz" if (i%3==0) else "") + ("Buzz" if (i%5==0) else "") + (str(i) if (i%3!=0 and i%5!=0) else ""))
-
2127939·python·136 B·2012-03-13 22:06 UTC
for i in range(1,100):
print(("Fizz" if (i%3==0) else "") + ("Buzz" if (i%5==0) else "") + (str(i) if (i%3!=0 and i%5!=0) else ""))
-
2127938·python·240 B·2012-03-13 22:00 UTC
for i in range(1,100):
a = False
if (i % 3 == 0):
print("Fizz", end='')
a = True
if (i % 5 == 0):
print("Buzz", end='')
a = True
if (a):