Wednesday, April 20, 2011

CrazyEngineers Forum

CrazyEngineers Forum


Is Free electric energy possible?

Posted: 20 Apr 2011 09:37 AM PDT

CEans, I have seen this while surfing for some videos . Do the generation of free electrical energy possible?



Note: Already tried this in different methods but failed

Diploma!Help!

Posted: 20 Apr 2011 09:09 AM PDT

I am doing the internship in the company providing custom manufacturing (lazer, AWJ, Plasma, Oxy cutting, bending, welding) service. Production type - single products, or small batch production.
actually the company do not name any engineering problem that is common in their activity except the need for new technology and automated stock.

But i do need to design the tool or structure that could help in any of mentioned processes - supporting/clamping equipments, loading system, transportation line from one manufacturing unit, universal structure for welding ... I have no idea!?

Please help! Any suggestions! and urgent!

I would be very grateful

The Big Question Facebook: Most Valuable Company in the World?

Posted: 20 Apr 2011 08:39 AM PDT

"Facebook is going to be the most valuable company in the world within 24 months," predicts NYU professor Scott Galloway, speaking at a recent L2 event.

http://fora.tv/2011/01/20/Scott_Gall...f_the_Internet

Meanwhile, flashback to 2006 when Mark Zuckerberg explains that he "threw together" the social network in about a week's time.
http://fora.tv/2006/11/30/Online_Per...ther_in_a_Week

Not for me to judge. For info.

Bioramani

Tunnelling Methods

Posted: 20 Apr 2011 07:01 AM PDT

Since tunnel is also part of Civil, why don't we discuss about tunnels, tunneling method, etc.
It's seems that there is no discussion here about tunnels. :)
I hope you all Civil CEans will contribute here. :)

Rainwater Harvesting

Posted: 20 Apr 2011 06:54 AM PDT

Can somebody here discuss about Rainwater Harvesting???
and also discuss Methods of Rainwater Harvesting:)

Silica fume concrete

Posted: 20 Apr 2011 06:50 AM PDT

:confused:;)I just want to ask these questions about SILICA FUME CONCRETE:
The characteristics of SILICA FUME
The properties of SILICA FUME CONCRETE
What are the advantages and disadvantages of using SILICA FUME???

Silica Fume is now widely used for high strength structures, so can you give some name of this structures???

micro processors and controllers-learn and contribute

Posted: 20 Apr 2011 06:46 AM PDT

hi friends,
as we are going with learn and contribute concept here i am giving a thread for micro processors and micro controllers
lets learn them and make the subject rocking :)
here i am giving a brief idea
let us see what is micro processor?
hmmmm i think my link of micro processor had answer for it
http://www.crazyengineers.com/forum/...s-history.html
the main difference of processor and controller upto my knowledge is
processor is used for many apps and controllers are used for only specified purposes
and the components inside them are different
now i am going to ask some questions as we usually do
as it is starting i am asking basic questions hoping this thread is going to be long
1.why we are upgrading processors with the increase in bit numbers?
2.what are the main logics used in design of processors and controllers?
3.why controllers are designed only for specific purposes?
rules:1.key paper will not be released
2.each post gets 1 mark :P
3.answers will be decided only by the discussions
finally 4.feel free to ask doubts in micro processors and controller project doubt in this thread and no spam please

k lets make all the people who are weak in this subject as experts in it
lets rock CE :happy:

The Green Concrete

Posted: 20 Apr 2011 06:22 AM PDT

Here is a video about Green Concrete.:D

Fibre Reinforced Concrete

Posted: 20 Apr 2011 06:19 AM PDT

I have here some questions about Fibre Reinforced Concrete and I hope civil Ceans will answer these.:):rolleyes:
1.What is a Fibre Reinforced Concrete???
2. What are the effect of fibre in concrete???
3. What are the factors effecting properties of Fibre Reinforced Concrete???
4. What are the different type of fibers usually used in the construction industries???

Demonstration of Standard Penetration Test

Posted: 20 Apr 2011 06:02 AM PDT

Here is a demonstration of Standard Penetration Test.

Cinema booking system

Posted: 20 Apr 2011 05:50 AM PDT

Hi there,

I have a little problem with java,
I can't find my mistakes if someone can help me to complete it,
I should submit my work on Monday before 16h

here is what i've done so far but doesn't want to compile:
Code:

Movie
title string
screen string
showtime string


List <Movie> moviz= new ArrayList<Movie>();

Movie m1= new Movie ("Men In Black", "Screen 10", "13h30,16h00,19h30" );
Movie m2= new Movie ("Matrixx", "Screen 11", "14h30, 16h30,18h30" );
Movie m3= new Movie ("Devdas", "Screen 12", "15h30, 18h00, 20h00" );
Movie m4= new Movie ("Source Code", "Screen 13", "13h30, 15h30, 17h00" );
Movie m5= new Movie ("Limitless", "Screen 14", "12h30, 15h00, 17h30" );

