From: Ben Beltran Date: Mon, 9 May 2016 06:27:21 +0000 (-0500) Subject: Removes stuff that is no longer needed X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/commitdiff_plain/fb329d320f8a7c4cc0d05e5040e07d4ba6caffb3 Removes stuff that is no longer needed --- diff --git a/jekyll/_plugins/category_generator.rb b/jekyll/_plugins/category_generator.rb deleted file mode 100644 index c51a8c6..0000000 --- a/jekyll/_plugins/category_generator.rb +++ /dev/null @@ -1,40 +0,0 @@ -module Jekyll - - class CategoryIndex < Page - def initialize(site, base, dir, category) - @site = site - @base = base - @dir = dir - @name = 'index.html' - - self.process(@name) - self.read_yaml(File.join(base, '_layouts'), 'category_index.html') - self.data['category'] = category - - category_title_prefix = site.config['category_title_prefix'] || 'Category: ' - self.data['title'] = "#{category_title_prefix}#{category}" - self.data['description'] = "Lista de articulos categorizados #{category} en Abuguet, el blog mas guapo de videojuegos." - end - end - - class CategoryGenerator < Generator - safe true - - def generate(site) - if site.layouts.key? 'category_index' - dir = site.config['category_dir'] || 'categories' - site.categories.keys.each do |category| - write_category_index(site, File.join(dir, category), category) - end - end - end - - def write_category_index(site, dir, category) - index = CategoryIndex.new(site, site.source, dir, category) - index.render(site.layouts, site.site_payload) - index.write(site.dest) - site.pages << index - end - end - -end \ No newline at end of file diff --git a/jekyll/_plugins/generate_sitemap.rb b/jekyll/_plugins/generate_sitemap.rb deleted file mode 100644 index 0e3ab28..0000000 --- a/jekyll/_plugins/generate_sitemap.rb +++ /dev/null @@ -1,165 +0,0 @@ -# Jekyll sitemap page generator. -# http://recursive-design.com/projects/jekyll-plugins/ -# -# Version: 0.1.8 (201108151628) -# -# Copyright (c) 2010 Dave Perrett, http://recursive-design.com/ -# Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) -# -# A generator that creates a sitemap.xml page for jekyll sites, suitable for submission to -# google etc. -# -# To use it, simply drop this script into the _plugins directory of your Jekyll site. -# -# When you compile your jekyll site, this plugin will loop through the list of pages in your -# site, and generate an entry in sitemap.xml for each one. - -require 'pathname' - -module Jekyll - - - # Monkey-patch an accessor for a page's containing folder, since - # we need it to generate the sitemap. - class Page - def subfolder - @dir - end - end - - - # Sub-class Jekyll::StaticFile to allow recovery from unimportant exception - # when writing the sitemap file. - class StaticSitemapFile < StaticFile - def write(dest) - super(dest) rescue ArgumentError - true - end - end - - - # Generates a sitemap.xml file containing URLs of all pages and posts. - class SitemapGenerator < Generator - safe true - priority :low - - # Generates the sitemap.xml file. - # - # +site+ is the global Site object. - def generate(site) - # Create the destination folder if necessary. - site_folder = site.config['destination'] - unless File.directory?(site_folder) - p = Pathname.new(site_folder) - p.mkdir - end - - # Write the contents of sitemap.xml. - File.open(File.join(site_folder, 'sitemap.xml'), 'w') do |f| - f.write(generate_header()) - f.write(generate_content(site)) - f.write(generate_footer()) - f.close - end - - # Add a static file entry for the zip file, otherwise Site::cleanup will remove it. - site.static_files << Jekyll::StaticSitemapFile.new(site, site.dest, '/', 'sitemap.xml') - end - - private - - # Returns the XML header. - def generate_header - "\n" - end - - # Returns a string containing the the XML entries. - # - # +site+ is the global Site object. - def generate_content(site) - result = '' - - # First, try to find any stand-alone pages. - site.pages.each{ |page| - path = page.subfolder + '/' + page.name - - # Skip files that don't exist yet (e.g. paginator pages) - if FileTest.exist?(path) - - mod_date = File.mtime(site.source + path) - - # Use the user-specified permalink if one is given. - if page.permalink - path = page.permalink - else - # Be smart about the output filename. - path.gsub!(/.md$/, ".html") - end - - # Ignore SASS, SCSS, and CSS files - if path=~/.(sass|scss|css)$/ - next - end - - # Remove the trailing 'index.html' if there is one, and just output the folder name. - if path=~/\/index.html$/ - path = path[0..-11] - end - - if page.data.has_key?('changefreq') - changefreq = page.data["changefreq"] - else - changefreq = "" - end - - unless path =~/error/ - result += entry(path, mod_date, changefreq, site) - end - - end - } - - # Next, find all the posts. - posts = site.site_payload['site']['posts'] - for post in posts do - if post.data.has_key?('changefreq') - changefreq = post.data["changefreq"] - else - changefreq = "never" - end - url = post.url - url = url[0..-11] if url=~/\/index.html$/ - result += entry(url, post.date, changefreq, site) - end - - result - end - - # Returns the XML footer. - def generate_footer - "\n" - end - - # Creates an XML entry from the given path and date. - # - # +path+ is the URL path to the page. - # +date+ is the date the file was modified (in the case of regular pages), or published (for blog posts). - # +changefreq+ is the frequency with which the page is expected to change (this information is used by - # e.g. the Googlebot). This may be specified in the page's YAML front matter. If it is not set, nothing - # is output for this property. - def entry(path, date, changefreq, site) - # Remove the trailing slash from the baseurl if it is present, for consistency. - baseurl = site.config['baseurl'] - baseurl = baseurl[0..-2] if baseurl=~/\/$/ - - " - - #{baseurl}#{path} - #{date.strftime("%Y-%m-%d")}#{if changefreq.length > 0 - "\n #{changefreq}" end} - " - end - - end - -end diff --git a/jekyll/_plugins/tag_generator.rb b/jekyll/_plugins/tag_generator.rb deleted file mode 100644 index 1f616b6..0000000 --- a/jekyll/_plugins/tag_generator.rb +++ /dev/null @@ -1,40 +0,0 @@ -module Jekyll - - class TagIndex < Page - def initialize(site, base, dir, tag) - @site = site - @base = base - @dir = dir - @name = 'index.html' - - self.process(@name) - self.read_yaml(File.join(base, '_layouts'), 'tag_index.html') - self.data['tag'] = tag - - tag_title_prefix = site.config['tag_title_prefix'] || 'Tag: ' - self.data['title'] = "#{tag_title_prefix}#{tag}" - self.data['description'] = "Lista de articulos con la etiqueta #{tag} en Abuguet, el blog mas guapo de videojuegos." - end - end - - class TagGenerator < Generator - safe true - - def generate(site) - if site.layouts.key? 'tag_index' - dir = site.config['tag_dir'] || 'tags' - site.tags.keys.each do |tag| - write_tag_index(site, File.join(dir, tag), tag) - end - end - end - - def write_tag_index(site, dir, tag) - index = TagIndex.new(site, site.source, dir, tag) - index.render(site.layouts, site.site_payload) - index.write(site.dest) - site.pages << index - end - end - -end \ No newline at end of file diff --git a/jekyll/cerdoaleatorio/index.htm b/jekyll/cerdoaleatorio/index.htm index 191f32a..338ec3d 100644 Binary files a/jekyll/cerdoaleatorio/index.htm and b/jekyll/cerdoaleatorio/index.htm differ diff --git a/jekyll/cerdoaleatorio/script.coffee b/jekyll/cerdoaleatorio/script.coffee deleted file mode 100644 index 8a9439a..0000000 --- a/jekyll/cerdoaleatorio/script.coffee +++ /dev/null @@ -1,23 +0,0 @@ -class RandomPig - - # Initializes the RandomPig instance - constructor: - @imageSearch = null - - @queries = [ "Cute Pig -meat", "Piggie", "Nice Pig -meat", - "Happy Pig -meat", "Pig Toy", "Pig Plush", "Pig Cartoon", - "Cerdo Feliz", "Cerdito Feliz", "Cute Piggies", - "Happy Piggies", "piglets", "Cute piglets", - "Happy piglets", "かわいい 豚", "Funny Pig"] - @bufferSize = 5 - @history = 10 - - searchForPig: - - search: - - putPig: - - nextPig: - - lastPig: diff --git a/jekyll/clima/TWClogo_31px.png b/jekyll/clima/TWClogo_31px.png deleted file mode 100644 index 767ed29..0000000 Binary files a/jekyll/clima/TWClogo_31px.png and /dev/null differ diff --git a/jekyll/clima/index.php b/jekyll/clima/index.php deleted file mode 100644 index c8b8dc6..0000000 --- a/jekyll/clima/index.php +++ /dev/null @@ -1,216 +0,0 @@ - Initial Release * -* 0.2 -> Config options * -* 0.3 -> Day and Night * -*******************************/ - - -/*Weather.com configuration -********************************/ -$citycode = 'MXCA0026'; //Zip Code (US) or City code according to weather.com -$partnerid = '1140062701'; //Partner ID -$license = '5b323d77586070aa'; //License number - -/*Color Configuration -********************************/ -$nightbackground = '#222'; //main colors. -$daybackground = '#fff'; - -$daymaincolor = '#666'; -$nightmaincolor = '#e1e1e1;'; - -$taglinecolor = '#999'; - -$coldcolor = '#78d6fd'; //Colors for each temperature. -$coolcolor = '#1b95fb'; -$temperatecolor = '#999'; -$warmcolor = '#ff9226'; -$hotcolor = '#ff1818'; - -/*Text Configuration -*******************************/ -$maintext = 'Juárez está:'; -$title = '¿Cómo está el clima en Juárez?'; - -$coldstring = 'frio.'; //string for each temperature. -$coolstring = 'fresco.'; -$temperatestring = 'templado.'; -$warmstring = 'cálido.'; -$hotstring = 'caliente.'; - -$coldtagline = '(abrigate bien.)'; //tagline for each temperature. -$cooltagline = '(perfecto para un saco.)'; -$temperatetagline = '(ni fu ni fa.)'; -$warmtagline = '(como para estar afuera.)'; -$hottagline = '(hidrátate bien.)'; - -/*Temperature Configuration -******************************/ -$coldlimit = 15; //How many degrees? (celsius) -$coollimit = 20; -$temperatelimit = 25; -$warmlimit = 30; - - - -/****************************** -* DANGER! DANGER! * -******************************* -* Don't edit below this part * -* unless you know what you're * -* doing. * -******************************* -* It's not that hard really. * -* but it's better if we leave * -* it like it is. Unless you * -* like customizing the shit * -* out of stuff. * -*******************************/ - - - $ch = curl_init('http://xoap.weather.com/weather/local/'.$citycode.'?cc=*&link=xoap&prod=xoap&par='.$partnerid.'&key='.$license.''); //Initialize curl. - - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //More curl config - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 4); - - $data = curl_exec($ch); //this is your xml stuff - curl_close($ch); - - $xml = new SimpleXmlElement($data, LIBXML_NOCDATA); //now let's make an XmlElement - $feelslike = $xml->cc->flik; //This is the "Feel's Like temp" - $sunset = date('G.i',strtotime($xml->loc->suns)); - $sunrise = date('G.i',strtotime($xml->loc->sunr)); - $now = date('G.i',time()-28800); - $feelslike = ($feelslike -32)*5/9; //Convert fahrenheit to celsius. - - //now let's get the sponsored links. Stupid EULA. - $sponsors = ''.$xml->lnks->link[0]->t.' · '; - $sponsors .= ''.$xml->lnks->link[1]->t.' · '; - $sponsors .= ''.$xml->lnks->link[2]->t.' · '; - $sponsors .= ''.$xml->lnks->link[3]->t.''; - - - if(isset($_GET['temp'])){ - $feelslike = $_GET['temp']; //This overrides the weather.com temperature for debugging. - } - if(isset($_GET['now'])){ - $now = $_GET['now']; //This overrides the weather.com temperature for debugging. - } - - -echo ' -'; -?> - - - - - <?php echo $title; ?> - - - -
-
-'.$coldstring.'

