ostinelli.net Report : Visit Site


  • Ranking Alexa Global: # 2,645,281

    Server:Apache...

    The main IP address: 62.149.140.100,Your server Italy,Gragnano ISP:Aruba S.p.A. - Shared Hosting and Mail Services  TLD:net CountryCode:IT

    The description :this is roberto ostinelli's blog. i like to write mainly about ruby and erlang....

    This report updates in 15-Jul-2018

Created Date:2000-04-18
Changed Date:2017-03-20

Technical data of the ostinelli.net


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host ostinelli.net. Currently, hosted in Italy and its service provider is Aruba S.p.A. - Shared Hosting and Mail Services .

Latitude: 40.695610046387
Longitude: 14.51233959198
Country: Italy (IT)
City: Gragnano
Region: Campania
ISP: Aruba S.p.A. - Shared Hosting and Mail Services

the related websites

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Upgrade:h2
Transfer-Encoding:chunked
Keep-Alive:timeout=5, max=100
Server:Apache
Connection:Upgrade, Keep-Alive
Link:; rel="https://api.w.org/"
Date:Sat, 14 Jul 2018 19:34:11 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:dns.technorail.com. hostmaster.technorail.com. 1 86400 7200 2592000 86400
txt:"v=spf1 include:aruba.it ~all"
ns:dns3.arubadns.net.
dns2.technorail.com.
dns4.arubadns.cz.
dns.technorail.com.
ipv4:IP:62.149.140.100
ASN:31034
OWNER:ARUBA-ASN, IT
Country:IT
mx:MX preference = 10, mail exchanger = mx.ostinelli.net.

HtmlToText

ostinelli|net home my passions about roberto ostinelli's blog setting up multiple databases in rails: the definitive guide by roberto ostinelli / december 2, 2015 / 50 comments there are different reasons why you might consider having multiple databases in your ruby on rails application. in my specific case scenario, i needed to store large quantities of data representing user behavior: clicks, pages visited, historical changes, and so on. this kind of databases generally are not mission critical, and grow much faster (and larger) than most databases. their requirements are often different: for instance, they need more storage space, are more tolerant in the face of hardware or software failures, and are write-intensive. for these reasons, sometimes it is interesting to separate them from your application’s primary database. often, non-rdbms databases are chosen for these kind of tasks, something which is however beyond the scope of this article. i googled and read many different solutions, however i couldn’t find one that was able to fully cover how to: have different and isolated migrations and schemas for every database. use rails generators to create new migrations for every database, independently. offer database-specific rake tasks for the most common database operations (i.e. like the ones available for the primary database). integrate with rspec’s default spec task. work with database cleaner . work on heroku . this is my take on how to solve all of these – and have a fully working multiple database solution for your rails application. continue reading… an evaluation of erlang global process registries: meet syn by roberto ostinelli / july 6, 2015 / 9 comments due to my personal interests and history, i often find myself building applications in field of the internet of things . most of the times i end up using erlang : it is based on the actor’s model and is an ideological (and practical) perfect match to manage iot interactions. i recently built an application where devices can connect to, and interact with each other. every device is identified via a unique id (its serial number) and based on this id the devices can send and receive messages. nothing new here: it’s a standard messaging platform, which supports a custom protocol. due to the large amount of devices that i needed to support, this application runs on a cluster of erlang nodes. once a device connects to one of those nodes, the related tcp socket events are handled by a process running on that node. to send a message to a specific device, you send a message to the process that handles the devices’s tcp socket. while building this application, i was early in the process faced with a very common problem: i needed a g lobal process registry that would allow me to globally register a process based on its serial number, so that messages can be sent from anywhere in the cluster. this registry would need to have the following main characteristics: distributed. fast write speeds (>10,000 / sec). handle naming conflict resolution. allow for adding/removal of nodes. therefore i started to search for possible solutions (which included posting to the erlang questions mailing list ), and these came out as my options: erlang’s global module. erlang’s pg2 module. gproc . cloudi process groups . roll out a custom solution. continue reading… how to build a rails api server (part 1): optimizing the framework by roberto ostinelli / june 23, 2015 / 12 comments i have been developing rails json api applications for quite some time now, and i’d like to share a few of my setups and discuss why i do things this way. i’m starting today a series of articles that will cover up pretty much the steps i take every time i bootstrap a new rails json api application. one of the first things i do is to ensure i’m optimizing rails for speed. i basically optimize the framework itself, prior coding any specific application logic. you may have heard before that “ premature optimization is the root of all evil “. however, “premature optimization is a phrase used to describe a situation where a programmer lets performance considerations affect the design of a piece of code”, which “can result in a design that is not as clean as it could have been or code that is incorrect, because the code is complicated by the optimization and the programmer is distracted by optimizing” (source: wikipedia ). this is not what we’re doing here: we’re just going to apply a few changes to rails, and then basically forget about those and start coding in a framework that is optimized to serve our api. many of rails functionalities are simply not needed when building an api server, and by stripping down rails to a bare minimum we can actually achieve pretty significant performance increases. continue reading… gin: a json-api framework in lua by roberto ostinelli / june 18, 2015 / 3 comments gin is a fast, low-latency, low-memory footprint, web json-api framework with test driven development helpers and patterns. it is a framework that i open sourced some time ago, as an experiment. it all started when i heard so many good things about lua that i wanted to see it in action and find a project where i could unleash its power. being an api fan, it came natural for me to build a json-api server framework. and gin was born. gin is currently in its early stage, but it already enables fast development, tdd and ease of maintenance. it is helpful when you need an extra-boost in performance and scalability, since it is entirely written in lua and it runs embedded in a packaged version of nginx called openresty . for those not familiar with lua, don’t let that scare you away: lua is really easy to use, very fast and simple to get started with. controllers the syntax of a controller is extremely simple. for instance, a simple controller that returns an application’s version information looks like: lua local infocontroller = {} function infocontroller:root() return 200, { id = 'my_api', description = 'an api server powered by gin.' } end return infocontroller 1 2 3 4 5 6 7 local infocontroller = { } function infocontroller : root ( ) return 200 , { id = 'my_api' , description = 'an api server powered by gin.' } end return infocontroller the return statement specifies: the http code 200 the body of the response, which gets encoded by gin into json as: javascript { "id": "my_api", "description": "an api server powered by gin." } 1 2 3 4 { "id" : "my_api" , "description" : "an api server powered by gin." } most of standard json-api paradigms are already embedded in gin. continue reading… a comparison between misultin, mochiweb, cowboy, nodejs and tornadoweb by roberto ostinelli / may 9, 2011 / 61 comments as some of you already know, i’m the author of misultin, an erlang http lightweight server library. i’m interested in http servers, i spend quite some time trying them out and am always interested in comparing them from different perspectives. today i wanted to try the same benchmark against various http server libraries: misultin (erlang) mochiweb (erlang) cowboy (erlang) nodejs (v8) tornadoweb (python) i’ve chosen these libraries because they are the ones which currently interest me the most. misultin, obviously since i wrote it; mochiweb, since it’s a very solid library widely used in production (afaik it has been used or is still used to empower the facebook chat, amongst other things); cowboy, a newly born lib whose programmer is very active in the erlang community; nodejs, since bringing javascript to the backend has opened up a new whole world of possibilities (code reusable in frontend, ease of access to various programmers,…); and finally, tornadoweb, since python still remains one of my favourites languages out there, and tornadoweb has been excelling in loads of benchmarks and in production, empowering friendfeed. continue reading… misultin: erlang and websockets by roberto ostinelli / january 20, 2010 / 9 comments inspired by joe armstrong

