зеркало из
				https://github.com/iharh/notes.git
				synced 2025-10-31 05:36:08 +02:00 
			
		
		
		
	m
Этот коммит содержится в:
		
							родитель
							
								
									ef61c0dfa8
								
							
						
					
					
						Коммит
						572968d3c4
					
				| @ -2,5 +2,7 @@ https://en.angie.software/ | |||||||
| https://github.com/webserver-llc/angie | https://github.com/webserver-llc/angie | ||||||
| 
 | 
 | ||||||
| 2025 | 2025 | ||||||
|  | Otus - Nginx/Angie Performance Optimization 0:00 of 1:47:57 | ||||||
|  |     https://www.youtube.com/watch?v=SLCuKEBPqgk | ||||||
| Otus - Angie WebServer ru 0:00 of 1:31:45 | Otus - Angie WebServer ru 0:00 of 1:31:45 | ||||||
|     https://www.youtube.com/watch?v=Hp-m-htZiew |     https://www.youtube.com/watch?v=Hp-m-htZiew | ||||||
|  | |||||||
| @ -9,6 +9,7 @@ SkolkovoMediacenter - Talks About Art of p ... | |||||||
|     https://www.youtube.com/playlist?list=PLCBB7A5968336C8BD |     https://www.youtube.com/playlist?list=PLCBB7A5968336C8BD | ||||||
|     p3 of 1:32:09 |     p3 of 1:32:09 | ||||||
|         https://www.youtube.com/watch?v=mTKbngNKlqQ |         https://www.youtube.com/watch?v=mTKbngNKlqQ | ||||||
|  |         ! 28:00 There were Clubs in Greece | ||||||
|     p2 of 1:56:33 |     p2 of 1:56:33 | ||||||
|         https://www.youtube.com/watch?v=F0oyijk_Its |         https://www.youtube.com/watch?v=F0oyijk_Its | ||||||
|         ! 5:00    - Started from some vaza, every should talk about picture (on Pir) |         ! 5:00    - Started from some vaza, every should talk about picture (on Pir) | ||||||
|  | |||||||
| @ -12,6 +12,8 @@ Eagles - Tequila Sunrise (Live From Melbourne) (Official Video) [4K] of 2:58 | |||||||
| 2022 | 2022 | ||||||
| Kinoryba - Eagles - Hotel of California of 16:13 | Kinoryba - Eagles - Hotel of California of 16:13 | ||||||
|     https://www.youtube.com/watch?v=QmwsXKy1K7U |     https://www.youtube.com/watch?v=QmwsXKy1K7U | ||||||
|  | Eagles - No More Cloudy Days (Live) (Official Video) [HD] of 4:07 | ||||||
|  |     https://www.youtube.com/watch?v=o96_R0UqSa0 | ||||||
| ???? | ???? | ||||||
|     https://www.youtube.com/watch?v=09839DpTctU |     https://www.youtube.com/watch?v=09839DpTctU | ||||||
| So excited to see Don Felder, the original author of 《Hotel California》,With Slash playing guitar of 6:36 | So excited to see Don Felder, the original author of 《Hotel California》,With Slash playing guitar of 6:36 | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ Kafka Summit 2017: | |||||||
| https://www.youtube.com/watch?v=ySf7bDBHRUQ | https://www.youtube.com/watch?v=ySf7bDBHRUQ | ||||||
| 
 | 
 | ||||||
