Standards for developing flexible, durable, and sustainable HTML and CSS.
This file contains hidden or 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
| <?php | |
| /** | |
| * PHPMailer SPL autoloader. | |
| * PHP Version 5.0.0 | |
| * @package PHPMailer | |
| * @link https://github.com/PHPMailer/PHPMailer/ | |
| * @author Marcus Bointon (coolbru) <phpmailer@synchromedia.co.uk> | |
| * @author Jim Jagielski (jimjag) <jimjag@gmail.com> | |
| * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net> | |
| * @author Brent R. Matzelle (original founder) |
This file contains hidden or 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
| // init and stop the inner slideshows | |
| var inners = $('.gallery-project .gallery-images').cycle().cycle('stop'); | |
| var slideshow = $('#slideshow').cycle({ | |
| fx: 'fade', | |
| speed: 300, | |
| timeout: 0, | |
| prev: '#prev', | |
| next: '#next', | |
| before: function() { |
Dean Rieck es un creativo y exitoso redactor de marketing directo. Recientemente ha publicado esta obra "¿Tiene Ud. estas 11 características de las personas altamente creativas?" en el maravilloso sitio Copyblogger.
Como mi título sugiere, estos 11 rasgos deberían fomentarse y desarrollarse en nuestros estudiantes. Estándares, pruebas y planes de estudios aprobados son importantes, pero no es suficiente. Tenemos que desarrollar lo que los alumnos realmente necesitan para tener éxito en el futuro. La creatividad es la ventaja que necesitan y tenemos que hacer lo mejor para desarrollarla.
Así que, gracias a Dean, aquí están 11 rasgos que los estudiantes necesitan para desarrollar su creatividad.
- "Tenga la VALENTíA de probar cosas nuevas y tomar riesgos. Cada gran avance empieza como una idea alocada. Esto no significa que usted debe ir constantemente con lo más atrevido, sólo que debe equilibrar su cartera de soluciones de rutina con una
This file contains hidden or 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
| 0:00 • Nils Ohrmann - In Ya Face | |
| 3:55 • Fritz Kalkbrenner - Kings | |
| 6:17 • Paul Kalkbrenner - Bengang | |
| 9:08 • Super Flu - Euterpeh | |
| 13:03 • andhim - Aleefee | |
| 17:30 • Mooryc - All Those Moments | |
| 20:54 • Theophilus London - Wine And Chocolates | |
| 24:45 • Theophilus London - Last Name London (Brodinski Remix) | |
| 28:10 • Klangkarussell - Sternenkinder | |
| 34:30 • andhim - Bermudachords |
This file contains hidden or 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
| task :give_me_the_data_bitch do | |
| data = "#{settings.root}/public/dataset.csv" | |
| puts "[#{Time.now.strftime("%H:%M:%S")}] Reading files..." | |
| CSV.foreach(data, :headers => false, :col_sep => ';') do |row| | |
| row[2] = row[2].include?(" x ") ? "TELEVISION" : row[2] | |
| row[4] = row[4].to_s.delete(",").to_f | |
| Medio.create(razon_social: row[0], periodo: row[1], medio: row[2], pauta: row[3], monto: row[4]) | |
| puts "[#{Time.now.strftime("%H:%M:%S")}] Saved record for #{row[0]}" |
This file contains hidden or 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
| # This looks pretty uggly | |
| JSON.pretty_generate(JSON.parse(Model.first.to_json(options))) | |
| # but doing this, the pretty_generate method ignores the `options` argument. | |
| JSON.pretty_generate(Model.first.attributes, options) |
This file contains hidden or 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
| id | nombre | rubro | marca | proveedor | precio | |
|---|---|---|---|---|---|---|
| 1 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 1500 CC | ALMACÉN | ZANONI | AFA | 10.85 | |
| 2 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 900 CC | ALMACÉN | ZANONI | AFA | 6.52 | |
| 3 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 900 CC | ALMACÉN | NATURA | AGD | 7.6 | |
| 4 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 900 CC | ALMACÉN | ALSAMAR | BUNGE | 6.52 | |
| 5 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 1500 CC | ALMACÉN | CORAZóN / GERSOL | GERMAíZ | 10.85 | |
| 6 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 900 CC | ALMACÉN | CAñUELAS | MOLINOS CAñUELAS | 7.32 | |
| 7 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 1500 CC | ALMACÉN | CAñUELAS | MOLINOS CAñUELAS | 11.8 | |
| 8 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 1500 CC | ALMACÉN | COCINERO | MOLINOS RíO DE LA PLATA | 12.02 | |
| 9 | ACEITE DE GIRASOL BOTELLA DE PLASTICO - 900 CC | ALMACÉN | COCINERO | MOLINOS RíO DE LA PLATA | 7.54 |
This file contains hidden or 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
| # This file is used by Rack-based servers to start the application. | |
| require ::File.expand_path('../config/environment', __FILE__) | |
| run YourAppName::Application |