HomeLatest imagesSearchRegisterLog in

If somehow some of you are still active and came to visit this website, please contact Trivi / Anthem. Send an email to janne.hannuksela@luukku.com thank you! I have a solution for the future!
Welcome to Triple X
Menu



Latest topics
» Anybody here?
school project (others ignore it please) I_icon_minitimeJanuary 2nd 2019, 18:05 by Jonas.

» What I am listening to
school project (others ignore it please) I_icon_minitimeDecember 11th 2016, 05:43 by Toxic

» xXx
school project (others ignore it please) I_icon_minitimeDecember 10th 2013, 08:13 by Anthem

» Whats UP!!
school project (others ignore it please) I_icon_minitimeAugust 26th 2013, 03:05 by Toxic

» -> T2K
school project (others ignore it please) I_icon_minitimeMay 24th 2013, 03:29 by Toxic

» IIHF Hockey Championship ends
school project (others ignore it please) I_icon_minitimeMay 19th 2013, 13:17 by Anthem

Ad


 

 school project (others ignore it please)

View previous topic View next topic Go down 
Go to page : 1, 2  Next
AuthorMessage
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 9th 2012, 02:55

Hi there! Outsiders ignore it. It means all of you. :)
Attachments
harj2.docx
harj2 (school project)
You don't have permission to download attachments.
(19 Kb) Downloaded 10 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
-Vendetta.
Assistance & Support
Assistance & Support
-Vendetta.

Posts : 11
Join date : 2011-12-21
Location : Estonia

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 9th 2012, 04:10

Does this mean I can delete this?
I mean, if it doesn't concern us..
Back to top Go down
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 9th 2012, 13:43

Yea just needed to download it from another computer. I had no flash drive with me so this was the fastest way to ensure our school project's healthy. :)
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 13th 2012, 03:15

Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 15th 2012, 23:38

theory class stuff

(gate circuits)
Attachments
jorma - teoriaa.docx
You don't have permission to download attachments.
(50 Kb) Downloaded 3 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeMarch 5th 2012, 05:29

Code:
<HTML>
<HEAD>
coding layouts + html usemap practice

<TITLE>Suomen kartta</TITLE>
</HEAD>
<BODY>

<div style="text-align: center;"><H3>Suomen kartta</H3>

<img src="http://www.metsakoneosastot.org/images/kartta.gif" width="400" height="460" alt="Suomen kartta" usemap="#usemap" />

<map name="usemap">
  <area shape="rect" coords="300,200,150,50" href="C:\Users\janne.hannuksela\Desktop\lappi.html" alt="Lappi"/>
  <area shape="circle" coords="200,350,50" href="C:\Users\janne.hannuksela\Desktop\oulu.html" alt="Oulu"/>
  <area shape="poly" coords="50,550,600,20,700,85,670,100,600" href="/ahvenanmaa.html" alt="Ahvenanmaa"/>
</map>

<p><font size="4">
<a href="C:\Users\janne.hannuksela\Desktop\ahvenanmaa.html">Ahvenanmaa</a><br/>
<a href="C:\Users\janne.hannuksela\Desktop\lappi.html">Lappi</a><br/>
<a href="C:\Users\janne.hannuksela\Desktop\oulu.html">Oulu</a><br/>
</font></p>
</div>
</BODY>
</HTML>



//kysy ja muuta oktaaliin ja hexaan Janne Hannuksela 5.3.

#include <stdio.h> //kirjastot käyttöön
#include <stdlib.h>

int main()
{
int luku;

while( luku!=0)
{   
   
//kysytään käyttäjältä
printf("\n\n Anna luku \n ");
printf("\n Lopetus luvun 0 \n");

scanf("%d,",&luku); //luetaan annettu arvo ohjelmalle

system ("color 80");

printf("\n\a Luku hexana %X ja oktaalina %o\n\n",luku,luku);

}

  system("PAUSE");   //dos-ikkunan hallinta
  return 0;
}






****** KOE 25.3. *******

//Joona Nurmi 25.3.2011
    #include <stdio.h>
    #include <stdlib.h>


