blog.lebrijo.comJuan Lebrijo | Juan Lebrijo Ruby on Rails Developer

blog.lebrijo.com Profile

Blog.lebrijo.com is a subdomain of Lebrijo.com, which was created on 2006-09-08,making it 18 years ago.

Discover blog.lebrijo.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

blog.lebrijo.com Information

HomePage size: 56.475 KB
Page Load Time: 0.52341 Seconds
Website IP Address: 51.158.102.194

blog.lebrijo.com Similar Website

RAILS – Just another Career Online High School Sites site
rails.careeronlinehs.org
Signicat developer documentation | Developer Pages
developer.signicat.com
Developer Tools - Sony Developer World
developer.sonymobile.com
Developer Toolkit | Learn | Exchange | Publish | NeuroSky Developer Program
developer.neurosky.com
Ruby Tuesday Catering - Ruby Tuesday | catering.rubytuesday.com
catering.rubytuesday.com
Developer.dol.gov - United States Department of Labor Developer Portal
developer.dol.gov
Gracenote Developer Video + Sports APIs - Welcome to the Gracenote Developer Network!
developer.tmsapi.com
Developer Home | Klocwork Developer Network
my.klocwork.com
Tradegov Developer Portal Tradegov Developer Portal
developer.trade.gov
Software Developer Training | Developer Training | Atmosera
training.atmosera.com
Developer Documentation Home - Developer Documentation - cPanel Documentation
confluence2.cpanel.net
WordPress Developer Resources | Official WordPress Developer Resources | Developer.WordPress.org
developer.wordpress.org
Membership Login - Rails to Trails Conservancy | Rails to Trails Conservancy
support.railstotrails.org
✅ pool fiberglass - San Juan Fiberglass Pools - 25 year Warranty San Juan Pools - Poolscapes of Char
charlotte.sanjuanpools.com

blog.lebrijo.com PopUrls

Juan Lebrijo | Juan Lebrijo Ruby on Rails Developer
https://blog.lebrijo.com/
Improve your Ruby code quality with metrics | Juan Lebrijo
https://blog.lebrijo.com/improve-your-code-quality-with-ruby-metrics/
MGMT | Juan Lebrijo
https://blog.lebrijo.com/mgmt/
Video Streaming with Apache | Juan Lebrijo
https://blog.lebrijo.com/video-streaming-with-apache/
blog | Juan Lebrijo
https://blog.lebrijo.com/category/blog/
Configuration Management | Juan Lebrijo
https://blog.lebrijo.com/configuration-management/
Turbo Drive | Juan Lebrijo
https://blog.lebrijo.com/turbo-drive/
Turbo Streams | Juan Lebrijo
https://blog.lebrijo.com/turbo-streams/
Java Architectures | Juan Lebrijo
https://blog.lebrijo.com/architecture/
SPA Javascript Frameworks pros and cons | Juan Lebrijo
https://blog.lebrijo.com/spa-javascript-frameworks-pros-and-cons/
Installing VirtualBox | Juan Lebrijo
https://blog.lebrijo.com/installing-virtualbox/
Quick basic introduction to Ethereum Development | Juan Lebrijo
https://blog.lebrijo.com/quick-basic-introduction-to-ethereum-development/
Docker basics | Juan Lebrijo
https://blog.lebrijo.com/docker-basics/
search engines | Juan Lebrijo
https://blog.lebrijo.com/tag/search-engines/
Software Development Teams | Juan Lebrijo
https://blog.lebrijo.com/software-development-teams/

blog.lebrijo.com Httpheader

Server: nginx/1.14.0 (Ubuntu)
Date: Tue, 14 May 2024 01:07:49 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Link: https://blog.lebrijo.com/wp-json/; rel="https://api.w.org/"

blog.lebrijo.com Meta Info

charset="utf-8"/
content="width=device-width" name="viewport"/
content="max-image-preview:large" name="robots"
content="WordPress 6.4.4" name="generator"

blog.lebrijo.com Ip Information

Ip Country: France
City Name: Paris
Latitude: 48.8323
Longitude: 2.4075

blog.lebrijo.com Html To Plain Text

