Clipboard.

RealKC

Popular Member
Dec 6, 2015
1,004
534
129
King of the Hill
WeLcOmE*************************WeLcOmE
*WeLcOmE***********************WeLcOmE*
**WeLcOmE*********************WeLcOmE**
***WeLcOmE*******************WeLcOmE***
****WeLcOmE*****************WeLcOmE****
*****WeLcOmE***************WeLcOmE*****
******WeLcOmE*************WeLcOmE******
*******WeLcOmE***********WeLcOmE*******
********WeLcOmE*********WeLcOmE********
*********WeLcOmE*******WeLcOmE*********
**********WeLcOmE*****WeLcOmE**********
***********WeLcOmE***WeLcOmE***********
************WeLcOmE*WeLcOmE************
*************WeLcOmWeLcOmE*************
**************WeLcOmeLcOmE*************
***************WeLcOmLOmE**************
**************WeLcOmeLcOmE*************
*************WeLcOmWeLcOmE*************
************WeLcOmE*WeLcOmE************
***********WeLcOmE***WeLcOmE***********
**********WeLcOmE*****WeLcOmE**********
*********WeLcOmE*******WeLcOmE*********
********WeLcOmE*********WeLcOmE********
*******WeLcOmE***********WeLcOmE*******
******WeLcOmE*************WeLcOmE******
*****WeLcOmE***************WeLcOmE*****
****WeLcOmE*****************WeLcOmE****
***WeLcOmE*******************WeLcOmE***
**WeLcOmE*********************WeLcOmE**
*WeLcOmE***********************WeLcOmE*
 

RealKC

Popular Member
Dec 6, 2015
1,004
534
129
King of the Hill
AnotherIlluminatiSig.jpg


I know your IP
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,799
248
apt-get install -t jessie-backports iceweasel
had some problems with the iceweasle in debian stable. Result of this command is that I am now at the version that has firefox hello and it didn't fix the thing I hoped it would fix. (web.skype.com works now so...that is something I guess)
 

RealKC

Popular Member
Dec 6, 2015
1,004
534
129
King of the Hill

What doesn't work @lenscas, I'm not an expert with Linux, I'm just curious. For what I have in my clipoard, I can't remember anything about it, actually it's probably some OP EMC gen using ProjectE and EnderIO.

Edit: Spoiler and spelling
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,799
248

What doesn't work @lenscas, I'm not an expert with Linux, I'm just curious. For what I have in my clipoard, I can't remember anything about it, actually it's probably some OP EMC gen using ProjectE and EnderIO.

Edit: Spoiler and spelling
discord doesn't let me undeafen because I use iceweasle. (the only difference with iceweasle and firefox is the header data (changing firefox to iceweasle), its name and logo. It was made after some arguments between the Mozilla and the guys at Debian thus its more of a Debian problem then Linux problem.)

I apparently have the iceweasle version in my clipboard. It seems to be indeed the same as the latest firefox (for the feature you need firefox 38+)
43.0.4

edit: I should mention that I could install firefox and it should work, the arguments where about the rights of the name/logo and perhaps some patches that where made for Debian but not so sure about that.
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,799
248
apt-get install -t jessie-backports iceweasel

oh, look. I am updating iceweasle on my laptop now
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,799
248
Not one of them said anything like, "I was looking for an excuse to reinstall my system, and this seemed like a really effective method."

Saw this line in a thread on forums.debian.net about people that had screwed up there sources.list very,very badly.
(for example, putting repositories for Debian testing, Ubuntu and Mint while running Debian stable)
 

Someone Else 37

Forum Addict
Feb 10, 2013
1,876
1,440
168
//Pwr class
// Pwr function
// Logarithmic recursive function to compute the power y^n

class pwr {

int repetitions = 0;

public double recursive (double y, long n )
{
double temp;
if(n==0)
{
if(y==0) temp = 0;
else temp = 1;
}
else
{
repetitions++;
temp=recursive(y,n/2);
if(n%2 != 0)
temp = y*temp*temp;

else
temp=temp*temp;
}
return temp;
}

public int counter()
{
return repetitions;
}
}


//power class
//Power function
//Linear non-recursive function to computer power y^n

class power {

public double non_recursive( double y, long n )
{
double result;
long i;

result = 1;

for(i=1;i<=n;i++)
result = result*y;

return result;
}
}

public class execTime
{
public static void main (String[] args)
{
double recursiveResult;
double non_recursiveResult;
long recursive_time=0;
long non_recursive_time = 0;
long start_time, end_time;
long total_time;
double y;
long n=2147483647; // maximum long
long num_rep;
int i;

y=1.00000001; //Initialize y , 1.[7 zeros]1

{
recursive_time = 0; // Initialize timers
non_recursive_time = 0;

{
pwr rec = new pwr(); //Create object pwr
power nonrec = new power(); //Create object power

System.out.println("Recursive version executing...");
start_time=System.currentTimeMillis();
recursiveResult = rec.recursive(y,n);
num_rep = rec.counter();
end_time=System.currentTimeMillis();
total_time = end_time-start_time;
System.out.println("y = "+y+"\t n = "+n);
System.out.println("y^n = "+recursiveResult );
System.out.println("repetitions = "+num_rep );
System.out.println("Total time = "+total_time);

System.out.println("Nonrecursive version executing...");
start_time=System.currentTimeMillis();
non_recursiveResult = nonrec.non_recursive(y,n);
end_time=System.currentTimeMillis();
total_time = end_time-start_time;
System.out.println("y = "+y+"\t n = "+n);
System.out.println("y^n = "+recursiveResult );
System.out.println("Total time = "+total_time);

}
}
}
}

Oh, hi, lots of Java. Blame the forum for formatting derpery.