Since monterey update does not allow us to use Xcode previous than 13, let's show how to "install previous SDKs"
Swift toolchains, from https://swift.org/download/
Previous Xcode.xip, from the https://developer.apple.com
Since monterey update does not allow us to use Xcode previous than 13, let's show how to "install previous SDKs"
Swift toolchains, from https://swift.org/download/
Previous Xcode.xip, from the https://developer.apple.com
#!/usr/bin/env bash | |
# based on https://github.com/sbimochan/smart-commit/blob/master/commit | |
# am@aleksei feature/CO-400-some-branch-name$ ./smart-commit.sh "Foo bar." | |
# → [feature/CO-400-some-branch-name f70ebbf167] CO-400: Foo bar. | |
set -euo pipefail | |
if [ -z "${1:-}" ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then |
import numpy as np | |
import sys | |
class RecurrentNeuralNetwork: | |
def __init__(self,xs,ys,rl,eo,lr): | |
self.x=np.zeros(xs) | |
self.xs=xs | |
self.y=np.zeros(ys) | |
self.ys=ys | |
self.w=np.random.random((ys,ys)) |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<style type="text/css"> | |
body { | |
font-family: sans-serif; | |
background-color: #fff; | |
color: #535353; | |
margin: 5px; |
var express = require('express') | |
var app = express() | |
app.listen(1337) | |
app.all('/stream/:chunks', function (req, res, next) { | |
res.writeHead(200, { | |
'Content-Type': 'text/plain', |
// Lists of countries with ISO 3166 codes, presented in various formats. | |
// Last Updated: July 30, 2020 | |
// If you're using PHP, I suggest checking out: | |
// https://github.com/thephpleague/iso3166 | |
// or Laravel: https://github.com/squirephp/squire | |
// | |
// JS developers can check out: | |
// https://www.npmjs.com/package/iso3166-2-db | |
// |