| Infinitive | simple past singular | simple past plural | past participle | English |
|---|---|---|---|---|
| bakken | bakte | bakten | gebakken | to fry |
| bannen | bande | banden | gebannen | to ban |
| barsten | barstte | barstten | gebarsten * | to burst |
| bederven | bedierf | bedierven | bedorven @ | to rot |
| bedriegen | bedroog | bedrogen | bedrogen | to deceive |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:ws="urn:com.workday/workersync" | |
| exclude-result-prefixes="ws"> | |
| <xsl:output method="text" encoding="UTF-8"/> | |
| <!-- ========================================================= |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet | |
| version="2.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:ws="urn:com.workday/workersync" | |
| xmlns:xtt="urn:com.workday/xtt" | |
| exclude-result-prefixes="xsl ws"> | |
| <xsl:output |
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
| { | |
| "public_identifier": "satyanadella", | |
| "profile_pic_url": "https://s3.us-west-000.backblazeb2.com/proxycurl/person/satyanadella/profile?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=0004d7f56a0400b0000000001%2F20240611%2Fus-west-000%2Fs3%2Faws4_request&X-Amz-Date=20240611T092711Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=90cc5a73da61a6b955d4c2b32e68c8dc71815fa1bb6357fead565ebddd090d93", | |
| "background_cover_image_url": null, | |
| "first_name": "Satya", | |
| "last_name": "Nadella", | |
| "full_name": "Satya Nadella", | |
| "follower_count": 10883366, | |
| "occupation": "Chairman and CEO at Microsoft", | |
| "headline": "Chairman and CEO at Microsoft", |
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
| [ | |
| { | |
| "infinitive":"Infinitive", | |
| "simplepast":"simple past singular", | |
| "simplepastplural":"simple past plural", | |
| "pastparticiple":"past participle", | |
| "english":"English" | |
| }, | |
| { | |
| "infinitive":"bakken", |
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
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <disassembler@dasm.cz> | |
| # Modified by: alirobe <alirobe@alirobe.com> based on my personal preferences. | |
| # Version: 2.20.2, 2018-09-14 | |
| # Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
| # Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
| # Tweak difference: | |
| # | |
| # @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
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
| for( i = $('li').size(); i>= 0 ; i--){ | |
| $('li').eq(i).someSuperLogicHere; | |
| } |
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
| .button_style{ | |
| display: inline-block; | |
| font-size: 11px; | |
| height: 19px; | |
| margin: 5px 10px 5px 10px; | |
| padding: 9px 13px 0; | |
| text-decoration: none !important; | |
| color:#fff !important; | |
| line-height:11px; | |
| background: #59595a; |
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
| var self = this; | |
| self.firstName = ko.observable(); | |
| self.lastName = ko.observable(); | |
| self.fullName = ko.computed(function(){ | |
| return self.firstName + " " + self.lastName; | |
| }); | |
| }; | |
| var viewModel2 = function(){ | |
| var self = this; |
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
| CustomMessageHandler customMessageHandler = new CustomMessageHandler(){ InnerHandler = new HttpControllerHandler(config)}; | |
| config.Routes.MapHttpRoute( | |
| name: "DefaultApi", | |
| routeTemplate: "api/{controller}/{id}", | |
| defaults: new { id = RouteParameter.Optional }, | |
| constraints : null, | |
| handler : customMessageHandler | |
| ); |