'.$coldtagline.''; } -else if($feelslike < $coollimit){ echo '

'.$coolstring.'

'.$cooltagline.''; } -else if($feelslike < $temperatelimit){ echo '

'.$temperatestring.'

'.$temperatetagline.''; } -else if($feelslike < $warmlimit){ echo '

'.$warmstring.'

'.$warmtagline.''; } -else{ echo '

'.$hotstring.'

'.$hottagline.''; } -?> -
- - - \ No newline at end of file diff --git a/jekyll/clima/rain.gif b/jekyll/clima/rain.gif deleted file mode 100644 index 7121b70..0000000 Binary files a/jekyll/clima/rain.gif and /dev/null differ diff --git a/jekyll/clima2/index.php b/jekyll/clima2/index.php deleted file mode 100644 index a566de9..0000000 --- a/jekyll/clima2/index.php +++ /dev/null @@ -1,329 +0,0 @@ - Initial Release * -* 0.2 -> Config options * -* 0.3 -> Day and Night * -* 0.4 -> Fancy Canvas Version * -*******************************/ - - -/*Weather.com configuration -********************************/ -$citycode = 'MXCA0026'; //Zip Code (US) or City code according to weather.com -$partnerid = '1140062701'; //Partner ID -$license = '5b323d77586070aa'; //License number - -/*Color Configuration -********************************/ -$nightbackground = '#21272A'; //main colors. -$daybackground = '#99cce1'; - -$coldcolor = 'rgb(120,214,253)'; //Colors for each temperature. -$coolcolor = 'rgb(27,149,251)'; -$temperatecolor = 'rgb(153,153,153)'; -$warmcolor = 'rgb(255,146,38)'; -$hotcolor = 'rgb(255,24,24)'; - -/*Text Configuration -*******************************/ -$coldstring = 'frío.'; //string for each temperature. -$coolstring = 'fresco.'; -$regularstring = 'regular.'; -$warmstring = 'cálido.'; -$hotstring = 'caliente.'; - -$coldtagline = '(abrigate bien.)'; //tagline for each temperature. -$cooltagline = '(perfecto para un saco.)'; -$regulartagline = '(ni fu ni fa.)'; -$warmtagline = '(como para estar afuera.)'; -$hottagline = '(hidrátate bien.)'; - -/*Temperature Configuration -******************************/ -$coldlimit = 15; //How many degrees? (celsius) -$coollimit = 20; -$temperatelimit = 25; -$warmlimit = 30; - - - -/****************************** -* DANGER! DANGER! * -******************************* -* Don't edit below this part * -* unless you know what you're * -* doing. * -******************************* -* It's not that hard really. * -* but it's better if we leave * -* it like it is. Unless you * -* like customizing the shit * -* out of stuff. * -*******************************/ - - - $ch = curl_init('http://xoap.weather.com/weather/local/'.$citycode.'?cc=*&link=xoap&prod=xoap&par='.$partnerid.'&key='.$license.''); //Initialize curl. - - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //More curl config - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 4); - - $data = curl_exec($ch); //this is your xml stuff - curl_close($ch); - - $xml = new SimpleXmlElement($data, LIBXML_NOCDATA); //now let's make an XmlElement - $feelslike = $xml->cc->flik; //This is the "Feel's Like temp" - $sunset = date('G.i',strtotime($xml->loc->suns)); - $sunrise = date('G.i',strtotime($xml->loc->sunr)); - $now = date('G.i',time()-28800); - switch($xml->cc->icon){ - case 0: case 1: case 2: case 3: - case 4: case 5: case 6: case 7: - case 8: case 9: case 10: case 11: - case 12: case 13: case 14: case 15: - case 16: case 17: case 18: case 35: - case 37: case 38: case 39: case 40: - case 41: case 42: case 43: case 44: - case 45: case 46: case 47: - $sky = 2; - break; - case 19: case 20: case 21: case 22: - case 23: case 24: case 25: case 26: - case 27: case 28: case 29: case 30: - case 33: case 34: - $sky = 1; - break; - default: - $sky = 0; - } - $feelslike = ($feelslike -32)*5/9; //Convert fahrenheit to celsius. - - //now let's get the sponsored links. Stupid EULA. - $sponsors = ''.$xml->lnks->link[0]->t.' · '; - $sponsors .= ''.$xml->lnks->link[1]->t.' · '; - $sponsors .= ''.$xml->lnks->link[2]->t.' · '; - $sponsors .= ''.$xml->lnks->link[3]->t.''; - - - if(isset($_GET['temp'])){ - $feelslike = $_GET['temp']; //This overrides the weather.com temperature for debugging. - } - if(isset($_GET['now'])){ - $now = $_GET['now']; //This overrides the weather.com date for debugging. - } - if(isset($_GET['sky'])){ //This overrides the weather.com sky conditions for debugging. - $sky = $_GET['sky']; - } - - -echo ' -'; -?> - - - - - - ¿Cómo está el clima en Juárez? - - - - -
- -
- - \ No newline at end of file diff --git a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.eot b/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.eot deleted file mode 100644 index 08deeb7..0000000 Binary files a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.eot and /dev/null differ diff --git a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.svg b/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.svg deleted file mode 100644 index 7523f75..0000000 --- a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.svg +++ /dev/null @@ -1,235 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Copyright : Generated in 2009 by FontLab Studio Copyright info pending - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.ttf b/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.ttf deleted file mode 100644 index efbe8b4..0000000 Binary files a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.ttf and /dev/null differ diff --git a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.woff b/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.woff deleted file mode 100644 index 2e2cda9..0000000 Binary files a/jekyll/curriculum/fonts/league-gothic/League_Gothic-webfont.woff and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.eot b/jekyll/curriculum/fonts/pt-sans/PTS55F_W.eot deleted file mode 100644 index c8db3d0..0000000 Binary files a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.eot and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.svg b/jekyll/curriculum/fonts/pt-sans/PTS55F_W.svg deleted file mode 100644 index 82afb0b..0000000 --- a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.svg +++ /dev/null @@ -1,728 +0,0 @@ - - - - -Generated by SVGconv. -Copyright : Copyright 2009 ParaType Ltd. All rights reserved. -Designer : A.Korolkova, O.Umpeleva, V.Yefimov -Foundry : ParaType Ltd -Foundry URL : http://www.paratype.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.ttf b/jekyll/curriculum/fonts/pt-sans/PTS55F_W.ttf deleted file mode 100644 index cc0d908..0000000 Binary files a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.ttf and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.woff b/jekyll/curriculum/fonts/pt-sans/PTS55F_W.woff deleted file mode 100644 index 8af9db8..0000000 Binary files a/jekyll/curriculum/fonts/pt-sans/PTS55F_W.woff and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.eot b/jekyll/curriculum/fonts/pt-sans/PTS56F_W.eot deleted file mode 100644 index cb58fe2..0000000 Binary files a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.eot and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.svg b/jekyll/curriculum/fonts/pt-sans/PTS56F_W.svg deleted file mode 100644 index 6d7648a..0000000 --- a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.svg +++ /dev/null @@ -1,728 +0,0 @@ - - - - -Generated by SVGconv. -Copyright : Copyright 2009 ParaType Ltd. All rights reserved. -Designer : A.Korolkova, O.Umpeleva, V.Yefimov -Foundry : ParaType Ltd -Foundry URL : http://www.paratype.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.ttf b/jekyll/curriculum/fonts/pt-sans/PTS56F_W.ttf deleted file mode 100644 index 0fbee64..0000000 Binary files a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.ttf and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.woff b/jekyll/curriculum/fonts/pt-sans/PTS56F_W.woff deleted file mode 100644 index fe53379..0000000 Binary files a/jekyll/curriculum/fonts/pt-sans/PTS56F_W.woff and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.eot b/jekyll/curriculum/fonts/pt-serif/PTF55F_W.eot deleted file mode 100644 index a7002e1..0000000 Binary files a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.eot and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.svg b/jekyll/curriculum/fonts/pt-serif/PTF55F_W.svg deleted file mode 100644 index 124a3af..0000000 --- a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.svg +++ /dev/null @@ -1,728 +0,0 @@ - - - - -Generated by SVGconv. -Copyright : Copyright 2010 ParaType Ltd. All rights reserved. -Designer : A.Korolkova, O.Umpeleva, V.Yefimov -Foundry : ParaType Ltd -Foundry URL : http://www.paratype.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.ttf b/jekyll/curriculum/fonts/pt-serif/PTF55F_W.ttf deleted file mode 100644 index 74d9d15..0000000 Binary files a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.ttf and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.woff b/jekyll/curriculum/fonts/pt-serif/PTF55F_W.woff deleted file mode 100644 index 29317a7..0000000 Binary files a/jekyll/curriculum/fonts/pt-serif/PTF55F_W.woff and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.eot b/jekyll/curriculum/fonts/pt-serif/PTF56F_W.eot deleted file mode 100644 index 75ee113..0000000 Binary files a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.eot and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.svg b/jekyll/curriculum/fonts/pt-serif/PTF56F_W.svg deleted file mode 100644 index 52fb9a4..0000000 --- a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.svg +++ /dev/null @@ -1,728 +0,0 @@ - - - - -Generated by SVGconv. -Copyright : Copyright 2010 ParaType Ltd. All rights reserved. -Designer : A.Korolkova, O.Umpeleva, V.Yefimov -Foundry : ParaType Ltd -Foundry URL : http://www.paratype.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.ttf b/jekyll/curriculum/fonts/pt-serif/PTF56F_W.ttf deleted file mode 100644 index 1c39275..0000000 Binary files a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.ttf and /dev/null differ diff --git a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.woff b/jekyll/curriculum/fonts/pt-serif/PTF56F_W.woff deleted file mode 100644 index 7ea7522..0000000 Binary files a/jekyll/curriculum/fonts/pt-serif/PTF56F_W.woff and /dev/null differ diff --git a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.eot b/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.eot deleted file mode 100644 index d0ee33e..0000000 Binary files a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.eot and /dev/null differ diff --git a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.svg b/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.svg deleted file mode 100644 index bfe7057..0000000 --- a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Copyright : Copyright c Vangelis Makridakis 2006 All rights reserved -Designer : Vangelis Makridakis -Foundry : Vangelis Makridakis -Foundry URL : httpwwwvagdesigncom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.ttf b/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.ttf deleted file mode 100644 index 0a1cc94..0000000 Binary files a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.ttf and /dev/null differ diff --git a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.woff b/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.woff deleted file mode 100644 index c680710..0000000 Binary files a/jekyll/curriculum/fonts/vag-handwritten/VAG-HandWritten-webfont.woff and /dev/null differ diff --git a/jekyll/curriculum/images/avisotext.png b/jekyll/curriculum/images/avisotext.png deleted file mode 100644 index 070aba8..0000000 Binary files a/jekyll/curriculum/images/avisotext.png and /dev/null differ diff --git a/jekyll/curriculum/images/barrapeligro.png b/jekyll/curriculum/images/barrapeligro.png deleted file mode 100644 index 9ac351e..0000000 Binary files a/jekyll/curriculum/images/barrapeligro.png and /dev/null differ diff --git a/jekyll/curriculum/images/benpixel.png b/jekyll/curriculum/images/benpixel.png deleted file mode 100644 index 4cb8d28..0000000 Binary files a/jekyll/curriculum/images/benpixel.png and /dev/null differ diff --git a/jekyll/curriculum/images/blackbg.jpg b/jekyll/curriculum/images/blackbg.jpg deleted file mode 100644 index 86301d2..0000000 Binary files a/jekyll/curriculum/images/blackbg.jpg and /dev/null differ diff --git a/jekyll/curriculum/images/bluebg.jpg b/jekyll/curriculum/images/bluebg.jpg deleted file mode 100644 index aedbd9e..0000000 Binary files a/jekyll/curriculum/images/bluebg.jpg and /dev/null differ diff --git a/jekyll/curriculum/images/bullet.png b/jekyll/curriculum/images/bullet.png deleted file mode 100644 index ecf5fce..0000000 Binary files a/jekyll/curriculum/images/bullet.png and /dev/null differ diff --git a/jekyll/curriculum/images/greybg.jpg b/jekyll/curriculum/images/greybg.jpg deleted file mode 100644 index ba90df3..0000000 Binary files a/jekyll/curriculum/images/greybg.jpg and /dev/null differ diff --git a/jekyll/curriculum/images/headerbgtop.png b/jekyll/curriculum/images/headerbgtop.png deleted file mode 100644 index a03e68f..0000000 Binary files a/jekyll/curriculum/images/headerbgtop.png and /dev/null differ diff --git a/jekyll/curriculum/images/lightbox-blank.gif b/jekyll/curriculum/images/lightbox-blank.gif deleted file mode 100644 index 1d11fa9..0000000 Binary files a/jekyll/curriculum/images/lightbox-blank.gif and /dev/null differ diff --git a/jekyll/curriculum/images/lightbox-btn-close.gif b/jekyll/curriculum/images/lightbox-btn-close.gif deleted file mode 100644 index 33bcf51..0000000 Binary files a/jekyll/curriculum/images/lightbox-btn-close.gif and /dev/null differ diff --git a/jekyll/curriculum/images/lightbox-btn-next.gif b/jekyll/curriculum/images/lightbox-btn-next.gif deleted file mode 100644 index a0d4fcf..0000000 Binary files a/jekyll/curriculum/images/lightbox-btn-next.gif and /dev/null differ diff --git a/jekyll/curriculum/images/lightbox-btn-prev.gif b/jekyll/curriculum/images/lightbox-btn-prev.gif deleted file mode 100644 index 040ee59..0000000 Binary files a/jekyll/curriculum/images/lightbox-btn-prev.gif and /dev/null differ diff --git a/jekyll/curriculum/images/lightbox-ico-loading.gif b/jekyll/curriculum/images/lightbox-ico-loading.gif deleted file mode 100644 index 4f1429c..0000000 Binary files a/jekyll/curriculum/images/lightbox-ico-loading.gif and /dev/null differ diff --git a/jekyll/curriculum/images/perfilbg.jpg b/jekyll/curriculum/images/perfilbg.jpg deleted file mode 100644 index 8cff32c..0000000 Binary files a/jekyll/curriculum/images/perfilbg.jpg and /dev/null differ diff --git a/jekyll/curriculum/images/perfilbgbottom.png b/jekyll/curriculum/images/perfilbgbottom.png deleted file mode 100644 index 9b0832c..0000000 Binary files a/jekyll/curriculum/images/perfilbgbottom.png and /dev/null differ diff --git a/jekyll/curriculum/images/perfilbgtop.png b/jekyll/curriculum/images/perfilbgtop.png deleted file mode 100644 index 9c04022..0000000 Binary files a/jekyll/curriculum/images/perfilbgtop.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/abuguet-foros.png b/jekyll/curriculum/images/shots/abuguet-foros.png deleted file mode 100644 index 070dbe8..0000000 Binary files a/jekyll/curriculum/images/shots/abuguet-foros.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/abuguet-frontpage.png b/jekyll/curriculum/images/shots/abuguet-frontpage.png deleted file mode 100644 index ed4a338..0000000 Binary files a/jekyll/curriculum/images/shots/abuguet-frontpage.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/grita-form.png b/jekyll/curriculum/images/shots/grita-form.png deleted file mode 100644 index 8e49af5..0000000 Binary files a/jekyll/curriculum/images/shots/grita-form.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/grita-text.png b/jekyll/curriculum/images/shots/grita-text.png deleted file mode 100644 index f050600..0000000 Binary files a/jekyll/curriculum/images/shots/grita-text.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/pico-shot.png b/jekyll/curriculum/images/shots/pico-shot.png deleted file mode 100644 index cbde39b..0000000 Binary files a/jekyll/curriculum/images/shots/pico-shot.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/pico-stresstest.png b/jekyll/curriculum/images/shots/pico-stresstest.png deleted file mode 100644 index b84ae4f..0000000 Binary files a/jekyll/curriculum/images/shots/pico-stresstest.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/polarity-game.png b/jekyll/curriculum/images/shots/polarity-game.png deleted file mode 100644 index e01e8cc..0000000 Binary files a/jekyll/curriculum/images/shots/polarity-game.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/polarity-title.png b/jekyll/curriculum/images/shots/polarity-title.png deleted file mode 100644 index 01fe22d..0000000 Binary files a/jekyll/curriculum/images/shots/polarity-title.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/abuguet-foros.png b/jekyll/curriculum/images/shots/thumbs/abuguet-foros.png deleted file mode 100644 index 5bbfe6f..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/abuguet-foros.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/abuguet-frontpage.png b/jekyll/curriculum/images/shots/thumbs/abuguet-frontpage.png deleted file mode 100644 index f404885..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/abuguet-frontpage.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/grita-form.png b/jekyll/curriculum/images/shots/thumbs/grita-form.png deleted file mode 100644 index ade5111..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/grita-form.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/grita-text.png b/jekyll/curriculum/images/shots/thumbs/grita-text.png deleted file mode 100644 index 4bd993a..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/grita-text.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/pico-shot.png b/jekyll/curriculum/images/shots/thumbs/pico-shot.png deleted file mode 100644 index 4b06429..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/pico-shot.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/pico-stresstest.png b/jekyll/curriculum/images/shots/thumbs/pico-stresstest.png deleted file mode 100644 index b9520cb..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/pico-stresstest.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/polarity-game.png b/jekyll/curriculum/images/shots/thumbs/polarity-game.png deleted file mode 100644 index 57faa67..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/polarity-game.png and /dev/null differ diff --git a/jekyll/curriculum/images/shots/thumbs/polarity-title.png b/jekyll/curriculum/images/shots/thumbs/polarity-title.png deleted file mode 100644 index 9f96ecc..0000000 Binary files a/jekyll/curriculum/images/shots/thumbs/polarity-title.png and /dev/null differ diff --git a/jekyll/curriculum/images/sprites.png b/jekyll/curriculum/images/sprites.png deleted file mode 100644 index f523905..0000000 Binary files a/jekyll/curriculum/images/sprites.png and /dev/null differ diff --git a/jekyll/curriculum/images/venndiagram.png b/jekyll/curriculum/images/venndiagram.png deleted file mode 100644 index df3f177..0000000 Binary files a/jekyll/curriculum/images/venndiagram.png and /dev/null differ diff --git a/jekyll/curriculum/index.htm b/jekyll/curriculum/index.htm deleted file mode 100644 index e69de29..0000000 diff --git a/jekyll/curriculum/index.htm.bak b/jekyll/curriculum/index.htm.bak deleted file mode 100644 index 6615f3b..0000000 --- a/jekyll/curriculum/index.htm.bak +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - - - - - - - - - - Ben Beltrán · Curriculum Vitae - - -
-
-

