If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Policy / Politique
The fee for tournament organizers advertising on ChessTalk is $20/event or $100/yearly unlimited for the year.
Les frais d'inscription des organisateurs de tournoi sur ChessTalk sont de 20 $/événement ou de 100 $/année illimitée.
You can etransfer to Henry Lam at chesstalkforum at gmail dot com
Transfér à Henry Lam à chesstalkforum@gmail.com
Dark Knight / Le Chevalier Noir
General Guidelines
---- Nous avons besoin d'un traduction français!
Some Basics
1. Under Board "Frequently Asked Questions" (FAQs) there are 3 sections dealing with General Forum Usage, User Profile Features, and Reading and Posting Messages. These deal with everything from Avatars to Your Notifications. Most general technical questions are covered there. Here is a link to the FAQs. https://forum.chesstalk.com/help
2. Consider using the SEARCH button if you are looking for information. You may find your question has already been answered in a previous thread.
3. If you've looked for an answer to a question, and not found one, then you should consider asking your question in a new thread. For example, there have already been questions and discussion regarding: how to do chess diagrams (FENs); crosstables that line up properly; and the numerous little “glitches” that every new site will have.
4. Read pinned or sticky threads, like this one, if they look important. This applies especially to newcomers.
5. Read the thread you're posting in before you post. There are a variety of ways to look at a thread. These are covered under “Display Modes”.
6. Thread titles: please provide some details in your thread title. This is useful for a number of reasons. It helps ChessTalk members to quickly skim the threads. It prevents duplication of threads. And so on.
7. Unnecessary thread proliferation (e.g., deliberately creating a new thread that duplicates existing discussion) is discouraged. Look to see if a thread on your topic may have already been started and, if so, consider adding your contribution to the pre-existing thread. However, starting new threads to explore side-issues that are not relevant to the original subject is strongly encouraged. A single thread on the Canadian Open, with hundreds of posts on multiple sub-topics, is no better than a dozen threads on the Open covering only a few topics. Use your good judgment when starting a new thread.
8. If and/or when sub-forums are created, please make sure to create threads in the proper place.
Debate
9. Give an opinion and back it up with a reason. Throwaway comments such as "Game X pwnz because my friend and I think so!" could be considered pointless at best, and inflammatory at worst.
10. Try to give your own opinions, not simply those copied and pasted from reviews or opinions of your friends.
Unacceptable behavior and warnings
11. In registering here at ChessTalk please note that the same or similar rules apply here as applied at the previous Boardhost message board. In particular, the following content is not permitted to appear in any messages:
* Racism
* Hatred
* Harassment
* Adult content
* Obscene material
* Nudity or pornography
* Material that infringes intellectual property or other proprietary rights of any party
* Material the posting of which is tortious or violates a contractual or fiduciary obligation you or we owe to another party
* Piracy, hacking, viruses, worms, or warez
* Spam
* Any illegal content
* unapproved Commercial banner advertisements or revenue-generating links
* Any link to or any images from a site containing any material outlined in these restrictions
* Any material deemed offensive or inappropriate by the Board staff
12. Users are welcome to challenge other points of view and opinions, but should do so respectfully. Personal attacks on others will not be tolerated. Posts and threads with unacceptable content can be closed or deleted altogether. Furthermore, a range of sanctions are possible - from a simple warning to a temporary or even a permanent banning from ChessTalk.
Helping to Moderate
13. 'Report' links (an exclamation mark inside a triangle) can be found in many places throughout the board. These links allow users to alert the board staff to anything which is offensive, objectionable or illegal. Please consider using this feature if the need arises.
Advice for free
14. You should exercise the same caution with Private Messages as you would with any public posting.
... or if you want the vector file as is ...don't be shy, just ask :))))
Nice. I like yours better than mine. The king has cleaner lines and it's a little simpler. Simple is better and more flexible (usable in more places like stickers, pins, t-shirts, etc). Funny we came up with the same general idea 13 years apart. Overcoming my shyness ;), can I get the vector file (.svg I assume)?
Nice. I like yours better than mine. The king has cleaner lines and it's a little simpler. Simple is better and more flexible (usable in more places like stickers, pins, t-shirts, etc). Funny we came up with the same general idea 13 years apart. Overcoming my shyness ;), can I get the vector file (.svg I assume)?
Hit me up for some files ... I prepared four of them for you. Two for the logo, .svg .ai ... Two for the cutout logo, .svg .ai ... CFC cutout logo??? WTF?
...put this version over anything and it will come through ...great stencil ...spray that on a tee ...HA!
societyofchessaficionados at gmail dot com
:))))
Oh ya forgot to mention ... the Illustrator files (.ai) are fully adjustable. And I did make a subtle change to the logo ...I put a slight curve to the base of the King.
Thanks, Neil. Email sent. Requested .ai and .svg. I can open both. Lately I use the frugal man's version of Illustrator and PhotoShop: Affinity Designer and Affinity Photo. Got 'em even cheaper during their annual Black Friday sale.
Fixed. Now using the new FIDE url format. I copied from the old chess.ca which had the old FIDE url format. Thanks, Roger.
Is it possible to use POST format for the CFC rating page? e.g. https://www.chess.ca/en/ratings/ when looking for a particular CFC #.
My registration software for example (and presumably when you get to publishing crosstables it will also be useful) uses the link to verify ratings, expiry, FIDE ID, etc. With only a _GET format, links by third parties to a players CFC "card" won't work.
Is it possible to use POST format for the CFC rating page?
The A in JAMstack is for APIs. Behind the scenes, Ratings uses an API. This is what your registration software wants (instead of having to scrape HTML; which cannot be done anyways because the HTML is built dynamically with VueJS). The Ratings API is tiny (less than 100 lines of code) and is temporarily hosted on one of my servers (will move later). On a whim, I may change it. With that caveat, you're welcome to use it directly. Example:
It is a GET. As per spec, POST should be reserved for requests that change state on the server for reasons including caching. POSTs cannot be cached. GETs can. I do use caching to reduce load on my server in certain situations. Have fun & good luck with your registration software.
The A in JAMstack is for APIs. Behind the scenes, Ratings uses an API. This is what your registration software wants (instead of having to scrape HTML; which cannot be done anyways because the HTML is built dynamically with VueJS). The Ratings API is tiny (less than 100 lines of code) and is temporarily hosted on one of my servers (will move later). On a whim, I may change it. With that caveat, you're welcome to use it directly. Example:
It is a GET. As per spec, POST should be reserved for requests that change state on the server for reasons including caching. POSTs cannot be cached. GETs can. I do use caching to reduce load on my server in certain situations. Have fun & good luck with your registration software.
thank you. I'm not going to be doing anything yet -will wait until things have stabilized so hope you will post when that has happened.
The A in JAMstack is for APIs. Behind the scenes, Ratings uses an API. This is what your registration software wants (instead of having to scrape HTML; which cannot be done anyways because the HTML is built dynamically with VueJS). The Ratings API is tiny (less than 100 lines of code) and is temporarily hosted on one of my servers (will move later). On a whim, I may change it. With that caveat, you're welcome to use it directly. Example:
It is a GET. As per spec, POST should be reserved for requests that change state on the server for reasons including caching. POSTs cannot be cached. GETs can. I do use caching to reduce load on my server in certain situations. Have fun & good luck with your registration software.
Just make sure that the players/rating file is still accessible by Swiss Manager.
Comment