Skip to content

Instantly share code, notes, and snippets.

View achmedzhanov's full-sized avatar

Nail achmedzhanov

  • https://mk-sense.com/
  • Russia, Izhevsk
View GitHub Profile
@jlia0
jlia0 / agent loop
Last active April 7, 2025 16:32
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@caroso1222
caroso1222 / loading-spinner.service.ts
Created July 16, 2017 01:02
Angular CDK - Portal and PortalHost
import {
Injectable,
ComponentFactoryResolver,
ApplicationRef,
Injector
} from '@angular/core';
import {
ComponentType,
Portal,
ComponentPortal,
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active April 7, 2025 17:09
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@nekitozzz
nekitozzz / Iterate by properties.cs
Last active August 29, 2015 14:05
Iterate by properties C# using reflection
//Выбираем все строки, в которых содержатся хоть какие-то данные
var nonEmptyItems =
items.Where(
i => i.GetType()
.GetProperties()
.Any(p => !string.IsNullOrWhiteSpace(p.GetValue(i) as string)))
.ToList();