-
2132352·text·553 B·2012-03-27 03:59 UTC
<Hunterkll> you have /usr/pkg/foo and it symlinks to whatever you want.. /usr/pkg/foo-1.1 etc, each version is installed in it's own verison named dir
<Hunterkll> of course, this is all moot if you u
-
2132351·text·553 B·2012-03-27 03:58 UTC
<Hunterkll> you have /usr/pkg/foo and it symlinks to whatever you want.. /usr/pkg/foo-1.1 etc, each version is installed in it's own verison named dir
<Hunterkll> of course, this is all moot if you u
-
2132347·text·174.7 KB·2012-03-27 03:35 UTC
-
2132346·text·174.7 KB·2012-03-27 03:35 UTC
-
2132345·c·491 B·2012-03-27 03:31 UTC
#include <stdio.h>
#define PRECISION 0.1
float squareRootRecursiveGuess(float x, float g)
{
float cond, ans;
g=((x/g) + g)/2;
if((cond=x/g - g)>PRECISION || cond<-PRECISION)
-
2132344·c·495 B·2012-03-27 03:30 UTC
#include <stdio.h>
#define PRECISION 0.1
float
squareRootRecursiveGuess(float x, float g)
{
float cond, ans;
g=((x/g) + g)/2;
if((cond=x/g - g)>PRECISION || cond<-PRECISION)
-
2132342·c·944 B·2012-03-27 03:21 UTC
// playgame.c
// Author: Boob boobsquared
// Date: 01/25/12
// Purpose: Plays a simple guessing game.
#include "playcgame.h"
#include "cgame.h"
#include <stdio.h>
int guess_count, high, l
-
2132341·c·938 B·2012-03-27 03:18 UTC
// playgame.c
// Author: Kevin Okal
// Date: 01/25/12
// Purpose: Plays a simple guessing game.
#include "playcgame.h"
#include "cgame.h"
#include <stdio.h>
int guess_count, high, low, ne
-
2132323·text·14.3 KB·2012-03-27 00:06 UTC
root@bt:~# cat /root/linux-enum.sh
#!/bin/bash
echo '#########################
# OS ENUM #
#########################'
echo '========(.)-(.)========'
cat /etc/issue
echo '========(.)-(.)
-
2132321·text·2.5 KB·2012-03-26 23:56 UTC
Uma lmina bimetlica constituda por dois metais cujos coeficientes de dilatao so diferentes, que ocorre quando a temperatura da lmina aumenta. Evidentemente, quanto maior o valor do coeficiente de dil
-
2132318·text·655 B·2012-03-26 23:28 UTC
vyatta@edge01# show
interfaces {
ethernet eth0 {
address 55.22.00.10/28
description LAN-VRRP
duplex auto
hw-id 00:15:17:5c:62:9d
smp_affinity
-
2132311·text·9.5 KB·2012-03-26 22:26 UTC
qlist meandmyshadow
/usr/share/games/meandmyshadow/data/sfx/Credits.txt
/usr/share/games/meandmyshadow/data/sfx/swap.wav
/usr/share/games/meandmyshadow/data/sfx/error.wav
/usr/share/games/meandmys
-
2132307·text·2.5 KB·2012-03-26 21:44 UTC
2012-03-26 17:43:59 [INFO] Starting minecraft server version 1.2.4
2012-03-26 17:43:59 [INFO] Loading properties
2012-03-26 17:43:59 [INFO] Starting Minecraft server on *:25565
2012-03-26 17:43:59
-
2132305·text·637 B·2012-03-26 21:35 UTC
* we have extended basic cable no cable box etc.. trying to get the digital channels to work:
/usr/share/dvb/atsc/us-ATSC-center-frequencies-8VSB
root@ubuntu:~# scan /usr/share/dvb/atsc/us-ATSC
-
2132304·text·896 B·2012-03-26 21:29 UTC
root@ubuntu:~# scan /usr/share/dvb/atsc/us-Cable-Standard-center-frequencies-QAM256
scanning /usr/share/dvb/atsc/us-Cable-Standard-center-frequencies-QAM256
using '/dev/dvb/adapter0/frontend0' and '
-
2132296·text·1.1 KB·2012-03-26 20:28 UTC
/*
* Timer1.cpp
*
* Created on: Mar 26, 2012
* Author: Realisations
*/
#include "Timer0.h"
bool ledState_ = false;
ISR(TCC0_OVF_vect, ISR_BLOCK)
{
if (ledState_)
{
led
-
2132295·text·1.1 KB·2012-03-26 20:26 UTC
/*
* Timer1.cpp
*
* Created on: Mar 26, 2012
* Author: Realisations
*/
#include "Timer0.h"
bool ledState_ = false;
ISR(TCC0_OVF_vect, ISR_BLOCK)
{
if (ledState_)
{
led
-
2132293·text·398 B·2012-03-26 20:11 UTC
package com.guyag.testplugin;
import org.bukkit.Server;
import org.bukkit.entity.Player;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerLoginEvent;
public class player
-
2132287·text·416 B·2012-03-26 19:35 UTC
public static <T> void printMap(Iterator<T> it)
{
while(it.hasNext())
{
T obj = it.next();
if( obj instanceof Map.Entry)
{
Map.Entry ent = (Map
-
2132284·text·444.4 KB·2012-03-26 19:13 UTC