int main()
{
int a;
int b;
int apu;
int i;

printf("Anna ensimmainen kokonaisluku(a): ");
scanf("%d",&a);
printf("\nAnna toinen kokonaisluku(b): ");
scanf("%d",&b);

apu=a;
a=b;
b=apu+3;

printf ("\n\nLuvun a uusi arvo on %d\n", a);
for (i=0;i<10;i++)
{
printf ("\nLuvun b uusi arvo on %d\n\n", b, i);
}
system("PAUSE");
return 0;
}

****** KOE 25.3. *******


******* ifelse *******

//ifelse numero Joona Nurmi

#include <stdio.h>
#include <stdlib.h>

int main()
{
 
int numero=0;

printf("\n\nAnna numero 1-4 valilta\n\n");

//lue annettu luku ohjelmaan
scanf("%d",&numero);

//jos numero on suurempi kuin 4 tai pienempi kuin 1 niin tulosta numero on väärä
if(numero>4||numero<1)printf("\nVaara numero\n\n");

//muutoin numero on oikea
else printf("\nNumero on oikea, ");

//jos numero on x tulosta: se on xx vaihtoehto
if(numero==1)printf("valitsit paskan numeron, voit poistua...\n\n");
if(numero==2)printf("valitsit toiseksi huonoimman vaihtoehdon!\n\n");
if(numero==3)printf("valitsit toiseksi parhaimman vaihtoehdon!\n\n");
if(numero==4)printf("valitsit voitokkaan numeron, hienoa!\n\n");

//jos numero 3 tai 2 niin hieno homma
if(numero==1||numero==2)printf("\nMee nyt vittuun...\n\n");

  system("PAUSE");   
  return 0;
}

******* ifelse *******

******* ympyran pinta-ala ******

//ympyran pinta-ala Joona Nurmi
#include <stdio.h>
#define PII 3.141492
#include <stdlib.h>

void main(void)
{
 
int sade;

float vastaus;

printf("Lasketaan pinta-ala, anna ympyran sade: ");
scanf("%d", &sade);

vastaus=PII*sade*sade;

printf("\n\nPinta-ala on %f",vastaus);
printf("\n");
 
  system("PAUSE");   
  return 0;
}

******* ympyran pinta-ala ******

****** jaollinen ******

//Joona Nurmi 18.2.2011
    #include <stdio.h>
    #include <iostream>

int main()
{
int a;

printf("Anna kokonaisluku: ");
scanf("%d", &a);

if (a %3) printf("%d ei ole jaollinen 3:lla.\n\n", a);
else printf("%d on jaollinen 3:lla. \n\n", a);

main();
return 0;
}

****** jaollinen ******

****** nimikysely ******

//nimikysely Joona Nurmi

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
 
char etunimi[20];
char sukunimi[30];
float kenka;

printf("\n\nAnna etunimi ja sukunimi\n");
scanf("%20s %30s",&etunimi,&sukunimi);

printf("\n\nAnna kengannumero\n");
scanf("%f",&kenka);
printf("\n\n\n");

printf("\nNimesi on %s %s ja kenkasi numero on %.1f",etunimi,sukunimi,kenka);
if(kenka>42)
printf(" ja olet vitun homoooo....");
printf("\n\n\n");

  system("PAUSE");   
  return 0;

****** nimikysely ******
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeMay 15th 2012, 22:27

Places where I can find answers correctly to my workpapers so I can get through my courses. :)

http://www.studydroid.com/index.php?page=viewPack&packId=19023

http://books.google.fi/books?id=twRn1ZFA8ngC&pg=PA724&lpg=PA724&dq=symmetric+key+algorithm+rijndael+RSA+Diffie-

Hellman+Knapsack&source=bl&ots=gLMVmg2aWl&sig=uivMBdGfQpxjEkc7Ikv3vvrD9eA&hl=fi&sa=X&ei=b0

GzT_K8J_DN4QTLn_3cCQ&ved=0CFkQ6AEwAA#v=snippet&q=SSL&f=false


Last edited by Trivi on September 25th 2012, 04:02; edited 2 times in total
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeJuly 5th 2012, 09:41

Moi
Attachments
lasku.png
You don't have permission to download attachments.
(24 Kb) Downloaded 3 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeSeptember 11th 2012, 20:56

Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeSeptember 25th 2012, 04:02

