- YearCompass 2024/2025 from https://yearcompass.com/
-
- Going Through Your Calendar
- Go through last year’s calendar week by week. If you see an important event, family gathering, friendly get-together, or a significant project, write it down here.
- This is What My Last Year Was About
- We live our lives through distinct but interconnected aspects. Take a look at the areas below and ask yourself what the significant events in each of them were:
- Personal life, family
- Career, studies
- Friends, community
- We live our lives through distinct but interconnected aspects. Take a look at the areas below and ask yourself what the significant events in each of them were:
- Going Through Your Calendar
-
- Relaxation, hobbies, creativity
Repro for microsoft/onnxruntime#15869
Basic example of ONNX runtime web with WebGPU support, based on this WASM example
To run: python -m http.server
Open http://localhost:8000 in Chrome
Should take a little bit to load the model (137MB) then display loaded model successfully
Repro steps:
$ npm init astro
# select Minimal
$ git add .
$ git commit -m "Init minimal Astro structure"
$ npm install astro@next--compiler
This file contains 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 Controller from '@ember/controller'; | |
import { action } from '@ember/object'; | |
import { tracked } from '@glimmer/tracking'; | |
const center = {lng: 79.3832, lat: 43.6532}; | |
function generateModel() { | |
return Array(3).map(pt => ({ | |
lng: center.lng + Math.random() / 10, |
This file contains 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 Controller from '@ember/controller'; | |
import { tracked } from '@glimmer/tracking'; | |
export default class ApplicationController extends Controller { | |
queryParams = ['projects', 'roles']; | |
@tracked projects = []; | |
@tracked roles = []; | |
} |
This file contains 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
#!/usr/bin/env python | |
""" | |
Submit a list of issues to GH | |
Issues are separated by two blank lines (three newline characters) | |
The first line is used as the title | |
""" | |
# py2/3 compat |
This file contains 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
[ | |
[ 1, 2, 3, 4, 5], | |
[ 6, 7, 8, 9, 10], | |
[11, 12, 13, 14, 15], | |
[16, 17, 18, 19, 20], | |
[21, 22, 23, 24, 25] | |
] |
This file contains 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
#! /bin/bash | |
set -e | |
usage() { | |
echo " | |
Usage: | |
$0 <base NodePort> BASE_MANIFEST | |
Takes BASE_MANIFEST (which should be the JSON result of |
This file contains 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
// all measurements in inches, because AMERICA | |
function main () { | |
// standard 4" sewer pipe | |
const innerRadius = 4/2; | |
const outerRadius = 4.215/2; | |
const length = 20 * 12; // by "6m" i assume you mean 20ft? | |
return difference( | |
circle({r: outerRadius, center: true}), |
This file contains 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
apiVersion: v1 | |
kind: ReplicationController | |
metadata: | |
annotations: | |
pipelineName: edges | |
creationTimestamp: 2019-01-26T01:48:54Z | |
generation: 4 | |
labels: | |
app: pipeline-edges-v1 | |
component: worker |
NewerOlder