Toggle navigation Home BLOG CODE CI Contact Updating Chromedriver when system chrome is updated Tuesday, 5 December, 2023 by Juan Lebrijo about capybara , chrome , ruby , Ubuntu I use Capybara for testing, with chrome extension. From time to time Ubuntu asks to update chrome to a newest version. This breaks compatibilty with chromedriver version for testing purposes. You experienced an error like this: In this link you have all webdriver versions matching with your actual browser version. I downloaded and installed to solve the problem. Here the commands: wget https: // edgedl.me.gvt1.com / edgedl / chrome / chrome-for-testing / 116.0.5845.96 / linux64 / chromedriver-linux64.zip unzip chromedriver-linux64.zip sudo mv chromedriver-linux64 / chromedriver / usr / local / bin / sudo chown root:root / usr / local / bin / chromedriver sudo chmod +x / usr / local / bin / chromedriver rm -r chromedriver * wget https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/116.0.5845.96/linux64/chromedriver-linux64.zip unzip chromedriver-linux64.zip sudo mv chromedriver-linux64/chromedriver /usr/local/bin/ sudo chown root:root /usr/local/bin/chromedriver sudo chmod +x /usr/local/bin/chromedriver rm -r chromedriver* Hope it workd for you. Happy coding!! Leave a comment Initializing a Ruby Hash Saturday, 2 December, 2023 by Juan Lebrijo Researching in the Hash ruby class, I needed to initialize values to 0. It is really easy, passing default value to construnctor: store = Hash . new ( 0 ) store [ :candles ] + = 3 store = Hash.new(0) store[:candles] +=3 Then we can accumulate candles from the creation of the key without the undefined ‘+’ for nil:NilClass” error. Leave a comment New class Data for structs Saturday, 25 November, 2023 by Juan Lebrijo Ruby 3.2 came with a new class Data to defile structs: Measure = Data . define ( :amount , :unit ) # Positional arguments constructor is provided distance = Measure. new ( 100 , ’km’ ) #= # # Keyword arguments constructor is provided weight = Measure. new ( amount: 50 , unit: ’kg’ ) #= # # Alternative form to construct an object: speed = Measure [ 10 , ’mPh’ ] #= # # Works with keyword arguments, too: area = Measure [ amount: 1.5 , unit: ’m^2’ ] #= # # Argument accessors are provided: distance. amount #= 100 distance. unit #= "km" Measure = Data.define(:amount, :unit) # Positional arguments constructor is provided distance = Measure.new(100, ’km’) #= # # Keyword arguments constructor is provided weight = Measure.new(amount: 50, unit: ’kg’) #= # # Alternative form to construct an object: speed = Measure[10, ’mPh’] #= # # Works with keyword arguments, too: area = Measure[amount: 1.5, unit: ’m^2’] #= # # Argument accessors are provided: distance.amount #= 100 distance.unit #= "km" Basically the same as Struct , but remember that Struct has arguments writers. Leave a comment Posts navigation← Older posts Subscribe via RSS Timeline Tweets by @jlebrijo Tag Cloud linux deployment DNS git payments Oracle code metrics LAN Streaming test NTP javascript thin prun application server events LDAP IT management paypal Hotwire version control rbenv Pruebas y Test vagrant ssh Database Turbo RVM operating systems security backup Administration Wordpress Web Services rspec SoapUI Samba chrome docker bower Ethereum search engines SAI ssl iweekend Blogroll Learn Python Tealeaf Academy Pages Java Architectures Eclipse/Spring JDev/EJB3/ADF MGMT Ruby on Rails Copyright © 2013 - Engineered by...

blog.lebrijo.com Whois

Domain Name: LEBRIJO.COM Registry Domain ID: 585336665_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.squarespace.domains Registrar URL: http://domains2.squarespace.com Updated Date: 2024-05-07T16:36:34Z Creation Date: 2006-09-08T09:57:32Z Registry Expiry Date: 2025-09-08T09:57:32Z Registrar: Squarespace Domains II LLC Registrar IANA ID: 895 Registrar Abuse Contact Email: abuse-complaints@squarespace.com Registrar Abuse Contact Phone: +1.6466935324 Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Name Server: NS-CLOUD-C1.GOOGLEDOMAINS.COM Name Server: NS-CLOUD-C2.GOOGLEDOMAINS.COM Name Server: NS-CLOUD-C3.GOOGLEDOMAINS.COM Name Server: NS-CLOUD-C4.GOOGLEDOMAINS.COM DNSSEC: signedDelegation DNSSEC DS Data: 34739 8 2 4D8F9F45F76715E9E9AD818805BAD1F2925994D3598ACC45078FFE9E6292C727 >>> Last update of whois database: 2024-05-17T22:17:33Z <<<