URL analysis for ostinelli.net


http://www.ostinelli.net/misultin/#more-323
http://www.ostinelli.net/the-composite-intelligence-of-virtual-assistants/#more-146
http://www.ostinelli.net/a-comparison-between-misultin-mochiweb-cowboy-nodejs-and-tornadoweb/#more-411
http://www.ostinelli.net/a-comparison-between-misultin-mochiweb-cowboy-nodejs-and-tornadoweb/
http://www.ostinelli.net/misultin/#respond
http://www.ostinelli.net/about-roberto-ostinelli/
http://www.ostinelli.net/setting-multiple-databases-rails-definitive-guide/
http://www.ostinelli.net/setting-multiple-databases-rails-definitive-guide/#more-893
http://www.ostinelli.net/the-composite-intelligence-of-virtual-assistants/
http://www.ostinelli.net/gin-a-json-api-framework-in-lua/#more-529
http://www.ostinelli.net/misultin-erlang-and-websockets/#more-331
http://www.ostinelli.net/misultin-erlang-and-websockets/
http://www.ostinelli.net/gin-a-json-api-framework-in-lua/#comments
http://www.ostinelli.net/an-evaluation-of-erlang-global-process-registries-meet-syn/#more-795
http://www.ostinelli.net/gin-a-json-api-framework-in-lua/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: OSTINELLI.NET
Registry Domain ID: 25166283_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://www.tucowsdomains.com
Updated Date: 2017-03-20T13:07:14Z
Creation Date: 2000-04-18T13:04:31Z
Registry Expiry Date: 2018-04-18T13:04:31Z
Registrar: Tucows Domains Inc.
Registrar IANA ID: 69
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: DNS.TECHNORAIL.COM
Name Server: DNS2.TECHNORAIL.COM
Name Server: DNS3.ARUBADNS.NET
Name Server: DNS4.ARUBADNS.CZ
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-10-27T01:38:47Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR Tucows Domains Inc.

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =ostinelli.net

  PORT 43

  TYPE domain

DOMAIN

  NAME ostinelli.net

  CHANGED 2017-03-20

  CREATED 2000-04-18

