This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fitoria@fitoria-laptop:~/code/katapult/qt4-port$ ls | |
acinclude.m4 AUTHORS ChangeLog configure.files COPYING INSTALL Mainpage.dox Makefile.am.in stamp-h.in TODO | |
admin autom4te.cache config.h.in configure.in.in INDEX katapult Makefile.am README subdirs VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tengo en mi poder en formato DVD con las dos partes del documental Zeitgeist subtituladas al español. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[19:02] <n0rman> ok | |
[19:02] <n0rman> empezemos | |
[19:02] * fitoria da tres golpes con el martillo (pok pok pok) | |
[19:02] <jorsol> empecemos pues... | |
[19:03] * n0rman le quita el martillo a fitoria y le pega en la cabeza :P | |
[19:03] <fitoria> tonces n0rman | |
[19:03] <fitoria> primer tema | |
[19:03] --> Angeltronix se ha unido a este canal ([email protected]). | |
[19:03] <Angeltronix> buenas | |
[19:04] <n0rman> primer tema? :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[letterpaper,10pt, fullpage]{report} | |
\usepackage[spanish]{babel} | |
\usepackage{graphicx} | |
\title{Trabajo Final de Organizaci\'on I} | |
\author{Adolfo Jurgen Fitoria Escobar\and Eduardo Manuel Rosales D\'{i}az} | |
\oddsidemargin 0.0in | |
\textwidth 6.5in | |
\begin{document} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Ya terminé de leer el libro, es tan impresionante! la verdad me hizo meterme mucho en el papel de Bella (es un nombre) y me terminé enamorando del vampiro igual, es precioso!!! pero el final es terriblemente frustante! yo queria que fuese vampira tambien!!!" | |
I already finished the book, it's so amazing! It made me get into the role of Bella(is a name) and I felt in love with the vampire too, is gorgeous!!! but in the end is terrible frustrating! I want her to be a vampire too!!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void rellenarTabla() //not workee | |
{ | |
DataSet ds = new DataSet(); | |
conexion con = new conexion(); | |
//rellena tabla cuando las maquinas estan ocupadas. | |
string query = "select maquinas.id_maquinas, nombre, disponible, hora_entrada, hora_salida from maquinas, tiempo_maquina " + | |
"where maquinas.id_maquinas = tiempo_maquina.id_maquinas or disponible = '0';"; | |
SQLiteCommand comando = new SQLiteCommand(query, con.ConexionSql); | |
SQLiteDataAdapter da = new SQLiteDataAdapter(comando); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------MODELO--------------------- | |
class Paciente < ActiveRecord::Base | |
belongs_to :usuario | |
has_many :resultados | |
end | |
----------------CONTROLADOR -------------------- | |
class PacienteController < ApplicationController |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##controlador | |
#auto_complete_for :modelo, :campo | |
auto_complete_for :paciente, :nombre | |
auto_complete_for :examen, :nombre | |
## config/routes.rb | |
map.resources :admin, :collection => {:auto_complete_for_paciente_nombre => :get,:auto_complete_for_examen_nombre => :get } ##no toy seguro pero seguro funca | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AdminController < ApplicationController | |
layout 'admin' | |
def index | |
end | |
#----------------PACIENTES ----------------------- | |
def crear_paciente | |
if request.post? # aca es para que no haga lo mismo con el get sino solo con el POST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map.connect ':controller/:action/:id' | |
map.connect ':controller/:action/:id.:format' | |
#map.root :controller => "admin" proba asi para mientras :P | |
map.resources :admin, :collection => {:auto_complete_for_paciente_nombre => :get,:auto_complete_for_examen_nombre => :get } |
OlderNewer