Open up a Terminal window. (If you have never seen Terminal before, go to Spotlight Search and type "Terminal.")
In the Terminal box, try this:
defaults read com.google.Chrome AppleLanguages
If you see this:
| import java.math.BigDecimal; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| class StreamFilter { | |
| public static void main(String[] args) { | |
| List<Wrapper> list = new ArrayList<>(); | |
| list.add(new Wrapper("true")); |
| # git config --global core.excludesfile ~/.gitignore_global | |
| # Some common .gitignore configurations: https://gist.github.com/octocat/9257657 | |
| # Copy the next content on the .gitignore_global file: | |
| .DS_Store | |
| *.class |
| package app; | |
| import dao.HeroUserMapper; | |
| import entity.HeroUser; | |
| import entity.HeroUserExample; | |
| import org.springframework.context.ApplicationContext; | |
| import org.springframework.context.support.ClassPathXmlApplicationContext; | |
| /** | |
| * Created with IntelliJ IDEA. |
| Country | Alpha-2 code | Alpha-3 code | Numeric code | Latitude (average) | Longitude (average) | |
|---|---|---|---|---|---|---|
| Afghanistan | AF | AFG | 4 | 33 | 65 | |
| Åland Islands | AX | ALA | 248 | 60.116667 | 19.9 | |
| Albania | AL | ALB | 8 | 41 | 20 | |
| Algeria | DZ | DZA | 12 | 28 | 3 | |
| American Samoa | AS | ASM | 16 | -14.3333 | -170 | |
| Andorra | AD | AND | 20 | 42.5 | 1.6 | |
| Angola | AO | AGO | 24 | -12.5 | 18.5 | |
| Anguilla | AI | AIA | 660 | 18.25 | -63.1667 | |
| Antarctica | AQ | ATA | 10 | -90 | 0 |
| <!-- | |
| ~ Copyright 2002-2013 the original author or authors. | |
| ~ | |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); | |
| ~ you may not use this file except in compliance with the License. | |
| ~ You may obtain a copy of the License at | |
| ~ | |
| ~ http://www.apache.org/licenses/LICENSE-2.0 | |
| ~ | |
| ~ Unless required by applicable law or agreed to in writing, software |
| import ebaysdk | |
| from ebaysdk import finding | |
| api = finding(siteid='EBAY-GB', appid='<REPLACE WITH YOUR OWN APPID>') | |
| api.execute('findItemsAdvanced', { | |
| 'keywords': 'laptop', | |
| 'categoryId' : ['177', '111422'], | |
| 'itemFilter': [ | |
| {'name': 'Condition', 'value': 'Used'}, |
| # Basically the nginx configuration I use at konklone.com. | |
| # I check it using https://www.ssllabs.com/ssltest/analyze.html?d=konklone.com | |
| # | |
| # To provide feedback, please tweet at @konklone or email eric@konklone.com. | |
| # Comments on gists don't notify the author. | |
| # | |
| # Thanks to WubTheCaptain (https://wubthecaptain.eu) for his help and ciphersuites. | |
| # Thanks to Ilya Grigorik (https://www.igvita.com) for constant inspiration. | |
| server { |