Ben Beltrán

-

Curriculum Vitae

-
-

Ingeniero en Tecnologias Computacionales con espe­cialidad en Sistemas Inte­ligentes y Computo Visual.

-
-

Contacto

- -
-
-

Perfil

-

He tenido una formación académica enfocada al uso de algoritmos inteligentes y gráficos computacionales para el desarrollo de aplicaciones: Videojuegos, visualización de datos, minería de datos, etc.

-

Profesionalmente mi desarrollo ha sido principalmente en las áreas de Desarrollo Web, incluyendo programación, arquitectura de bases de datos y diseño de experiencia de usuario. Igualmente, he tenido la oportunidad de desarrollar habilidades de diseño de imagen y manejo de tipografía.

-
- [Diagrama: Web, Sistemas Inteligentes y Diseño] -
-
-
-

Experiencia Profesional

-
    -
  • -

    - Co-Fundador - en Koala Workshop - de 2010 a Presente - en Ciudad Juarez, Chih. -

    -

    Soy uno de los dos co-fundadores de Koala Workshop, una empresa de diseño y desarrollo de tecnologías web, hemos trabajado en la creación de soluciones de eventos para expos y convenciones internacionales y manejamos clientes binacionales que tienen un enfoque en hacer negocios en inglés y español.

    -
  • -
  • -

    - Instructor de Fotografía Digital - en ITESM - de 2010 a 2011 - en Ciudad Juárez, Chih. -

    -

    Estuve encargado de planear y dar el curso co-curricular de fotografía digital en el Tecnológico de Monterrey Campus Ciudad Juárez, en el cual se ven temas de funcionalidades de las cámaras digitales, técnicas de composición artística y por último el manejo de Adobe Photoshop para hacer modificaciones no destructivas.

    -
  • -
  • -

    - Organizador - en Temporada de Patos - de 2010 a Presente - en Ciudad Juárez, Chih. -

    -

    Encargado de planear la organización de la convención, expo y torneo nacional de videojuegos Temporada de Patos. Mis responsabilidades incluían contactar ponentes, planeación de logística, contactar proveedores, organización de voluntarios, diseño de imagen, desarrollo de plataforma tecnológica para registro de usuarios, desarrollo web, montaje de evento, maestro de ceremonias y otras actividades auxiliares requeridas para todo tipo de eventos.

    -

    Particularmente, me ha permitido tener un contacto con la industria de los videojuegos internacional, que tiene desde desarrolladores indie canadienses y líderes de comunidad de sitios importantes hasta algunos de los padres de la industria.

    -
  • -
  • -

    - Instructor de Curso de C - en ITESM - en el año 2010 - en Ciudad Juárez, Chih. -

    -

    Di un curso intensivo de programación en C para alumnos de Ingeniería en Tecnologías Computacionales que cubría la totalidad del lenguaje. Mis labores incluyeron la planeación del curso y el diseño de laboratorios.

    -
  • -
  • -

    - Encargado de Servidores - en ITESM - de 2009 a 2010 - en Ciudad Juárez, Chih. -

    -

    En mi tiempo como encargado del laboratorio de servidores estuve a cargo del manejo e implementación de servidores UNIX con servicios de: Bases de datos Oracle, repositorios SVN y depósito de archivos.

    -
  • -
  • -

    - Instructor de Desarrollo Web - en ITESM - en los años 2006 y 2008 - en Ciudad Juárez, Chih. -

    -

    En el 2006 estuve encargado de planear un curso básico de desarrollo web para alumnos de preparatoria que cubriera las tecnologías básicas como HTML y CSS.

    -

    En el 2008 tuve a cargo la planeación de un curso similar para alumnos de universidad que tuviera prácticas con configuración de ambientes LAMP, el uso lenguaje PHP y la arquitectura de bases de datos.

    -
  • -
  • -

    - Líder de Proyecto - en Compañía de Anuncios - de 2007 a 2008 - en Ciudad Juárez, Chih. -

    -

    En este tiempo estuve encargado de la programación y diseño de un proyecto llamado Shopping Hood en el cual tuve que desarrollar un portal dinámico para categorización y búsqueda de ofertas.

    -
  • -
