Skip to content

Instantly share code, notes, and snippets.

Avatar
🦥

realazy cxa

🦥
View GitHub Profile
@cxa
cxa / fonts.el
Last active December 1, 2022 06:56
View fonts.el
(setq cxa/font-pairs
'((default
:heading (:family "TheFutureFZYouHei" :weight bold :slant normal)
:body (:family "WCaslonZZMC" :height 270)
:code (:family "PitchFZ" :height 200))
(brill
:heading (:family "TheFutureFZYouHei" :weight bold :slant normal)
:body (:family "Brill" :height 270)
:code (:family "PitchSansOPPO" :height 200))
(questa
View readable.js
#!/usr/bin/env node
// npm i -g @mozilla/readability puppeteer
const puppeteer = require("puppeteer");
const fs = require("fs");
const readabilityJsStr = fs.readFileSync(
require.resolve("@mozilla/readability/Readability.js"),
{ encoding: "utf-8" }
);
@cxa
cxa / dotnet.doc.md
Created April 19, 2021 02:32
.NET 文档书签
View dotnet.doc.md

创建一个新书签,将以下内容作为书签的 url:

javascript:(()=> { const ns = prompt('namespace and/or class (e.g. system.net.http)'); ns && (window.location=`https://docs.microsoft.com/en-us/dotnet/api/${ns}?view=net-5.0`)})()
@cxa
cxa / regexCheatsheet.js
Last active May 13, 2022 08:55 — forked from sarthology/regexCheatsheet.js
A regex cheatsheet 👩🏻‍💻 (by Catherine)
View regexCheatsheet.js
let regex;
/* 匹配特定的字符串 */
regex = /hello/; // 查找斜杠中的字符串(大小写敏感)……匹配 "hello", "hello123", "123hello123", "123hello",但不匹配 "hell0", "Hello"
regex = /hello/i; // 查找斜杠中的字符串(大小写不敏感)……匹配 "hello", "HelLo", "123HelLO"
regex = /hello/g; // 全局查找斜杠中的字符串……
/* 通配符 */
regex = /h.llo/; // "." 匹配除了换行外的任何一个字符……匹配 "hello", "hallo",但不匹配 "h\nllo"
regex = /h.*llo/; // "*" 匹配任何字符零次或多次,如 "hello", "heeeeeello", "hllo", "hwarwareallo"
View gist:fec67e92fe64d01a8c2d9f1e11a05c69
Process: Xcode [79975]
Path: /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier: Xcode
Version: 9.0 (13247)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Xcode [79975]
User ID: 501
Date/Time: 2017-09-14 20:28:22.458 +0800
View AVCamManualCameraViewController.m
if ( rawEnabled && self.photoOutput.availableRawPhotoPixelFormatTypes.count ) {
//photoSettings = [[AVCapturePhotoBracketSettings alloc] initWithFormat:nil rawPixelFormatType:(OSType)(((NSNumber *)self.photoOutput.availableRawPhotoPixelFormatTypes[0]).unsignedLongValue) bracketedSettings:bracketedSettings];
photoSettings = [AVCapturePhotoBracketSettings photoBracketSettingsWithRawPixelFormatType:(OSType)(((NSNumber *)self.photoOutput.availableRawPhotoPixelFormatTypes[0]).unsignedLongValue) processedFormat:nil bracketedSettings:bracketedSettings];
}
else {
//photoSettings = [[AVCapturePhotoBracketSettings alloc] initWithFormat:@{ AVVideoCodecKey : AVVideoCodecJPEG } rawPixelFormatType:0 bracketedSettings:bracketedSettings];
photoSettings = [AVCapturePhotoBracketSettings photoBracketSettingsWithRawPixelFormatType:0 processedFormat:@{ AVVideoCodecKey : AVVideoCodecJPEG } bracketedSettings:bracketedSettings];
}
@cxa
cxa / gist:48f1be2653fd35843d98
Created February 26, 2015 12:13
Convert an Integer to bytes
View gist:48f1be2653fd35843d98
func bytes<T: IntegerType>(i: T) -> [UInt8] {
let p = UnsafeMutablePointer<T>.alloc(1)
p.memory = i
let b = unsafeBitCast(p, UnsafePointer<UInt8>.self)
let bytes = reduce(0..<sizeof(T), []) { $0 + [b[$1]] }
p.destroy()
return bytes
}
@cxa
cxa / gist:226a07fa8aad9335c2fb
Last active August 29, 2015 14:13
Keyboard Layout Model with Swift
View gist:226a07fa8aad9335c2fb
enum ShiftKeyType {
case None
case Once
case Always
}
enum PunctuationSwitcherType {
case More
case Numeric
}
@cxa
cxa / gist:bb8708a8214fe6d02365
Last active August 29, 2015 14:02
Swift example: Interacting with C APIs
View gist:bb8708a8214fe6d02365
// BridgeHeader.h
#import <unicode/uchar.h>
// UnicodeBlock.swift
import Foundation
class UnicodeBlock {
class var blocks: UnicodeBlock[] {
@cxa
cxa / Prefix.pch
Last active December 11, 2015 19:18
Is there a one-step solution for line 10? Currently I must assign a compiler flag to a .m file with `-DCOMPILE_ONCE`.
View Prefix.pch
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#define BUNDLE_NAME CXAFileManagerResourceBundle
extern NSBundle *BUNDLE_NAME;
#undef NSLocalizedString
#define NSLocalizedString(key, comment) [BUNDLE_NAME localizedStringForKey:(key) value:@"" table:nil]
#ifdef COMPILE_ONCE