| 2025 | 2025 | ||||||
| JPoint - Golovko - Spring Kafka - How not to Shoot a Foot 18:00 of 46:18 | JPoint - Golovko - Spring Kafka - How not to Shoot a Foot 25:00 of 46:18 | ||||||
|     https://www.youtube.com/watch?v=9r80FRcKGCA |     https://www.youtube.com/watch?v=9r80FRcKGCA | ||||||
|     ! 10:00 ack=all setting !!! |     ! 10:00 ack=all setting !!! | ||||||
|     ! 12:00 @Bean DefaultKafkaProducerFactoryCustomizer serializerCustomizer(ObjectMapper objectMapper) { |     ! 12:00 @Bean DefaultKafkaProducerFactoryCustomizer serializerCustomizer(ObjectMapper objectMapper) { | ||||||
| @ -28,8 +28,28 @@ JPoint - Golovko - Spring Kafka - How not to Shoot a Foot 18:00 of 46:18 | |||||||
|     ! 17:00 - manual dserialization: |     ! 17:00 - manual dserialization: | ||||||
|     !   props.put(JsonDeserializer.USE_TYPE_INFO_HEADERS, false); |     !   props.put(JsonDeserializer.USE_TYPE_INFO_HEADERS, false); | ||||||
|     !   props.put(JsonDeserializer.VALUE_DEFAULT_TYPE, OtpDto.class.getCanonicalName()); |     !   props.put(JsonDeserializer.VALUE_DEFAULT_TYPE, OtpDto.class.getCanonicalName()); | ||||||
|     ! 18:00 |     ! 18:00 ConcurrentMessageListeningContainer<String, OtpDto> kafkaListenerContainer(...) { | ||||||
|     !   container.setConcurrency(4);  // for KafkaMessageListenerContainer |     !   ...; container.setConcurrency(4);  // for KafkaMessageListenerContainer | ||||||
|  |     ! } | ||||||
|  |     ! 19:00 var ... = new ErrorHandlingDeserializer(jsonDeserializer); | ||||||
|  |     ! 20:00 var recoverer = new DeadLetterPublishingRecoverer(template); | ||||||
|  |     !   var errorHandler = new DefaultErrorHandler(recoverer); | ||||||
|  |     !   listenerContainer.setCommonErrorHandler(errorHandler); | ||||||
|  |     ! 22:00 it would be good to have distinct DLTs for distinct types of ex-s | ||||||
|  |     !   @Bean public CommonErrorHandler commonErrorHandler(KafkaTemplate<byte[], byte[]> deserializationDltTemplate, | ||||||
|  |     !                                                      KafkaTemplate<String, OtpDto> otpKafkaTemplate) { | ||||||
|  |     !     CommonErrorHandler defaultErrorHandler = defaultErrorHandler(otpKafkaTemplate); | ||||||
|  |     !     var delegatingErrorHandler = new CommonDelegatingErrorHandler(defaultErrorHandler); | ||||||
|  |     !     delegatingErrorHandler.setErrorHandlers(errorHandlingDelegates(deserializationDltTemplate)); | ||||||
|  |     !     return delegatingErrorHandler; | ||||||
|  |     !   } | ||||||
|  |     ! 24:00  | ||||||
|  |     !   private CommonErrorHandler defaultErrorHandler(KafkaTemplate<String, OtpDto> otpKafkaTemplate) { | ||||||
|  |     !     return new DefaultErrorHandler( | ||||||
|  |     !       new DeadLetterPublishingRecoverer(otpKafkaTemplate), | ||||||
|  |     !       new FixedBackOff(0, 2)); | ||||||
|  |     !   } | ||||||
|  |     ! 24:30 -//- errorHandlingDelegates impl -//- | ||||||
| 
 | 
 | ||||||
| JavaGuru - Apache Kafka of p28 | JavaGuru - Apache Kafka of p28 | ||||||
|     https://www.youtube.com/playlist?list=PLt91xr-Pp57Q50WsXz9r-zmxy5ceu_hp_ |     https://www.youtube.com/playlist?list=PLt91xr-Pp57Q50WsXz9r-zmxy5ceu_hp_ | ||||||
|  | |||||||
| @ -11,6 +11,8 @@ Meeus - Functional Programming in Go | |||||||
| Tolaram - Software Development with Go | Tolaram - Software Development with Go | ||||||
|     68E1C74705DB100822BB2D210EABE7F2 |     68E1C74705DB100822BB2D210EABE7F2 | ||||||
|     DE987EB526D40E8A8B27ACFD186723E2 |     DE987EB526D40E8A8B27ACFD186723E2 | ||||||
|  | Chang - Go Cookbook | ||||||
|  |     CD89F54D149502703B79308FFB4B86A9 | ||||||
| 2022 | 2022 | ||||||
| Harsanyi - 100 Go Mistakes and How to Avoid Them | Harsanyi - 100 Go Mistakes and How to Avoid Them | ||||||
|     72F34EA8DE4E605E55BC7B494A907EE6 |     72F34EA8DE4E605E55BC7B494A907EE6 | ||||||
|  | |||||||
| @ -1,5 +1,5 @@ | |||||||
| 2025 | 2025 | ||||||
| JPoint - Bublikov - Modulith 0:00 of 45:52 | JPoint - Bublikov - Tolkachyov - Modulith 0:00 of 45:52 | ||||||
|     https://www.youtube.com/watch?v=6TCDXUU_uWw |     https://www.youtube.com/watch?v=6TCDXUU_uWw | ||||||
|     https://jokerconf.com/talks/af48b570cf914902a7b5aec35eb9409f/ |     https://jokerconf.com/talks/af48b570cf914902a7b5aec35eb9409f/ | ||||||
| 2024 | 2024 | ||||||
|  | |||||||
| @ -1,2 +1,9 @@ | |||||||
|  | https://github.com/features/copilot/extensions | ||||||
|  | 
 | ||||||
| https://github.com/marketplace?type=apps&copilot_app=true | https://github.com/marketplace?type=apps&copilot_app=true | ||||||
| https://github.com/marketplace/perplexityai | https://github.com/marketplace/perplexityai | ||||||
|  | 
 | ||||||
|  | https://code.visualstudio.com/api/extension-guides/chat | ||||||
|  | 
 | ||||||
|  | 2024 | ||||||
|  | https://github.blog/news-insights/product-news/introducing-github-copilot-extensions/ | ||||||
|  | |||||||
							
								
								
									
										2
									
								
								science/ai/code-assist/copilot/features/autofix.txt
									
									
									
									
									
										Обычный файл
									
								
							
							
						
						
									
										2
									
								
								science/ai/code-assist/copilot/features/autofix.txt
									
									
									
									
									
										Обычный файл
									
								
							| @ -0,0 +1,2 @@ | |||||||
|  | 2025 | ||||||
|  | https://github.blog/news-insights/product-news/secure-code-more-than-three-times-faster-with-copilot-autofix/ | ||||||
		Загрузка…
	
	
			
			x
			
			
		
	
		Ссылка в новой задаче
	
	Block a user
	 Ihar Hancharenka
						Ihar Hancharenka