STATUS
clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

NSERVER

  DNS.TECHNORAIL.COM 62.149.128.2

  DNS2.TECHNORAIL.COM 62.149.132.2

  DNS3.ARUBADNS.NET 95.110.220.5

  DNS4.ARUBADNS.CZ 81.2.199.73

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uostinelli.com
  • www.7ostinelli.com
  • www.hostinelli.com
  • www.kostinelli.com
  • www.jostinelli.com
  • www.iostinelli.com
  • www.8ostinelli.com
  • www.yostinelli.com
  • www.ostinelliebc.com
  • www.ostinelliebc.com
  • www.ostinelli3bc.com
  • www.ostinelliwbc.com
  • www.ostinellisbc.com
  • www.ostinelli#bc.com
  • www.ostinellidbc.com
  • www.ostinellifbc.com
  • www.ostinelli&bc.com
  • www.ostinellirbc.com
  • www.urlw4ebc.com
  • www.ostinelli4bc.com
  • www.ostinellic.com
  • www.ostinellibc.com
  • www.ostinellivc.com
  • www.ostinellivbc.com
  • www.ostinellivc.com
  • www.ostinelli c.com
  • www.ostinelli bc.com
  • www.ostinelli c.com
  • www.ostinelligc.com
  • www.ostinelligbc.com
  • www.ostinelligc.com
  • www.ostinellijc.com
  • www.ostinellijbc.com
  • www.ostinellijc.com
  • www.ostinellinc.com
  • www.ostinellinbc.com
  • www.ostinellinc.com
  • www.ostinellihc.com
  • www.ostinellihbc.com
  • www.ostinellihc.com
  • www.ostinelli.com
  • www.ostinellic.com
  • www.ostinellix.com
  • www.ostinellixc.com
  • www.ostinellix.com
  • www.ostinellif.com
  • www.ostinellifc.com
  • www.ostinellif.com
  • www.ostinelliv.com
  • www.ostinellivc.com
  • www.ostinelliv.com
  • www.ostinellid.com
  • www.ostinellidc.com
  • www.ostinellid.com
  • www.ostinellicb.com
  • www.ostinellicom
  • www.ostinelli..com
  • www.ostinelli/com
  • www.ostinelli/.com
  • www.ostinelli./com
  • www.ostinellincom
  • www.ostinellin.com
  • www.ostinelli.ncom
  • www.ostinelli;com
  • www.ostinelli;.com
  • www.ostinelli.;com
  • www.ostinellilcom
  • www.ostinellil.com
  • www.ostinelli.lcom
  • www.ostinelli com
  • www.ostinelli .com
  • www.ostinelli. com
  • www.ostinelli,com
  • www.ostinelli,.com
  • www.ostinelli.,com
  • www.ostinellimcom
  • www.ostinellim.com
  • www.ostinelli.mcom
  • www.ostinelli.ccom
  • www.ostinelli.om
  • www.ostinelli.ccom
  • www.ostinelli.xom
  • www.ostinelli.xcom
  • www.ostinelli.cxom
  • www.ostinelli.fom
  • www.ostinelli.fcom
  • www.ostinelli.cfom
  • www.ostinelli.vom
  • www.ostinelli.vcom
  • www.ostinelli.cvom
  • www.ostinelli.dom
  • www.ostinelli.dcom
  • www.ostinelli.cdom
  • www.ostinellic.om
  • www.ostinelli.cm
  • www.ostinelli.coom
  • www.ostinelli.cpm
  • www.ostinelli.cpom
  • www.ostinelli.copm
  • www.ostinelli.cim
  • www.ostinelli.ciom
  • www.ostinelli.coim
  • www.ostinelli.ckm
  • www.ostinelli.ckom
  • www.ostinelli.cokm
  • www.ostinelli.clm
  • www.ostinelli.clom
  • www.ostinelli.colm
  • www.ostinelli.c0m
  • www.ostinelli.c0om
  • www.ostinelli.co0m
  • www.ostinelli.c:m
  • www.ostinelli.c:om
  • www.ostinelli.co:m
  • www.ostinelli.c9m
  • www.ostinelli.c9om
  • www.ostinelli.co9m
  • www.ostinelli.ocm
  • www.ostinelli.co
  • ostinelli.netm
  • www.ostinelli.con
  • www.ostinelli.conm
  • ostinelli.netn
  • www.ostinelli.col
  • www.ostinelli.colm
  • ostinelli.netl
  • www.ostinelli.co
  • www.ostinelli.co m
  • ostinelli.net
  • www.ostinelli.cok
  • www.ostinelli.cokm
  • ostinelli.netk
  • www.ostinelli.co,
  • www.ostinelli.co,m
  • ostinelli.net,
  • www.ostinelli.coj
  • www.ostinelli.cojm
  • ostinelli.netj
  • www.ostinelli.cmo
Show All Mistakes Hide All Mistakes