This is a list of recuiter companies that either
- Don't actually read/understand your skill profile.
- Don't pay attention to location requirements
- Don't pay attention to your job type (full time, contract) requirements.
| Company | Email Suffix (@xyz.com) |
|---|
| using System; | |
| using System.Diagnostics; | |
| using System.Threading.Tasks; | |
| using JetBrains.Annotations; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Diagnostics; | |
| using Microsoft.AspNetCore.Http; | |
| using Microsoft.Extensions.Logging; | |
| using Microsoft.Extensions.Options; | |
| using Microsoft.Net.Http.Headers; |
| /// <summary> | |
| /// Adds <paramref name="newClass"/> to <paramref name="output"/> or appends it. | |
| /// </summary> | |
| /// <param name="output"></param> | |
| /// <param name="newClass"></param> | |
| public static void AddClass(this TagHelperOutput output, string newClass) | |
| { | |
| var classAttribute = output.Attributes.FirstOrDefault(a => a.Name == "class"); | |
| if (classAttribute == null) | |
| { |
| public static HtmlString SerializeViewModel(this HtmlHelper helper, object viewModel, JsonSerializerSettings serializer = null) | |
| { | |
| if (serializer == null) | |
| { | |
| serializer = | |
| new JsonSerializerSettings {ContractResolver = new CamelCasePropertyNamesContractResolver()}; | |
| } | |
| return new HtmlString(JsonConvert.SerializeObject(viewModel, serializer)); | |
| } |
| Note: IFileService is not completely necessary unless you’re doing Xamarin Forms and need. | |
| { | |
| "path": "mod_t3s4ebw/crystal_flower_plant.json", | |
| "enabled": true, | |
| "id": "ebwizardry:crystal_flower_plant", | |
| "plant_name": "Crystal Flower", | |
| "seed_name": "Magic Seeds", | |
| "seed_items": [ | |
| { | |
| "item": "t3s4ebw:magic_seed", | |
| "meta": 0, |
This is a list of recuiter companies that either
| Company | Email Suffix (@xyz.com) |
|---|
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq.Expressions; | |
| namespace Extensions | |
| { | |
| [DebuggerStepThrough] | |
| public static class PredicateExtensions | |
| { |
| protected override void OnModelCreating(ModelBuilder builder) | |
| { | |
| base.OnModelCreating(builder); | |
| //.... | |
| var dateTimeConverter = new ValueConverter<DateTime, DateTime>( | |
| v => v.ToUniversalTime(), | |
| v => DateTime.SpecifyKind(v, DateTimeKind.Utc)); | |
| var nullableDateTimeConverter = new ValueConverter<DateTime?, DateTime?>( |
| import { Component } from '@angular/core'; | |
| import { GlobalConfig, Toast, ToastPackage, ToastrService } from 'ngx-toastr'; | |
| import { BootstrapContextEnum } from '../../models/bootstrap-context-enum'; | |
| @Component({ | |
| selector: '[bootstrap-toast-component]', | |
| template: ` | |
| <div | |
| class="toast {{ containerClass }} show" | |
| role="alert" |
| [Main] | |
| Old is First=1 | |
| Old on Left=1 | |
| Default Compare is to Prev=1 | |
| Go to First Diff=0 | |
| Check Encodings=1 | |
| Wrap Around=0 | |
| Compact NavBar=1 | |
| Ignore Spaces=0 | |
| Detect Moves=1 |