-
-
-

Otros Proyectos

-
-

Video Juegos

-
    -
  • Polarity

    -
    Arena shooter con elementos de magnetismo.
    -

    Polarity es un arena shooter sencillo en el que debes controlar tu campo magnético para maximizar tu supervivencia y tu puntaje.

    -
      -
    • Polarity - Pantalla de Titulo
    • -
    • Polarity - Pantalla de Juego
    • -
    -
  • -
  • Pico

    -
    Engine para juegos en 2D en C y Lua.
    -

    Pico es un engine y un juego. Como motor, utiliza SDL para los gráficos y un módulo de scripting de Lua para controlar el comportamiento. Como juego, es un juego de plataformas minimalista en CMYK.

    -
      -
    • Pico - Pantalla de Juego
    • -
    • Pico - Prueba de Estrés
    • -
    -
  • -
-
-
-

Sitios Web

-
    -
  • Abuguet

    -
    Comunidad de gamers mexicana.
    -

    Abuguet nace a partir de la comunidad formada por el evento de Temporada de Patos, este es un lugar para discutir videojuegos y para juntarse a jugar.

    -
      -
    • Abuguet - Página Principal
    • -
    • Abuguet - Foros
    • -
    -
  • -
  • ¡Grita!

    -
    Comparte texto fácilmente en la calle o en internet.
    -

    ¡Grita! es un sitio en el que puedes subir texto para compartir en el internet por medio de una URL corta o en la vida real por medio de un QR-Code imprimible.

    -
      -
    • Grita - Forma Principal
    • -
    • Grita - Texto
    • -
    -
  • -