Ubuntu 12.04 Alternate for 64-bit based comps

file: 64-bit PC (AMD64) server install CD

Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeOctober 1st 2012, 23:06

navigointi GPS teht
Attachments
Pena17.8 1.txt
You don't have permission to download attachments.
(1 Kb) Downloaded 5 times
pena24.8.txt
You don't have permission to download attachments.
(1 Kb) Downloaded 4 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeOctober 2nd 2012, 03:05

Ubuntu 12.04 LTS downloaded and installed :)

Attachments
desktop.png
You don't have permission to download attachments.
(933 Kb) Downloaded 6 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeOctober 4th 2012, 04:15

paikannusjärjestelmä tehtävät
Attachments
navi ja gps teht.zip
You don't have permission to download attachments.
(362 Kb) Downloaded 3 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeOctober 4th 2012, 04:38

dev c++ teht
Attachments
Dev C++ JH.zip
You don't have permission to download attachments.
(2 Kb) Downloaded 4 times
Dev C_JH_tyot.zip
You don't have permission to download attachments.
(3 Kb) Downloaded 2 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeNovember 5th 2012, 00:50

my final job

Hi, my name is Jonas.
Attachments
janne hannuksela (ready).docx
You don't have permission to download attachments.
(691 Kb) Downloaded 5 times


Last edited by Trivi on November 12th 2012, 05:01; edited 2 times in total
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeNovember 7th 2012, 02:56

w8 icons
Attachments
w8_screenies.zip
You don't have permission to download attachments.
(192 Kb) Downloaded 3 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeNovember 13th 2012, 23:08

info on a test
Attachments
nayttokoe.txt
You don't have permission to download attachments.
(1 Kb) Downloaded 2 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeDecember 17th 2012, 09:33

default configs for triple x
Attachments
configs.zip
You don't have permission to download attachments.
(5 Kb) Downloaded 3 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeJanuary 15th 2013, 03:13

- Native language company project
- Xmas Party invitation
- Invitation to the opening
Attachments
yritysesite.docx
You don't have permission to download attachments.
(154 Kb) Downloaded 5 times
pikkujoulukutsu.docx
You don't have permission to download attachments.
(37 Kb) Downloaded 4 times
kutsu.docx
You don't have permission to download attachments.
(15 Kb) Downloaded 4 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeJanuary 18th 2013, 00:31

bill, offer, offer response
Attachments
tarjouspyynto.docx
You don't have permission to download attachments.
(15 Kb) Downloaded 3 times
tarjouspyynnon_vastaus.docx
You don't have permission to download attachments.
(15 Kb) Downloaded 3 times
lasku.docx
You don't have permission to download attachments.
(16 Kb) Downloaded 4 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeJanuary 25th 2013, 01:17

ready work
Attachments
janne hannuksela (VALMIS).docx
You don't have permission to download attachments.
(698 Kb) Downloaded 7 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeJanuary 25th 2013, 02:58

fluid
Attachments
fluid.zip
You don't have permission to download attachments.
(99 Kb) Downloaded 2 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeJanuary 31st 2013, 23:47

ghghg
Attachments
maksumuistutus_TULOSTA.docx
You don't have permission to download attachments.
(16 Kb) Downloaded 2 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 7th 2013, 02:14

dimitri vegas & like mike
Attachments
songs.zip
You don't have permission to download attachments.
(7.4 Mb) Downloaded 2 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Anthem
Administration & Development
Administration & Development
Anthem

Posts : 583
Join date : 2009-08-28
Age : 31
Location : Finland

school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitimeFebruary 7th 2013, 03:18

sdjodsojdsjos
Attachments
siemens.zip
You don't have permission to download attachments.
(189 Kb) Downloaded 1 times
Back to top Go down
https://www.facebook.com/janne.hannuksela
Sponsored content




school project (others ignore it please) Empty
PostSubject: Re: school project (others ignore it please)   school project (others ignore it please) I_icon_minitime

Back to top Go down
 

school project (others ignore it please)

View previous topic View next topic Back to top 
Page 1 of 2Go to page : 1, 2  Next

 Similar topics

-
» School

Permissions in this forum:You cannot reply to topics in this forum
 :: Locker :: Archive-