- Choose the format to convert the files
- Select various types of files
- Remove annoying audio tracks on the file
- Add some subtitles
- Force subtitles that were necessary for the video.
Gerardo Grimaldi
Friday, April 17, 2020
The Video converter I needed
I hate the PDF format
Tuesday, March 17, 2020
How Ghost and Wordpress disappointed me
I embarked on a journey to find the perfect blogging platform for my technical writing. After extensive research, I narrowed down my choices to two popular options: Ghost and WordPress. Both platforms promised a seamless blogging experience with powerful features, but, unfortunately, they both fell short of my expectations in different ways.
Ghost: The Minimalist's Dream-Turned Nightmare
Ghost is often praised for its simplicity and speed. As a developer, I was drawn to its clean interface and markdown support. However, my experience quickly turned sour due to several key issues:
- Limited Customization: While Ghost's minimalist design is appealing, it comes at the cost of flexibility. Customizing themes and plugins required more effort than anticipated. The lack of a rich plugin ecosystem meant I had to write custom code for even basic features, which was time-consuming.
- Cost: Ghost's pricing model is subscription-based, which can be a significant expense for individual bloggers or small businesses. The cost of hosting Ghost on their official platform or self-hosting with proper infrastructure quickly added up, making it less appealing compared to other options.
- SEO Limitations: Despite its simplicity, Ghost lacked some essential SEO features out of the box. Implementing advanced SEO strategies required additional plugins or custom development, adding to the complexity and cost.
WordPress: The Jack of All Trades, Master of None
WordPress, on the other hand, is known for its versatility and extensive plugin ecosystem. It seemed like the perfect solution for any blogging need. However, my experience was marred by several frustrations:
- Performance Issues: WordPress sites can become sluggish, especially when loaded with multiple plugins and themes. Despite using various caching solutions and performance optimizations, I found it challenging to maintain a fast-loading site, which is crucial for user experience and SEO.
- Security Concerns: The vast number of plugins available for WordPress is both a blessing and a curse. Many plugins are poorly maintained or have security vulnerabilities, making WordPress sites a frequent target for hackers. Keeping the site secure required constant vigilance and updates.
- Complexity: While WordPress offers unparalleled flexibility, it also comes with a steep learning curve. Configuring and managing a WordPress site, especially for non-technical users, can be overwhelming. The admin interface is cluttered, and finding the right plugins and themes often felt like searching for a needle in a haystack.
In the end, both Ghost and WordPress had their strengths and weaknesses. Ghost's simplicity and speed were offset by its lack of customization and higher costs, while WordPress's versatility was hampered by performance issues, security concerns, and complexity. My experience with both platforms left me searching for a better solution that could strike the right balance between ease of use, customization, and performance.
I am still on the lookout for the perfect blogging platform that meets my technical needs without compromising on user experience and security. If you have any recommendations, I'd love to hear them!
Tuesday, December 18, 2018
Free DNS setup for a domain showing a Blogger web page
She was paying a fee for the DNS redirect from her national DNS service to blogger, and I help her to stop paying for that.
I'll write the steps to reproduce the free DNS setup via CloudFlare, that by the way its an excellent way to manage the DNS for free.
Step 1
In the first place, you need to add the domain to Cloudflare after creating an account in Cloudflare.
After that, we must provide the DNS of Cloudflare to our national domains service, usually, they are:
fred.ns.cloudflare.com |
pola.ns.cloudflare.com |
Step 2
- @ 3600 IN A 216.239.32.21
- @ 3600 IN A 216.239.34.21
- @ 3600 IN A 216.239.36.21
- @ 3600 IN A 216.239.38.21
- www 3600 IN CNAME ghs.google.com
- 6n3klf7wtapc 3600 IN CNAME gv-3srif7ga7v6d4w.dv.googlehosted.com
NativeScript/Angular for dummies (practical guide)
This is a thing that I'll surely regret try or write for in some years but let's begin with some easy tutorial for NativeScript.
The way I see it the only cool wat to see this is via the internal app for the playground of the team: Playground NAtivescrip Android for practically we will use Android because we all know that iOS sucks. First, let's install the CLI
npm install -g nativescriptThe requirements for a full build of an app are here:
https://docs.nativescript.org/angular/start/quick-setupThen we proceed to make a new app:
tns create HelloWorld --template tns-template-blank-ngAnd for last we try to see our magnificent app in the preview panel:
tns previewThis will throw a QR code that we can scan with our playground app and the app will just pop up in the phone. Well, that's for now, a little guide to make a new app in NativeScript/Angular. See you next time.
Saturday, March 15, 2014
Making a scraper in Node.js...
var worker = require('worker.js');
var request = require("request"); var cheerio = require("cheerio");
var url = "http://www.bumeran.com.ar/empleos-publicacion-hoy.html";
exports.start = function(req, res) { request(url, function() { return function(err, resp, body) { if (err && resp.statusCode == 200) { console.log(err); //throw err; } $ = cheerio.load(body); var pages = $(".paginador.box a:nth-last-child(2)").text().trim(); console.log(pages); scraper(pages); }; }); };
var url = "http://www.bumeran.com.ar/empleos-publicacion-hoy-pagina-" + NUMBEROFPAGE + ".html";
function scraper(pages) { for(var i = 0; i < pages ; i++){ var url = "http://www.bumeran.com.ar/empleos-publicacion-hoy-pagina-" + (i + 1) + ".html"; request(url, ( function(i) { return function(err, resp, body) { if (err && resp.statusCode == 200){ console.log(err); //throw err; } $ = cheerio.load(body); $(".aviso_box.aviso_listado").each(function(index, tr) { console.log("Scrapping..." + $(this).attr("href")); scraperLinks($(this).attr("href")); }); }; })(i)); } }
function scraperLinks(link) { var url = "http://www.bumeran.com.ar" + link; request(url, function(err, resp, body) { if (err && resp.statusCode == 200) { console.log(err); } //throw err; $ = cheerio.load(body); //console.log(body); var location = $('.aviso-resumen-datos tr td').last().text().trim(); // $('#.aviso-resumen-datos tr').last().find( "a" ).text(); var detail = $("#contenido_aviso p:nth-child(2)").text();//$("#contenido_aviso p").first().text(); var title = $(".box h2").first().text().trim(); var date = $(".aviso-resumen-datos tbody tr td").first().text().trim(); console.log("Saving..." + url); saveAd(url, location, detail, title, date); }); }
Monday, July 1, 2013
The file conversion solution!
http://www.zamzar.com/
In seconds I was able to convert every file to xls, now the next problem after export the formatted xls to csv, was the conversion to json itself. That I resolve with this web app:
http://www.convertcsv.com/csv-to-json.htm
So the steps are various, but the effort its minimal.
Good luck with your conversions!
bye
The Video converter I needed
Handbrake it's an open-source video transcoder and a lifesaver! For people that don't have a lot of time for transcoding or don...
-
I was very busy with some configuration for a friend's blog on Blogger. She was paying a fee for the DNS redirect from her national DNS...
-
You can tell if mongoose is already connected or not by simply checking: if(mongoose . connection . readyState){ } 0 = no 1 = yes...
-
The other day I was trying to get a graphical novel from the web but the only format that I found was PDF. In some manner, I was sure it was...