-
-
-
-

Educación & Habilidades

-

En mayo del 2010 gradué del Tecnológico de Monterrey Campus Ciudad Juárez con un título en Ingeniería en Tecnologías Computacionales con una concentración profesional en Sistemas Inteligentes y Computo Visual. Esto significa que aparte de mi formación en ciencias computacionales, tengo conocimiento en algoritmos metaheurísticos, de juego, y de búsqueda; y además conocimiento de gráficos computacionales y teoría de desarrollo de videojuegos

-
    -
  • Ruby, Javascript, C, C++, Lua & PHP
  • -
  • MySQL, MongoDB, & PostgreSQL
  • -
  • HTML, CSS, XML, RSS & ATOM
  • -
  • Ruby on Rails, CakePHP & Sinatra
  • -
  • OpenGL, SDL & Box2D
  • -
  • OS X, Linux & Windows
  • -
  • Subversion & Git
  • -
  • Adobe Photoshop & Adobe Illustrator
  • -
  • “Grid Based Design”
  • -
  • “Behavior Driven Development”
  • -
  • SCRUM & desarrollo ágil
  • -
  • 99.9% Inglés
  • -
  • Organización & logística de eventos
  • -
-
-
-

Aviso: Datos Personales a continuación

- -
- Da click en esta barra solamente si estás dispuesto a leer datos sobre los gustos personales y subjetivos de Ben Beltrán. La información contenida puede ser altamente polarizadora. -
-
-
- - diff --git a/jekyll/curriculum/jquery.lightbox-0.5.css b/jekyll/curriculum/jquery.lightbox-0.5.css deleted file mode 100644 index 62618a8..0000000 --- a/jekyll/curriculum/jquery.lightbox-0.5.css +++ /dev/null @@ -1,101 +0,0 @@ -/** - * jQuery lightBox plugin - * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/) - * and adapted to me for use like a plugin from jQuery. - * @name jquery-lightbox-0.5.css - * @author Leandro Vieira Pinho - http://leandrovieira.com - * @version 0.5 - * @date April 11, 2008 - * @category jQuery plugin - * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com) - * @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US - * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin - */ -#jquery-overlay { - position: absolute; - top: 0; - left: 0; - z-index: 90; - width: 100%; - height: 500px; -} -#jquery-lightbox { - position: absolute; - top: 0; - left: 0; - width: 100%; - z-index: 100; - text-align: center; - line-height: 0; -} -#jquery-lightbox a img { border: none; } -#lightbox-container-image-box { - position: relative; - background-color: #fff; - width: 250px; - height: 250px; - margin: 0 auto; -} -#lightbox-container-image { padding: 10px; } -#lightbox-loading { - position: absolute; - top: 40%; - left: 0%; - height: 25%; - width: 100%; - text-align: center; - line-height: 0; -} -#lightbox-nav { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; - z-index: 10; -} -#lightbox-container-image-box > #lightbox-nav { left: 0; } -#lightbox-nav a { outline: none;} -#lightbox-nav-btnPrev, #lightbox-nav-btnNext { - width: 49%; - height: 100%; - zoom: 1; - display: block; -} -#lightbox-nav-btnPrev { - left: 0; - float: left; -} -#lightbox-nav-btnNext { - right: 0; - float: right; -} -#lightbox-container-image-data-box { - font: 10px Verdana, Helvetica, sans-serif; - background-color: #fff; - margin: 0 auto; - line-height: 1.4em; - overflow: auto; - width: 100%; - padding: 0 10px 0; -} -#lightbox-container-image-data { - padding: 0 10px; - color: #666; -} -#lightbox-container-image-data #lightbox-image-details { - width: 70%; - float: left; - text-align: left; -} -#lightbox-image-details-caption { font-weight: bold; } -#lightbox-image-details-currentNumber { - display: block; - clear: left; - padding-bottom: 1.0em; -} -#lightbox-secNav-btnClose { - width: 66px; - float: right; - padding-bottom: 0.7em; -} \ No newline at end of file diff --git a/jekyll/curriculum/js/jquery.lightbox-0.5.pack.js b/jekyll/curriculum/js/jquery.lightbox-0.5.pack.js deleted file mode 100644 index 42d4db9..0000000 --- a/jekyll/curriculum/js/jquery.lightbox-0.5.pack.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * jQuery lightBox plugin - * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/) - * and adapted to me for use like a plugin from jQuery. - * @name jquery-lightbox-0.5.js - * @author Leandro Vieira Pinho - http://leandrovieira.com - * @version 0.5 - * @date April 11, 2008 - * @category jQuery plugin - * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com) - * @license CCAttribution-ShareAlike 2.5 Brazil - http://creativecommons.org/licenses/by-sa/2.5/br/deed.en_US - * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin - */ -eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(6($){$.2N.3g=6(4){4=23.2H({2B:\'#34\',2g:0.8,1d:F,1M:\'18/5-33-Y.16\',1v:\'18/5-1u-2Q.16\',1E:\'18/5-1u-2L.16\',1W:\'18/5-1u-2I.16\',19:\'18/5-2F.16\',1f:10,2A:3d,2s:\'1j\',2o:\'32\',2j:\'c\',2f:\'p\',2d:\'n\',h:[],9:0},4);f I=N;6 20(){1X(N,I);u F}6 1X(1e,I){$(\'1U, 1S, 1R\').l({\'1Q\':\'2E\'});1O();4.h.B=0;4.9=0;7(I.B==1){4.h.1J(v 1m(1e.17(\'J\'),1e.17(\'2v\')))}j{36(f i=0;i<1w g="5-b"><1w W="\'+4.1M+\'"><1i g="5-b-A-1t"><1i g="5-b-A-1g"><1w W="\'+4.1W+\'">\');f z=1D();$(\'#q-13\').l({2K:4.2B,2J:4.2g,S:z[0],P:z[1]}).1V();f R=1p();$(\'#q-5\').l({1T:R[1]+(z[3]/10),1c:R[0]}).E();$(\'#q-13,#q-5\').C(6(){1a()});$(\'#5-Y-29,#5-1s-22\').C(6(){1a();u F});$(G).2G(6(){f z=1D();$(\'#q-13\').l({S:z[0],P:z[1]});f R=1p();$(\'#q-5\').l({1T:R[1]+(z[3]/10),1c:R[0]})})}6 D(){$(\'#5-Y\').E();7(4.1d){$(\'#5-b,#5-s-b-T-w,#5-b-A-1g\').1b()}j{$(\'#5-b,#5-k,#5-k-V,#5-k-X,#5-s-b-T-w,#5-b-A-1g\').1b()}f Q=v 1j();Q.1P=6(){$(\'#5-b\').2D(\'W\',4.h[4.9][0]);1N(Q.S,Q.P);Q.1P=6(){}};Q.W=4.h[4.9][0]};6 1N(1o,1r){f 1L=$(\'#5-s-b-w\').S();f 1K=$(\'#5-s-b-w\').P();f 1n=(1o+(4.1f*2));f 1y=(1r+(4.1f*2));f 1I=1L-1n;f 2z=1K-1y;$(\'#5-s-b-w\').3f({S:1n,P:1y},4.2A,6(){2y()});7((1I==0)&&(2z==0)){7($.3e.3c){1H(3b)}j{1H(3a)}}$(\'#5-s-b-T-w\').l({S:1o});$(\'#5-k-V,#5-k-X\').l({P:1r+(4.1f*2)})};6 2y(){$(\'#5-Y\').1b();$(\'#5-b\').1V(6(){2u();2t()});2r()};6 2u(){$(\'#5-s-b-T-w\').38(\'35\');$(\'#5-b-A-1t\').1b();7(4.h[4.9][1]){$(\'#5-b-A-1t\').2p(4.h[4.9][1]).E()}7(4.h.B>1){$(\'#5-b-A-1g\').2p(4.2s+\' \'+(4.9+1)+\' \'+4.2o+\' \'+4.h.B).E()}}6 2t(){$(\'#5-k\').E();$(\'#5-k-V,#5-k-X\').l({\'K\':\'1C M(\'+4.19+\') L-O\'});7(4.9!=0){7(4.1d){$(\'#5-k-V\').l({\'K\':\'M(\'+4.1v+\') 1c 15% L-O\'}).11().1k(\'C\',6(){4.9=4.9-1;D();u F})}j{$(\'#5-k-V\').11().2m(6(){$(N).l({\'K\':\'M(\'+4.1v+\') 1c 15% L-O\'})},6(){$(N).l({\'K\':\'1C M(\'+4.19+\') L-O\'})}).E().1k(\'C\',6(){4.9=4.9-1;D();u F})}}7(4.9!=(4.h.B-1)){7(4.1d){$(\'#5-k-X\').l({\'K\':\'M(\'+4.1E+\') 2l 15% L-O\'}).11().1k(\'C\',6(){4.9=4.9+1;D();u F})}j{$(\'#5-k-X\').11().2m(6(){$(N).l({\'K\':\'M(\'+4.1E+\') 2l 15% L-O\'})},6(){$(N).l({\'K\':\'1C M(\'+4.19+\') L-O\'})}).E().1k(\'C\',6(){4.9=4.9+1;D();u F})}}2k()}6 2k(){$(d).30(6(12){2i(12)})}6 1G(){$(d).11()}6 2i(12){7(12==2h){U=2Z.2e;1x=27}j{U=12.2e;1x=12.2Y}14=2X.2W(U).2U();7((14==4.2j)||(14==\'x\')||(U==1x)){1a()}7((14==4.2f)||(U==37)){7(4.9!=0){4.9=4.9-1;D();1G()}}7((14==4.2d)||(U==39)){7(4.9!=(4.h.B-1)){4.9=4.9+1;D();1G()}}}6 2r(){7((4.h.B-1)>4.9){2c=v 1j();2c.W=4.h[4.9+1][0]}7(4.9>0){2b=v 1j();2b.W=4.h[4.9-1][0]}}6 1a(){$(\'#q-5\').2a();$(\'#q-13\').2T(6(){$(\'#q-13\').2a()});$(\'1U, 1S, 1R\').l({\'1Q\':\'2S\'})}6 1D(){f o,r;7(G.1h&&G.28){o=G.26+G.2R;r=G.1h+G.28}j 7(d.m.25>d.m.24){o=d.m.2P;r=d.m.25}j{o=d.m.2O;r=d.m.24}f y,H;7(Z.1h){7(d.t.1l){y=d.t.1l}j{y=Z.26}H=Z.1h}j 7(d.t&&d.t.1A){y=d.t.1l;H=d.t.1A}j 7(d.m){y=d.m.1l;H=d.m.1A}7(r - - - Curso Intensivo C - ITESM Campus Ciudad Juarez - Sep-Oct 2010 - - - - - - -
-

