yysource.com Report : Visit Site


  • Ranking Alexa Global: # 4,791,341

    Server:Apache/2.4.18 (Ubunt...

    The main IP address: 109.74.200.13,Your server United Kingdom,London ISP:Linode LLC  TLD:com CountryCode:GB

    The description :daily problems with software. java, spring mvc, php, building service oriented architectures, agile and scrum in practice. all in one....

    This report updates in 11-Jul-2018

Created Date:2011-03-08
Changed Date:2017-03-06
Expires Date:2019-03-08

Technical data of the yysource.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host yysource.com. Currently, hosted in United Kingdom and its service provider is Linode LLC .

Latitude: 51.508529663086
Longitude: -0.12574000656605
Country: United Kingdom (GB)
City: London
Region: England
ISP: Linode LLC

HTTP Header Analysis


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

Content-Length:15254
Content-Encoding:gzip
Vary:Accept-Encoding
Server:Apache/2.4.18 (Ubuntu)
Connection:close
Link:; rel="https://api.w.org/"
Date:Wed, 11 Jul 2018 02:02:04 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.linode.com. sando_vn.yahoo.com. 2013042520 14400 14400 1209600 86400
ns:ns3.linode.com.
ns4.linode.com.
ns1.linode.com.
ns5.linode.com.
ns2.linode.com.
ipv4:IP:109.74.200.13
ASN:63949
OWNER:LINODE-AP Linode, LLC, US
Country:GB
mx:MX preference = 10, mail exchanger = mail.yysource.com.

HtmlToText

↓ skip to main content yin yang source php, java, software development, agile and other bits home contacts projects unable to launch android emulator in mac / osx posted on august 9, 2017 by sando posted in android — no comments ↓ first, make sure that the intel haxm is up to date. you update it by opening the sdk and selecting it in the list. then, on mac, the android sdk gets installed at: /users/username/library/android/sdk/ , therefore, you will need to run the script as sudo, as follows: sudo sh ~/library/android/sdk/extras/intel/hardware_accelerated_execution_manager/silent_install.sh if all goes well, the script prints the message: “silent installation pass!” then, restart android studio and run your app with the desired avd. tagged with: android , android stusio , emulator , mac , osx 8 best practices for microservices security posted on july 14, 2017 by sando posted in servers , services — no comments ↓ there is virtually no situation in software architecture that entirely frees you from security considerations. with microservices, some issues become more distinct and a lot harder. however, there are also a few features of microservices that can bolster security. with microservices, the network is still a bottleneck. things like access control, which the industry already understands thoroughly within the realm of monolithic applications, assumes a new, almost unexpected, level of complexity. this paves the way for debates and scrutiny over whether a microservices architecture actually solves more problems than it creates. your decision to use microservices should always be conditional. when you’ve done your due diligence and decided that microservices are right for you, it’s time to make sure that all of your applications’ security demands are met. here are eight best practices for securing your microservices. read more › tagged with: microservices , service security , soa symfony security annotation on controller class and inherited action method posted on march 16, 2017 by sando posted in php , symfony2 — no comments ↓ this is a quick code example on how to extend the symfony security extension in your bundle so you could have rules on the controller’s class as annotation and also inherit those and merge with the action method annotations. namespace appbundle\configuration; /** * @annotation */ class security extends \sensio\bundle\frameworkextrabundle\configuration\security { public function getaliasname() { return 'app_security'; } public function allowarray() { // allow nested configuration (class/method). return true; } } security.php read more › tagged with: bundle , php , security , symfony2 elasticsearch nested filter not matching emails posted on november 25, 2016 by sando posted in elasticsearch , nosql — no comments ↓ there’s one situation where we need to help elasticsearch to understand the structure of our data in order to be able to query it fully – when dealing with arrays of complex objects. elasticsearch has one great feature that it allows us to search in nested properties of complex json objects. it’s normally used for list of objects inside the parent document. just to mention i am using elasticsearch 1.4 for legacy reasons. here is an example of the model we have stored locally in es: read more › tagged with: advanced search , analysis , analyzers , elasticsearch , email tokenizer , json , nested queries mysql not starting – unknown variable table_cache posted on october 16, 2016 by sando posted in servers , unix — no comments ↓ i’ve upgraded my dev server to latest version of debian. everything was going smoothly until i’ve got an error from mysql-server that it cannot be installed due to an error. i checked few websites that i have there running and all of them were down. checked the logs but nothing obvious was there, eventually i realised the mysql process was not running at all which was understandable considering the previous failure to install myslq server. so this was my error: ... [error] mysqld: unknown variable 'table_cache=64' [error] aborting read more › tagged with: mysql , mysql server , servers , upgrade get all files in directory and all child directories posted on september 27, 2016 by sando posted in php , small tips — no comments ↓ i was playing with php the other day and was trying to fetch and rename 1000s of files i have stored locally on my machine. seemingly php isn’t the best language to that operation python or even bash could do the job though it was nice to give it a try. so this is what i came up, simple and straightforward. read more › tagged with: file system , files , iterator , php , recursive , spl change default date for jackson in spring boot application posted on june 17, 2016 by sando posted in api , java , small tips , spring mvc , swagger — no comments ↓ dates as a concept are seamingly simple and straight forward. though in programming world those could be rather complex starting from format, representation, time zones, machine default configuration going through different calendars and date manipulations. in this post i won’t to give a quick tip on handling dates in an application that i am building. it will be short post, i promise. read more › tagged with: api , dates , jackson , java , php , serialisation , swagger swagger and polymorphic type handling with jackson posted on may 26, 2016 by sando posted in api , java , spring mvc , swagger — 1 comment ↓ polymorphic type handling based on json property building an api that supports inheritance could be quite crucial. imagine the case where you want to have an endpoint that stores a profile data for a given provider and that provider could be your main website or any 3rd party platform that can provide the data. we might have a base profile class which in our case would be abstract class with firstname and lastname fields and an abstract method to provide the name of the actual profile provider getprofile() . you can do all of that quite easily with few jackson annotations, for polymorphic types, on the base class and on the children that extend the base class. no more words here is an example: read more › tagged with: api , inheritance , jackson , java , json , polymorphism , swagger spring boot: executing asynchronous method backed with a queue posted on may 19, 2016 by sando posted in java , spring mvc — 3 comments ↓ many people go for different solutions and sometimes overcomplicate their applciation with message queues like activemq, rabbitmq and other options out there. though this is yet another part in the application architecture that would require maintenance and support and it’s also a possible failiure point. there are good reasons to use this approach but in most cases you can get through with normal in-memmory queue with multi-threading. read more › tagged with: asynchronous , parallelism , queue , spring , threads best practices in agile retrospectives posted on may 16, 2016 by sando posted in project management — no comments ↓ one of the core agile practices is to inspect and adapt. we inspect the developed software in the business review or demo meeting to ensure that we are delivering the right product. and we inspect how the team performs and interacts in the retrospective meeting to make sure that we are working in the right way and that we keep improving. we should work on maximizing the benefits of the retrospective meeting and adapt according to its outputs, or it will turn into a useless ritual. in this article, i share some tips on things you can do to improve your retrospective meetings, and things you should avoid as well. read more › tagged with: agile , best practices , project management , retrospective , scrum ‹ older posts categories android (1) api (3) swagger (2) cms (7) joomla (1) magento (4) magnolia (1) prestashop (1) java (4) spring mvc (3) nosql (2) elasticsearch (1) mongodb (1) php (15) cakephp (1) plugins (1) laravel (2) oop (1) symfony2 (2) zend framework (1) project management (1)

URL analysis for yysource.com


http://yysource.com/tag/mysql-server/
http://yysource.com/tag/iterator/
http://yysource.com/2017/08/unable-to-launch-android-emulator-in-mac-osx/#respond
http://yysource.com/2016/05/swagger-and-polymorphic-type-handling-with-jackson/
http://yysource.com/category/php-web-development/cakephp/plugins/
http://yysource.com/tag/retrospective/
http://yysource.com/tag/array/
http://yysource.com/tag/element/
http://yysource.com/tag/plugin/
http://yysource.com/tag/threads/
http://yysource.com/tag/domain/
http://yysource.com/category/unix/
http://yysource.com/tag/authake/
http://yysource.com/2016/05/spring-boot-executing-asynchronous-method-backed-with-a-queue/
http://yysource.com/tag/css3/

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: YYSOURCE.COM
Registry Domain ID: 1644290626_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.enom.com
Registrar URL: www.enom.com
Updated Date: 2015-09-23T12:58:41.00Z
Creation Date: 2011-03-08T12:21:00.00Z
Registrar Registration Expiration Date: 2019-03-08T12:21:00.00Z
Registrar: ENOM, INC.
Registrar IANA ID: 48
Domain Status: clientTransferProhibited https://www.icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: ALEXANDAR MILLES
Registrant Organization:
Registrant Street: LONDON STR
Registrant City: LONDON
Registrant State/Province:
Registrant Postal Code: E1 5AS
Registrant Country: GB
Registrant Phone: +44.7888888888
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID:
Admin Name: UK2.NET HTTP://WWW.UK2.NET/
Admin Organization:
Admin Street: 91-95 BRICK LANE
Admin Street: LONDON
Admin City: LONDON
Admin State/Province:
Admin Postal Code: E1 6QL
Admin Country: GB
Admin Phone: +44.2079871200
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID:
Tech Name: UK2.NET HTTP://WWW.UK2.NET/
Tech Organization:
Tech Street: 91-95 BRICK LANE
Tech Street: LONDON
Tech City: LONDON
Tech State/Province:
Tech Postal Code: E1 6QL
Tech Country: GB
Tech Phone: +44.2079871200
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: [email protected]
Name Server: NS1.LINODE.COM
Name Server: NS2.LINODE.COM
Name Server: NS3.LINODE.COM
Name Server: NS4.LINODE.COM
DNSSEC: unSigned
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4252982646
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2015-09-23T12:58:41.00Z <<<

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


The data in this whois database is provided to you for information
purposes only, that is, to assist you in obtaining information about or
related to a domain name registration record. We make this information
available "as is," and do not guarantee its accuracy. By submitting a
whois query, you agree that you will use this data only for lawful
purposes and that, under no circumstances will you use this data to: (1)
enable high volume, automated, electronic processes that stress or load
this whois database system providing you this information; or (2) allow,
enable, or otherwise support the transmission of mass unsolicited,
commercial advertising or solicitations via direct mail, electronic
mail, or by telephone. The compilation, repackaging, dissemination or
other use of this data is expressly prohibited without prior written
consent from us.

We reserve the right to modify these terms at any time. By submitting
this query, you agree to abide by these terms.
Version 6.3 4/3/2002

Get Noticed on the Internet! Increase visibility for this domain name by listing it at www.whoisbusinesslistings.com

  REGISTRAR ENOM, INC.

  REFERRER http://www.enom.com

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =yysource.com

  PORT 43

  SERVER whois.enom.com

  ARGS yysource.com

  PORT 43

  TYPE domain

DOMAIN

  NAME yysource.com

NSERVER

  NS1.LINODE.COM 162.159.27.72

  NS2.LINODE.COM 162.159.24.39

  NS3.LINODE.COM 162.159.25.129

  NS4.LINODE.COM 162.159.26.99

  STATUS clientTransferProhibited https://www.icann.org/epp#clientTransferProhibited

  CHANGED 2017-03-06

  CREATED 2011-03-08

  EXPIRES 2019-03-08

  REGISTERED yes

Go to top

Mistakes


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

  • www.uyysource.com
  • www.7yysource.com
  • www.hyysource.com
  • www.kyysource.com
  • www.jyysource.com
  • www.iyysource.com
  • www.8yysource.com
  • www.yyysource.com
  • www.yysourceebc.com
  • www.yysourceebc.com
  • www.yysource3bc.com
  • www.yysourcewbc.com
  • www.yysourcesbc.com
  • www.yysource#bc.com
  • www.yysourcedbc.com
  • www.yysourcefbc.com
  • www.yysource&bc.com
  • www.yysourcerbc.com
  • www.urlw4ebc.com
  • www.yysource4bc.com
  • www.yysourcec.com
  • www.yysourcebc.com
  • www.yysourcevc.com
  • www.yysourcevbc.com
  • www.yysourcevc.com
  • www.yysource c.com
  • www.yysource bc.com
  • www.yysource c.com
  • www.yysourcegc.com
  • www.yysourcegbc.com
  • www.yysourcegc.com
  • www.yysourcejc.com
  • www.yysourcejbc.com
  • www.yysourcejc.com
  • www.yysourcenc.com
  • www.yysourcenbc.com
  • www.yysourcenc.com
  • www.yysourcehc.com
  • www.yysourcehbc.com
  • www.yysourcehc.com
  • www.yysource.com
  • www.yysourcec.com
  • www.yysourcex.com
  • www.yysourcexc.com
  • www.yysourcex.com
  • www.yysourcef.com
  • www.yysourcefc.com
  • www.yysourcef.com
  • www.yysourcev.com
  • www.yysourcevc.com
  • www.yysourcev.com
  • www.yysourced.com
  • www.yysourcedc.com
  • www.yysourced.com
  • www.yysourcecb.com
  • www.yysourcecom
  • www.yysource..com
  • www.yysource/com
  • www.yysource/.com
  • www.yysource./com
  • www.yysourcencom
  • www.yysourcen.com
  • www.yysource.ncom
  • www.yysource;com
  • www.yysource;.com
  • www.yysource.;com
  • www.yysourcelcom
  • www.yysourcel.com
  • www.yysource.lcom
  • www.yysource com
  • www.yysource .com
  • www.yysource. com
  • www.yysource,com
  • www.yysource,.com
  • www.yysource.,com
  • www.yysourcemcom
  • www.yysourcem.com
  • www.yysource.mcom
  • www.yysource.ccom
  • www.yysource.om
  • www.yysource.ccom
  • www.yysource.xom
  • www.yysource.xcom
  • www.yysource.cxom
  • www.yysource.fom
  • www.yysource.fcom
  • www.yysource.cfom
  • www.yysource.vom
  • www.yysource.vcom
  • www.yysource.cvom
  • www.yysource.dom
  • www.yysource.dcom
  • www.yysource.cdom
  • www.yysourcec.om
  • www.yysource.cm
  • www.yysource.coom
  • www.yysource.cpm
  • www.yysource.cpom
  • www.yysource.copm
  • www.yysource.cim
  • www.yysource.ciom
  • www.yysource.coim
  • www.yysource.ckm
  • www.yysource.ckom
  • www.yysource.cokm
  • www.yysource.clm
  • www.yysource.clom
  • www.yysource.colm
  • www.yysource.c0m
  • www.yysource.c0om
  • www.yysource.co0m
  • www.yysource.c:m
  • www.yysource.c:om
  • www.yysource.co:m
  • www.yysource.c9m
  • www.yysource.c9om
  • www.yysource.co9m
  • www.yysource.ocm
  • www.yysource.co
  • yysource.comm
  • www.yysource.con
  • www.yysource.conm
  • yysource.comn
  • www.yysource.col
  • www.yysource.colm
  • yysource.coml
  • www.yysource.co
  • www.yysource.co m
  • yysource.com
  • www.yysource.cok
  • www.yysource.cokm
  • yysource.comk
  • www.yysource.co,
  • www.yysource.co,m
  • yysource.com,
  • www.yysource.coj
  • www.yysource.cojm
  • yysource.comj
  • www.yysource.cmo
Show All Mistakes Hide All Mistakes