examen
martes, 13 de noviembre de 2012
jueves, 1 de noviembre de 2012
Actividad 8°
Para Hoy mandarme las PPT de la Exposición Que equivale al 50% para hacer Revisión del material digital y la otra semana serial el otro 50% de la nota Muchas Gracias espero en mi correo pueda ver todos los mail de 8° y los que no lo han hecho aprovechen el espacio para terminarla.
Actividad 7 °-Tecnologia
Hola Chicos la actividad sera la siguiente
El articulo que usted desarrollo sobre tecnología lo va a convertir en un pdf
Trabajaremos con la creación de un pdf como hacerlo:
1 El articulo agregarle mas cosas después de la semana vista de conferencias proyectos adicionarle Que le pareció bueno, Que le Falto, y para futuras que le gustaría Luego de eso colocar imágenes con estos 3 aspectos.
2 Guardarlo en una carpeta el documento de Word
3 entrar a esta pagina http://convertpdftoword.net/
Y listo ya podran ustedes mandar el correo en PDF a mi mail jdiazingenieros@gmail.com
Es muy importante que lo hagan ya que en la tarde ingresare la nota de lo enviado
Muchas Gracias Chicos
TRABAJO DE 6 MAÑANA
LA ACTIVIDAD DIA DE MAÑANA
USTED REALIZARA EL PLANO DE LA SALA DE INFORMATICA CON TODOS LOS ACCESORIOS QUE EN ELLA EXISTEN AGREGARLE PISO VENTANAS PUERTAS COMPUTADORES AIRE TABLEROS SILLAS PERSONAS
LUEGO HACER LA CAPTURA DE PANTALLA
Y HACERLA EN LAS DIAPOSITIVAS
COMO EL EJEMPLO EXPLICADO EN CLASE
1=50% 2=MOUSE
periodicodigitalinca@gmail.com
Y EN TECNOLOGÍA REALIZAR UN ARTICULO SOBRE LA ROBOTICA CON LA TECNOLOGÍA LEGO
Y ENVIAR AL CORREO periodicodigitalinca@gmail.com
ACTIVIDAD 9 MAÑANA
Actividad :
1 )en el dia de hoy registrate en la pagina
2) Para el dia de mañana debes de traer tu mouse
3) Realizar tu diseño de tu casa en clase y mandarlo via mail
opcion Compartir
http://es.floorplanner.com/
martes, 30 de octubre de 2012
trabajos 4to periodo CP
reportados en diseño 11A
posada
coronel
obeso
navarro
muñoz
trabajo Sobre (fotomontaje.historia y realizar uno+sustentacion)
Reportados en 7°
informatica
hhherrera
Exposicion sobre funciones en Excel (trabajo y sustentacion)
Reportado 8
leady granados Alex Murcia (tec)
trabajo sobre tecnología lego y sustentación
Reportados 9
Comunicaciones 9°
ALVARADO CASTRO JUAN PABLO
CABRERA RAMIREZ DANIEL ALBERTO
DE LA HOZ MIRANDA CARLOS ANDRES
FERNANDEZ POLO JESUS MIGUEL
GAMEZ PEREZ FRANCISCO ANDRES
GARCES ANGULO OSWALDO JUNIOR
Exposicion y trabajo 3 grupos de 2
Sobre Redes Convergentes
jueves, 25 de octubre de 2012
jueves, 18 de octubre de 2012
miércoles, 17 de octubre de 2012
sábado, 13 de octubre de 2012
martes, 9 de octubre de 2012
sábado, 29 de septiembre de 2012
jueves, 13 de septiembre de 2012
CÓDIGO JAVA SCRIPT(EFECTO NIEVE)
<script language="JavaScript1.2">
/******************************************
* Snow Effect Script- By Altan d.o.o. (snow@altan.hr,
http://www.altan.hr/snow/index.html)
* Visit Dynamic Drive (http://www.dynamicdrive.com/) for full
source code
* Modified Dec 31st, 02' by DD. This notice must stay intact for
use
******************************************/
//Configure below to change URL path to the snow image
var snowsrc="snow.gif"
// Configure below to change number of snow to render
var no = 10;
var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;
if (ns4up||ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\"
top=\"15\" visibility=\"show\"><a
href=\"http://dynamicdrive.com/\"><img src='"+snowsrc+"'
border=\"0\"><\/a><\/layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\"
top=\"15\" visibility=\"show\"><img src='"+snowsrc+"'
border=\"0\"><\/layer>");
}
} else if (ie4up||ns6up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION:
absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT:
15px;\"><a href=\"http://dynamicdrive.com\"><img
src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION:
absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT:
15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
}
}
}
function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", 10);
}
function snowIE_NS6() { // IE and NS6 main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth :
document.body.clientWidth;
doc_height = ns6up?window.innerHeight :
document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i];
document.getElementById("dot"+i).style.left=xp[i] +
am[i]*Math.sin(dx[i]);
}
}
setTimeout("snowIE_NS6()", 10);
}
if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}
</script>
lunes, 10 de septiembre de 2012
sábado, 8 de septiembre de 2012
miércoles, 5 de septiembre de 2012
martes, 4 de septiembre de 2012
lunes, 3 de septiembre de 2012
martes, 28 de agosto de 2012
sábado, 25 de agosto de 2012
viernes, 24 de agosto de 2012
jueves, 16 de agosto de 2012
lunes, 23 de julio de 2012
sábado, 21 de julio de 2012
Practica 21 julio
Pon tu nombre o texto en movimiento: http://www.marqueetextlive.com/
sábado, 14 de julio de 2012
FUNDAMENTOS ENSAYO
PDF
A TENER EN CUENTA
EN WORD VAS A HACER UN ENSAYO TIENE QUE TENER PIE DE PAGINA Y ENCABEZADO DE PAGINA, IMÁGENES, Y MAPAS O ORGANIGRAMAS. LA IDEA NO ES COPIAR NI PEGAR SI NO QUE HAGAS UN ANÁLISIS DE LO MAS IMPORTANTE EL TEXTO ES BASTANTE GRANDE ASI QUE TIENEN PARA HACER TRABAJOS DIFERENTES VAMOS A TRABAJAR
A TENER EN CUENTA
EN WORD VAS A HACER UN ENSAYO TIENE QUE TENER PIE DE PAGINA Y ENCABEZADO DE PAGINA, IMÁGENES, Y MAPAS O ORGANIGRAMAS. LA IDEA NO ES COPIAR NI PEGAR SI NO QUE HAGAS UN ANÁLISIS DE LO MAS IMPORTANTE EL TEXTO ES BASTANTE GRANDE ASI QUE TIENEN PARA HACER TRABAJOS DIFERENTES VAMOS A TRABAJAR
sábado, 23 de junio de 2012
jueves, 21 de junio de 2012
Examen 6-7 Sabados DISEÑO
Hola Jovenes Este es el examen de diseño y artes
6-7 Sabados
NOTA: Responde bien las preguntas, No puedes hablar con otro Compañero ya que si lo haces se le anulara el examen tiene una duracion promedio de 30 minutos a 40 minutos. Acuerdate que estas en un Examen OJO.
Acontinucacion el LINK del EXAMEN:EXAMEN 6-7
6-7 Sabados
NOTA: Responde bien las preguntas, No puedes hablar con otro Compañero ya que si lo haces se le anulara el examen tiene una duracion promedio de 30 minutos a 40 minutos. Acuerdate que estas en un Examen OJO.
Acontinucacion el LINK del EXAMEN:EXAMEN 6-7
Examen 8-9 SABADOS DISEÑO
de 8-9
De Arte y Diseño
NOTA: Responde bien las preguntas, No puedes hablar con otro Compañero ya que si lo haces se le anulara el examen tiene una duracion promedio de 30 minutos a 40 minutos. Acuerdate que estas en un Examen OJO.
Acontinucacion el LINK del EXAMEN:EXAMEN DE DISEÑO
martes, 12 de junio de 2012
sábado, 9 de junio de 2012
TALLER PARA 8
TALLER 8-9
Jóvenes mi correo es jdiazingenieros@gmail.com Tienen Las dos hora para hacerlo y enviarlo
TALLER 8-9
Jóvenes mi correo es jdiazingenieros@gmail.com Tienen Las dos hora para hacerlo y enviarlo
martes, 29 de mayo de 2012
Taller de Comunicaciones
Guía Para Realizar el Guion Del Cortometraje
Ejemplo De Vídeo
Sobre Cortometraje
Diapositiva
Storyboard
viernes, 18 de mayo de 2012
martes, 8 de mayo de 2012
Codigo para colgar video en nuestra pagina
<object width="425" height="350">
<param name="movie" value="URL"></param>
<param name="wmode" value="transparent"></param>
<embed src="URL" type="application/x-shockwave-flash"
wmode="transparent" width="425" height="350">
<param name="movie" value="URL"></param>
<param name="wmode" value="transparent"></param>
<embed src="URL" type="application/x-shockwave-flash"
wmode="transparent" width="425" height="350">
sábado, 5 de mayo de 2012
EXAMEN DE DISEÑO 6-7
EXAMEN DE DISEÑO PARA HOY
EXAMEN DE DISEÑO PARA HOY
viernes, 4 de mayo de 2012
sábado, 14 de abril de 2012
Esta es la actividad de tecnologia Donde vamos a Realizar un video sobre la tarea de internet
Aqui estara paso a paso lo que debemos hacer Bien muchachso vamos mas abajo encontrararn un pdf donde se dan las explicaciones de como hacer un video
http://www.occ.upf.edu/img/imatges_cms/video%20cientifico.pdf
lunes, 9 de abril de 2012
Suscribirse a:
Entradas (Atom)