Curso Intensivo de C

-

Instructor

-
    -
  • Rubén Beltrán del Río — ben@nsovocal.com
  • -
-

Ligas de Interes

- -

Laboratorios

- -
- - - -

LAB01

-

Programa que imprime un listado de Celsius a Fahrenheit desde MIN_VAL a MAX_VAL aumentando los grados en STEP.

-

(ver printf() y las opciones de formato %d y %f)

-

Ejemplo de Salida.

-
$ ./lab01
-  0   32.0
-  5   41.0
- 10   50.0
- 15   59.0
- 20   68.0
- 25   77.0
- 30   86.0
- 35   95.0
- 40  104.0
- 45  113.0
- 50  122.0
- 55  131.0
- 60  140.0
- 65  149.0
- 70  158.0
- 75  167.0
- 80  176.0
- 85  185.0
- 90  194.0
- 95  203.0
-100  212.0
-

Mejor Solución de la clase
Volver Arriba.

-
- - - -

LAB02

-

Programa que cuente el número de líneas y carácteres de una entrada de texto sencilla hasta que llegue a EOF.

-

(usar getchar() para obtener carácter de uno en uno. Ctrl+D es igual a EOF en Unix)

-

Ejemplo de Salida.

-
$ ./lab02
-this is a sample thing
-that you must count
-until you end the file with EOF   
-(That's Ctrl+D)^D
-91 caracteres en 4 lineas.
-

Mejor Solución de la clase
Volver Arriba.

-
- - - -

LAB03

-

Escribir un programa que lea varias líneas de tamaño máximo MAXLINE hasta que encuentre una línea vacía e imprima la más larga. Se deben usar variables externas para las funciones: una función getline(void) que almacene la línea actual y regrese su tamaño y una función copy(void) que copie la línea actual a un buffer especial para la más larga.

-

(No olvides que debes terminar el buffer con el carácter nulo '\0'.)

-

Ejemplo de Salida.

-
$ ./lab03
-Esta es una linea Larga.
-Esta linea es mas larga que la anterior.
-La siguiente linea esta vacia:
-
-
-Esta linea es mas larga que la anterior.
-

Mejor Solución de la clase
Volver Arriba.

-
- - - -

LAB04

-

Escribir un programa que reciba una línea de longitud MAXLINE y la imprima al revés. Se puede lograr fácilmente modificando ligeramente LAB03. De nuevo, se deben usar variables externas y ninguna de las funciones debe recibir parametros.

-

(Ver la función putchar().)

-

Ejemplo de Salida.

-
$ ./lab04
-Esta linea debe estar al reves
-
-sever la ratse ebed aenil atsE
-

Mejor Solución de la clase
Volver Arriba.

-
- - - -

LAB05

-

Escribir una función invert(x,p,n) que reciba un numero entero sin signo, una posición y un rango y devuelva x con n bits invertidos a partir de p.

-

(XOR (^) tiene una propiedad de invertir bits.)

-

Ejemplo de Salida.

-
$ ./lab05
-Introduzca un numero: 1       
-Introduzca una posicion: 2
-Introduzca un rango: 4
-Invertir 4 bits en 1 empezando de 2 es igual a: 61
-

Mejor Solución de la clase
Volver Arriba.

-
- - - -

LAB06

-

Escribir una función strindex() que reciba dos strings. Debe devolver la posición en la que ocurre el string2 dentro del string1 o -1 si no se encuentra.

-

(La función gets puede servir para obtener strings con espacios.)

-

Ejemplo de Salida.

-
$ ./lab06
-Escribe un String: Esta es una prueba
-Escribe algo que Buscar: prueba
-Encontre el string en la posición: 12
-
-$ ./lab06
-Escribe un String: Esta es otra prueba
-Escribe algo que Buscar: string
-No se encontro "string" en "Esta es otra prueba".
-

Mejor Solución de la clase
Volver Arriba.

-
- - - -

LAB07

-

Escribir una versión recursiva de LAB04.

-

(Considerar el orden de ejecución de los miembros de la función recursiva.)

-

Ejemplo de Salida.

-
$ ./lab07
-Esta es una prueba.
-.abeurp anu se atsE
-

Mejor Solución de la clase
Volver Arriba.

-
- -
- - diff --git a/jekyll/cursoc/style.css b/jekyll/cursoc/style.css deleted file mode 100644 index 83349c7..0000000 --- a/jekyll/cursoc/style.css +++ /dev/null @@ -1,60 +0,0 @@ -*{ - margin: 0; - padding: 0; -} - -body{ - text-align: center; - font-size: .625em; - font-family: Times, "Times New Roman", serif; - color: #000; -} - -#wrapper{ - margin: 0 auto; - width: 600px; - text-align: left; -} - -code{ - background-color: #eee; - padding: 2px; -} - -pre, code{ font-family: Monaco, Consolas, "Courier New", monospace; font-size: .75em;} - -pre{ - font-size: 1.2em; - line-height: 1.8em; -} - -p{ - font-size: 1.6em; - line-height: 1.8em; -} - -p{ margin: 10px; } - -pre{ - border-left: 1px solid #ccc; - padding-left: 20px; - margin: 20px; -} - -li{ - margin-left: 60px; - font-size: 1.6em; - line-height: 1.8em; -} - -h1{ font-size: 3.6em; margin: 10px 0; border-bottom: 1px solid #ccc; padding-bottom: 20px; } -h2{ font-size: 2.4em; margin: 5px 0; padding-top: 20px; } -h3{ font-size: 1.8em; margin: 5px 0; padding-top: 20px; } -h4{ font-size: 1.6em; margin: 5px 0; padding-top: 20px; } - -a{ color: #2f6e9f; } -h3 a, h2 a{ color: #000; } -hr{ border: 0; border-bottom: 1px solid #ccc; margin: 20px 0; } - -a.solucion{ padding-left: 12px; background-image: url(./img/document.gif); background-repeat: no-repeat;} -a.volver{ padding-left: 12px; background-image: url(./img/arrow_dash_up.gif); background-repeat: no-repeat;} \ No newline at end of file diff --git a/jekyll/cursoc/syllabus-curso-c.pdf b/jekyll/cursoc/syllabus-curso-c.pdf deleted file mode 100644 index 2895d5d..0000000 Binary files a/jekyll/cursoc/syllabus-curso-c.pdf and /dev/null differ diff --git a/jekyll/esposario/error_log b/jekyll/esposario/error_log deleted file mode 100644 index 2961835..0000000 --- a/jekyll/esposario/error_log +++ /dev/null @@ -1 +0,0 @@ -[02-Jul-2010 06:06:26] PHP Parse error: syntax error, unexpected '<' in /usr/home/nsovocal/public_html/esposario/index.php on line 31 diff --git a/jekyll/esposario/img/ash-stymest.png b/jekyll/esposario/img/ash-stymest.png deleted file mode 100644 index ec50a1a..0000000 Binary files a/jekyll/esposario/img/ash-stymest.png and /dev/null differ diff --git a/jekyll/esposario/img/brandon-reilly.png b/jekyll/esposario/img/brandon-reilly.png deleted file mode 100644 index f102c2d..0000000 Binary files a/jekyll/esposario/img/brandon-reilly.png and /dev/null differ diff --git a/jekyll/esposario/img/default.png b/jekyll/esposario/img/default.png deleted file mode 100644 index 1671cba..0000000 Binary files a/jekyll/esposario/img/default.png and /dev/null differ diff --git a/jekyll/esposario/img/devendra-banhart.png b/jekyll/esposario/img/devendra-banhart.png deleted file mode 100644 index f459c2d..0000000 Binary files a/jekyll/esposario/img/devendra-banhart.png and /dev/null differ diff --git a/jekyll/esposario/img/el-residente.png b/jekyll/esposario/img/el-residente.png deleted file mode 100644 index 0d83df8..0000000 Binary files a/jekyll/esposario/img/el-residente.png and /dev/null differ diff --git a/jekyll/esposario/img/julio-cortazar.png b/jekyll/esposario/img/julio-cortazar.png deleted file mode 100644 index 37b621d..0000000 Binary files a/jekyll/esposario/img/julio-cortazar.png and /dev/null differ diff --git a/jekyll/esposario/img/spock.png b/jekyll/esposario/img/spock.png deleted file mode 100644 index 10198d0..0000000 Binary files a/jekyll/esposario/img/spock.png and /dev/null differ diff --git a/jekyll/esposario/img/thin-man.png b/jekyll/esposario/img/thin-man.png deleted file mode 100644 index 01511a6..0000000 Binary files a/jekyll/esposario/img/thin-man.png and /dev/null differ diff --git a/jekyll/esposario/index.php b/jekyll/esposario/index.php deleted file mode 100644 index 070cb50..0000000 --- a/jekyll/esposario/index.php +++ /dev/null @@ -1,37 +0,0 @@ - - - - Pequeño Esposario Ilustrado - - - - - - -
- 7){ - $day = 0; - } - ?> -

El esposo de Gaby del día es:

-

.

- <?php echo $esposos[$day][0]; ?> -
- - diff --git a/jekyll/esposario/style.css b/jekyll/esposario/style.css deleted file mode 100644 index 4777716..0000000 --- a/jekyll/esposario/style.css +++ /dev/null @@ -1,31 +0,0 @@ -*{ - margin: 0; - padding: 0; -} - -body{ - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: .625em; - text-align: center; -} - -#wrapper{ - text-align: left; - margin: 20px auto; - width: 361px; -} - -#wrapper img{ - width: 361px; - height: 465px; -} - -h1{ - color: #EC008C; - font-size: 3.6em; -} - -p{ - color: #666; - font-size: 1.2em; -} \ No newline at end of file diff --git a/jekyll/gaby/.htaccess b/jekyll/gaby/.htaccess deleted file mode 100644 index aec7507..0000000 --- a/jekyll/gaby/.htaccess +++ /dev/null @@ -1,8 +0,0 @@ -RewriteEngine On - -RewriteRule ^duerme$ index.php?act=duerme -RewriteRule ^duerme/$ index.php?act=duerme -RewriteRule ^estudia/$ index.php?act=estudia -RewriteRule ^estudia$ index.php?act=estudia -RewriteRule ^nyawnyawnyaw/$ nyawnyawnyaw.php -RewriteRule ^nyawnyawnyaw$ nyawnyawnyaw.php \ No newline at end of file diff --git a/jekyll/gaby/Inconsolata-webfont.ttf b/jekyll/gaby/Inconsolata-webfont.ttf deleted file mode 100644 index 9246862..0000000 Binary files a/jekyll/gaby/Inconsolata-webfont.ttf and /dev/null differ diff --git a/jekyll/gaby/Inconsolata-webfont.woff b/jekyll/gaby/Inconsolata-webfont.woff deleted file mode 100644 index ad76430..0000000 Binary files a/jekyll/gaby/Inconsolata-webfont.woff and /dev/null differ diff --git a/jekyll/gaby/error_log b/jekyll/gaby/error_log deleted file mode 100644 index f1bf449..0000000 --- a/jekyll/gaby/error_log +++ /dev/null @@ -1,15 +0,0 @@ -[11-Feb-2011 01:28:47] PHP Parse error: syntax error, unexpected '}' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 17 -[02-Mar-2011 19:11:12] PHP Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 69 -[02-Mar-2011 19:11:30] PHP Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 69 -[02-Mar-2011 19:25:20] PHP Fatal error: Call to undefined function mhtmlspecialchars() in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 76 -[04-Mar-2011 20:05:49] PHP Parse error: syntax error, unexpected ';', expecting ')' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 41 -[04-Mar-2011 20:06:48] PHP Parse error: syntax error, unexpected ';', expecting ')' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 41 -[04-Mar-2011 20:06:51] PHP Parse error: syntax error, unexpected ';', expecting ')' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 41 -[04-Mar-2011 20:07:26] PHP Parse error: syntax error, unexpected ';', expecting ')' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 41 -[04-Mar-2011 20:08:28] PHP Parse error: syntax error, unexpected ';', expecting ')' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 41 -[04-Mar-2011 20:15:20] PHP Parse error: syntax error, unexpected '=', expecting ',' or ';' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 20 -[04-Mar-2011 20:22:21] PHP Parse error: syntax error, unexpected $end in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 61 -[04-Mar-2011 21:27:19] PHP Parse error: syntax error, unexpected $end, expecting '(' in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 62 -[04-Mar-2011 21:28:40] PHP Fatal error: Call to undefined function utf_encode() in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 48 -[04-Mar-2011 21:48:13] PHP Parse error: syntax error, unexpected $end in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 77 -[04-Mar-2011 21:51:59] PHP Parse error: syntax error, unexpected $end in /usr/home/nsovocal/public_html/gaby/nyawnyawnyaw.php on line 68 diff --git a/jekyll/gaby/index.php b/jekyll/gaby/index.php deleted file mode 100644 index 46385db..0000000 --- a/jekyll/gaby/index.php +++ /dev/null @@ -1,202 +0,0 @@ - - - - :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) :) - - - - - - - - - - - - - -
!
- - \ No newline at end of file diff --git a/jekyll/gaby/nyawnyawnyaw.php b/jekyll/gaby/nyawnyawnyaw.php deleted file mode 100644 index f8a96fe..0000000 --- a/jekyll/gaby/nyawnyawnyaw.php +++ /dev/null @@ -1,173 +0,0 @@ - - - - - nyaw nyaw nyaw :3 - - - - - - -
-
".htmlspecialchars($chars[$i][$j]).""; - }else{ - echo "".htmlspecialchars(chr(rand(33,126))).""; - } - } - echo "
 
\n"; - } - ?>
-
- - diff --git a/jekyll/gabyodiaaben/error_log b/jekyll/gabyodiaaben/error_log deleted file mode 100644 index 21f31b0..0000000 --- a/jekyll/gabyodiaaben/error_log +++ /dev/null @@ -1,17 +0,0 @@ -[26-Apr-2010 18:55:01] PHP Parse error: syntax error, unexpected '}' in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 7 -[26-Apr-2010 18:55:26] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:56:01] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:56:18] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:56:32] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:57:21] PHP Parse error: syntax error, unexpected '{' in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:57:53] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:58:02] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:58:27] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 18:58:29] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 19:02:21] PHP Warning: fopen(/public_html/gabyodiaaben/odia.txt) [function.fopen]: failed to open stream: No such file or directory in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 4 -[26-Apr-2010 19:02:59] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 -[26-Apr-2010 19:08:53] PHP Warning: fopen(/usr/home/nsovocal/public_html/gabyodiaaben/odia.txt) [function.fopen]: failed to open stream: No such file or directory in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 18 -[26-Apr-2010 19:09:04] PHP Warning: fopen(/usr/home/nsovocal/public_html/gabyodiaaben/odia.txt) [function.fopen]: failed to open stream: No such file or directory in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 18 -[26-Apr-2010 19:09:08] PHP Warning: fopen(/usr/home/nsovocal/public_html/gabyodiaaben/odia.txt) [function.fopen]: failed to open stream: No such file or directory in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 18 -[26-Apr-2010 19:12:50] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 9 -[26-Apr-2010 19:16:50] PHP Warning: fread() [function.fread]: Length parameter must be greater than 0 in /usr/home/nsovocal/public_html/gabyodiaaben/index.php on line 5 diff --git a/jekyll/gabyodiaaben/index.php b/jekyll/gabyodiaaben/index.php deleted file mode 100644 index 7a7e207..0000000 --- a/jekyll/gabyodiaaben/index.php +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - Gaby odia a ben? - - - - - - - - - - diff --git a/jekyll/gabyodiaaben/odio b/jekyll/gabyodiaaben/odio deleted file mode 100644 index ba28208..0000000 --- a/jekyll/gabyodiaaben/odio +++ /dev/null @@ -1 +0,0 @@ -NO \ No newline at end of file diff --git a/jekyll/juegos2009.html b/jekyll/juegos2009.html deleted file mode 100644 index 45d68f9..0000000 --- a/jekyll/juegos2009.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - Juegos Pasados - - - - -
-

