This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* stylish theme, this style should apply on the domain: ldoceonline.com in stylish settings */ | |
| /* hide google adds */ | |
| iframe,.footer,.quizzes,.share_panel,.topslot-container, | |
| .exercises,.logo_link,.text_welcome,.home_content+.carousel, | |
| #iotd{ | |
| display: none!important; | |
| } | |
| .header{ | |
| text-align: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| httpClient.DefaultRequestHeaders.Authorization = | |
| new AuthenticationHeaderValue( | |
| "Basic", | |
| Convert.ToBase64String( | |
| System.Text.ASCIIEncoding.ASCII.GetBytes( | |
| string.Format("{0}:{1}", username, password)))); |