FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Original HTTPS Page]

NSCoder’s gists · GitHub

Instantly share code, notes, and snippets.

👋

Íker Karam NSCoder

👋
View GitHub Profile
NSCoder / print-list.el
Created June 23, 2022 15:29
Use recursion to print all elements from a list in emacs lisp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
(defun ns/print-list (list)
(when list
(print (car list))
(print-list (cdr list))))
(setq coffe-types '(cortado macchiato dopio))
(ns/print-list coffe-types)
;; Output
NSCoder / CloudKitSignatureGeneration.swift
Created November 29, 2021 18:28
CloudKit server to server signature generation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
import Foundation
import CryptoKit
// MARK: - Compose Token
// version: 1
// container: iCloud.*
// environment: development/production
// database: public/shared
let path = "/database/[version]/[container]/[environment]/[database]/records/lookup"

Keybase proof

I hereby claim:

  • I am juankaram on github.
  • I am juankaram (https://keybase.io/juankaram) on keybase.
  • I have a public key ASBDZ-fD9brclLpueJwuBaALu8efq-0ycZ_lnR9pfyjQcAo

To claim this, I am signing this object:


Back | FazBrowse Home | New Git URL