Juegos Pasados Per Capita. (2009)

- -
- - \ No newline at end of file diff --git a/jekyll/lyricli/index.md b/jekyll/lyricli/index.md deleted file mode 100644 index 2af8fb5..0000000 --- a/jekyll/lyricli/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: post -title: "Introducing Lyricli — Command line lyrics." -category: posts -tags: lyricli -date: 2013-01-19 -url: /2013/03/12/introducing-lyricli/ -description: "Introducing lyricli, a lyrics client for your terminal -written in ruby" ---- - -I'm the kind of person that enjoys reading lyrics of some songs while I listen to music. I'm also the kind of person that enjoys listening to music with lyrics while working. Also, the kind of person that spends a lot of time inside a terminal. So I decided to do a little lyrics client to use inside a pane of my tmux sessions. I've been using it for a while, but hadn't released it because I never got to writing tests for it. - -If you're into music with lyrics in the terminal, give it a spin. The easiest way to install is through rubygems - - gem install lyricli - -Lyricli uses an engine system that allows it to extract your current song from different places. Since I'm an iTunes+Rdio kind of guy, those are the included ones. Lyricli is usable in the form of the `lrc` command. To get lyrics for a song you can do it in several ways. The most basic is to call it with the artist and the song as the arguments. For example: - - lrc "Of Montreal" "An Eluardian Instance" - -The easiest and most useful way though, is by using the included sources. To see what engines are available, call lyricli with the `-l` or `--list-sources`. For now it should just display itunes and rdio. You can enable a source by calling lyricli with the `-e` or `--enable` flags. For example: - - lrc -e rdio - -Depending on the source, this will give you certain instructions to enable the source. For example, rdio asks you to authorize the app, displays the URL and an input for the authorization code. Once your engine is set up, you can just call `lrc` while listening to music, and it will automatically find the lyrics for your current song. (You could just use `watch -n 10 lrc` and have an auto-updating lyric pane inside tmux or screen.) If you want to disable a source you can call lyricli with the `-d` or `--disable` flags, with the source name as parameter. Additionally you can use `-r` or `--reset` flags, again with the name of the source to clean up all the stored settings. - -That's about it. I hope it's as useful to you as it has been to me. In my laptop I usually have a vim window with a small sidebar where I run lyricli, while at work I use it as a narrow column that sits between vim and two regular zsh windows (yay! screen real estate!) . - -Check out the code on [github][github] and [let me know what you think][twitter]. If you need a new source, feel free to let me know, if I have a way to I'll do my best to; or you can try creating one yourself. It's really easy, and you can check the included rdio and itunes files to check how it's done. - -[github]: http://github.com/rbdr/lyricli -[twitter]: http://twitter.com/pigeonfolk diff --git a/jekyll/mesias.gif b/jekyll/mesias.gif deleted file mode 100644 index 6ca8729..0000000 Binary files a/jekyll/mesias.gif and /dev/null differ diff --git a/jekyll/mesias.htm b/jekyll/mesias.htm deleted file mode 100644 index 5b02f46..0000000 --- a/jekyll/mesias.htm +++ /dev/null @@ -1,34 +0,0 @@ - - - EL VIENE A SALVARNOS. - - - - - - - - -