moviz.add(m1);
moviz.add(m2);
moviz.add(m3);
moviz.add(m4);
moviz.add(m5);

System.out.println(Movie); // implicity call toString method of List

public String toString()
{
return "(" + title +", "+ screen", "+ "showtime +")\n";
}

--------------------------------------------------------------------------------------

Class Cinema
{

private String film;
private STring screener;
private String showFilm;


public Cinema (String filmIn, String screenerIn, String showFilmIn);
{

film= filmIn;
screener= screenerIn;
showFilm= showFilmIn;
}


public String getFilm()
{
return film;
}


public String getScreener()
{
return screener;
}

public String getShowFilm()
{
return showFilm;
}

}

--------------------------------------------------------------------------------------------

import java.util.*;
import java.io.*;


public class MovieFileTester
{

public static void main (String [] args)
{
char choice;

List <Movie> moviz= new ArrayList<Movie>();
readList(moviz);


do
{

System.out.println("\nCinema Tester");
System.out.println("1. Add movie/seat");
System.out.println("2. Remove movie/seat");
System.out.println("3. List all movies");
System.out.println("4. Quit\n");

choice= EasyScanner.nextChar();
System.out.println();

switch (choice)
{
case '1' : addMovie(moviz); break;
case '2' : removeMovie (moviz); break;
case '3' : listAll (moviz); break;
case '4' : System.out.print ("\nPlease choose a number form 1 - 4 only \n" );
}
}while (choice !='4');
}


private static void addMovie (List<Movie>movieListIn)
{
String tempMov;
String tempScre;
String tempSho;

System.out.print("Please enter Movie title: ");
tempMov= EasyScanner.nextString();

System.out.print("Please enter Screen number: ");
tempScre= EasyScanner.nextString();

System.out.print("Please enter ShowTime: ");
tempSho= EasyScanner.nextString();

movieListIn.add(new Movie (tempMov, tempScre, tempSho));
}


private static void removeMovie(List<Movie>movieListIn)
 {

int pos;
System.out.print ("Enter position of the movie to be remove: ");
pos= EasyScanner.nextInt();
movieListIn.remove(pos - 1);

 }


private static void listAll(List<Movie>movieListIn)
 {

for (Movie item : movieListIn)
System.out.println(item.getFilm() + "" + item.getScreener() + "" + item.getShowFilm());

 }

}


private static void writerList(List<Movie>movieListIn)
{
try
{
FileWriter movieFile = new FileWriter("MyShow.txt");
PrintWriter movieWriter = new PrintWriter (movileFile);

for (Movie Item : movieListIn)
{

movieWriter.println(item.getFilm());
movieWriter.println(item.getScreener());
movieWriter.println(item.getShowFilm());
}
movieWriter.close();

}

catch(IOException e)
{
System.out.println("There was a problem writing the file");
}


}

private static void readList(List<Movie>movieListIn)

{
String tempMov;
String tempScre;
String tempSho;

try
{

FileReader movieFile = new FileReader ("MyShow.txt");

BufferedReader movieStream = new BufferedReader(movieFile);
tempMov=movieStream.readLine();
while (tempMov !=  null)
{
tempScre= movieStream.readLine();
tempSho= movieStream.readLine();
movieListIn.add(new Movie (tempMov, tempScre, tempSho));
tempMov = movieStream.readLine();
}
movieStream.close();

}

catch (FileNotFoundException e)
{
System.out.println("\nNo file was Read");
}

catch (IOException e)
{
System.out.println("\nThere was a problem reading the file");
}
}
}

Future of the Programming Languages Explained - Video Lecture

Posted: 20 Apr 2011 05:32 AM PDT

Dr.S.Arun Kumar, Department of Computer Science and Engineering ,IIT Delhi explained the Future of the Principles of Programming Languages. Feel free to ask your questions and contribute your ideas here..



Parameters in Principles of Programming Languages Explained - Video lecture

Posted: 20 Apr 2011 05:30 AM PDT

Dr.S.Arun Kumar, Department of Computer Science and Engineering ,IIT Delhi explained the concept of Parameters in Principles of Programming Languages. Feel free to ask your questions and contribute your ideas here...


Meanings in Principles of Programming Languages Explained - Video Lecture

Posted: 20 Apr 2011 05:29 AM PDT

Dr.S.Arun Kumar, Department of Computer Science and Engineering ,IIT Delhi explained the concept of Meanings in Principles of Programming Languages. Feel free to ask your questions and contribute your ideas here...


Procedures in Principles of Programming Languages Explained - Video Lecture

Posted: 20 Apr 2011 05:27 AM PDT

Dr.S.Arun Kumar, Department of Computer Science and Engineering ,IIT Delhi explained the concept of Procedures in Principles of Programming Languages. Feel free to ask your questions and contribute your ideas here...


No comments:

Post a Comment