Skip to content

Instantly share code, notes, and snippets.

import { useState, useEffect } from "react";
import { useAuth } from "react-oidc-context";
const [UNAUTHENTICATED, AUTHENTICATING, AUTHENTICATED] = ["unauthenticated" , "authenticating", "authenticated"];
function Content(props) {
switch (props.authState) {
case UNAUTHENTICATED:
return (
<p>

スクラム研修のシラバス by Bing

  1. スクラム開発とは何か?(1時間)
  • スクラム開発の定義と歴史
  • スクラム開発のメリットとデメリット
  • スクラム開発の基本的な用語と役割
  • スクラム開発のプロセスとアーティファクト
  1. スクラムチームの構成と役割分担(1時間)
  • プロダクトオーナー、スクラムマスター、開発チームの役割と責任

Why no one uses functional languages

https://dl.acm.org/doi/10.1145/286385.286387

Philip Wadler

To say that no one uses functional languages is an exaggeration. Phone calls in the European Parliament are routed by programs written in Ericsson's functional language Erlang. Virtual CDs are distributed on Cornell's network via the Ensemble system written in INRIA's CAML, and real CDs are shipped by Polygram in Europe using Software AG's Natural Expert. Functional languages are the language of choice for writing theorem provers, including the HOL system which helped debug the design of the HP 9000 line of multiprocessors. These applications and others are described in a previous column [1].

Still ... I work at Bell Labs, where C and C++ were invented. Compared to users of C, "no one" is a tolerably accurate count of the users of functional languages. Advocates of functional languages claim they produce an order of magnitude improvement in productivity. Experiments don't always verify that figure -- sometim

@matarillo
matarillo / _小説Git_01.md
Last active August 2, 2022 12:44
小説Git for Windows

小説Git 1:はじめに

元記事

特に差分はありません。

現在のコード ページ: 932
Console.OutputEncoding is System.Text.OSEncoding
Microsoft ? OSS
$psi = New-Object Diagnostics.ProcessStartInfo
$psi.FileName = $env:LOCALAPPDATA + "\Microsoft\WindowsApps\winget.exe"
$psi.Arguments = "list"
$psi.UseShellExecute = $false
$psi.StandardOutputEncoding = [Text.Encoding]::UTF8
$psi.RedirectStandardOutput = $true
$p = [Diagnostics.Process]::Start($psi)
$s = $p.StandardOutput.ReadToEnd()
$p.WaitForExit()
$p.Dispose()
#!/bin/bash
#
### BEGIN INIT INFO
# Provides: mysql
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Should-Start: $network $time
# Should-Stop: $network $time
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
using System;
using System.Collections.Generic;
using System.IO;
class Program
{
static void Main(string[] args)
{
if (args.Length == 0)
{
using System;
using System.Collections.Generic;
using System.Linq;
using BenchmarkDotNet.Attributes;
namespace BenchForFun
{
public class Program
{
static void Main(string[] args)
#include <iostream>
using namespace std;
class Bounce{
public:
virtual ~Bounce(){};
};
class Num : public Bounce{