0

- - \ No newline at end of file diff --git a/jekyll/rosa/bluebg.png b/jekyll/rosa/bluebg.png deleted file mode 100644 index 142ce6f..0000000 Binary files a/jekyll/rosa/bluebg.png and /dev/null differ diff --git a/jekyll/rosa/index.php b/jekyll/rosa/index.php deleted file mode 100644 index 893fd55..0000000 --- a/jekyll/rosa/index.php +++ /dev/null @@ -1,81 +0,0 @@ - - - - - Generador de Episodios de la Rosa de Guadalupe - - - - - -
- En el proximo episodio de la rosa de guadalupe -

- %s Hizo %s porque su %s %s. La tratan de matar, se da cuenta que %s es %s, y la virgencita le ayuda a sobresalir.", $nombre[1], $tema[1], $familiar[1], $causa[1], $tema[1], $efecto[1]); - ?> -

-
Refresca para más -
- - diff --git a/jekyll/rosa/proximoepisodio.png b/jekyll/rosa/proximoepisodio.png deleted file mode 100644 index 8067a44..0000000 Binary files a/jekyll/rosa/proximoepisodio.png and /dev/null differ diff --git a/jekyll/rosa/whitebg.png b/jekyll/rosa/whitebg.png deleted file mode 100644 index 94dc690..0000000 Binary files a/jekyll/rosa/whitebg.png and /dev/null differ diff --git a/jekyll/whatislove.swf b/jekyll/whatislove.swf deleted file mode 100644 index fe06c2d..0000000 Binary files a/jekyll/whatislove.swf and /dev/null differ