Skip to content

Instantly share code, notes, and snippets.

View beeth0ven's full-sized avatar

beeth0ven beeth0ven

  • China WuHan
View GitHub Profile
@melroy89
melroy89 / mastodon-docker-setup.md
Last active March 19, 2024 18:24 — forked from akuechl/mastodon-docker-setup.md
Mastodon Docker Setup - most complete and easiest guide online
@wmydz1
wmydz1 / HR发给应聘者常用邮件模板.md
Last active September 17, 2023 23:28
HR发给应聘者常用邮件模板

HR发给应聘者常用邮件模板
人才关系管理,具体到招聘工作中,就是应聘者关系管理。据调查,90%以上的求职者,对应聘的公司了解程度并不深。因此,与HR的沟通过程将被做为推断企业整体管理 水平的重要依据。在招聘工作过程中,与应聘者保持规范、高效、人性化的沟通,可以大大提高企业的雇主品牌影响力,在人才的争夺中获得无形的优势。

一、收到简历后的回复 XXXX先生\女士, 您好!感谢您投递xx公司的XX职位。您的简历我们已经收到,我们会在7个工作日内处理您的简历。 附:公司简介 xx公司人力资源部

说明:在应聘者投递简历后,很多招聘工作较为成熟的企业会马上给应聘者发送一封邮件,以表明公司收到了应聘者的求职申请。这一封邮件是HR与应聘者的第一次接触,很多公司会采用自动化的软件来实现这一功能,它所体现的是企业对每一位应聘者的重视以及招聘工作的专业化程度。

@inamiy
inamiy / Rx-generic-observable.swift
Created November 7, 2017 12:41
Rx + more generic observable
protocol EventProtocol {
var isStopEvent: Bool { get }
}
enum InfiniteEvent<Element>: EventProtocol {
case element(Element) // many
var isStopEvent: Bool { return false }
}
enum SingleEvent<Element, Error>: EventProtocol {
@JohnSundell
JohnSundell / CrossPlatformImages.swift
Last active November 22, 2022 06:29
An easy way to make code that uses UIImage cross-platform between iOS/tvOS & macOS
// Either put this in a separate file that you only include in your macOS target
// or wrap the code in #if os(macOS) / #endif
import Cocoa
// Step 1: Typealias UIImage to NSImage
typealias UIImage = NSImage
// Step 2: You might want to add these APIs that UIImage has but NSImage doesn't.
extension NSImage {
@JohnSundell
JohnSundell / Podfile
Last active September 4, 2019 15:20
A Podfile that demonstrates how to use dependencies that use an older Swift version
target 'MyTarget' do
use_frameworks!
# Post installation script that enables the Swift 4.2 compiler's
# legacy 4.1 mode for 4.2-incompatible pods
post_install do |installer|
incompatiblePods = ['PodA', 'PodB']
installer.pods_project.targets.each do |target|
if incompatiblePods.include? target.name
@mrbar42
mrbar42 / README.md
Last active April 20, 2024 02:57
bash scripts to create VOD HLS stream with ffmpeg almighty (tested on Linux and OS X)

running:

bash create-vod-hls.sh beach.mkv

will produce:

    beach/
      |- playlist.m3u8
 |- 360p.m3u8
@JohnSundell
JohnSundell / AnyOf.swift
Created August 21, 2017 21:23
A way to easily compare a given value against an array of candidates
import Foundation
struct EquatableValueSequence<T: Equatable> {
static func ==(lhs: EquatableValueSequence<T>, rhs: T) -> Bool {
return lhs.values.contains(rhs)
}
static func ==(lhs: T, rhs: EquatableValueSequence<T>) -> Bool {
return rhs == lhs
}
@lattner
lattner / TaskConcurrencyManifesto.md
Last active May 7, 2024 09:05
Swift Concurrency Manifesto
@collinjackson
collinjackson / main.dart
Last active August 17, 2023 20:06
PageView example with dots indicator
// Copyright 2017, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}
@xquezme
xquezme / YOLOAuthenticationIdentityProviderManager.m
Last active September 17, 2016 16:18
iOS AWS Cognito Custom Login Provider 2.4+
@interface YOLOAuthenticationIdentityProviderManager : NSObject <AWSIdentityProviderManager>
@property (nonatomic, strong, nullable) NSString *token;
@end
@implementation YOLOAuthenticationIdentityProviderManager
- (AWSTask<NSDictionary<NSString *, NSString *> *> *)logins {
if (self.token == nil) {