Agent Communication Language (ACL) is a Domain-Specific Language (DSL) for concise, structured communication with AI agents. It provides a simple syntax for instructing agents in development workflows.
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 { ApplicationRef, ComponentRef, createComponent, Type } from "@angular/core"; | |
| import { createApplication } from "@angular/platform-browser"; | |
| import React, { useEffect, useRef, useState } from "react"; | |
| type AnyComponentRef = ComponentRef<unknown>; | |
| export type ReactifyProps = { | |
| component: Type<unknown>; | |
| inputs?: Record<string, unknown>; | |
| }; |
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 { normalize, resolve } from '@angular-devkit/core'; | |
| import { Tree } from '@angular-devkit/schematics'; | |
| import { FileSystemHost } from 'ts-morph'; | |
| import * as ts from 'typescript'; | |
| export class VirtualFileSystem implements FileSystemHost { | |
| constructor(private readonly tree: Tree, private readonly rootDir: string) {} | |
| private resolvePath(filePath: string) { | |
| return normalize(resolve(normalize(this.rootDir), normalize(filePath))); |
- Google Chrome 最新版
https://angular.jp/start を使ってハンズオンを進めます。 ハンズオン中はインターネット接続を確保してください。
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
| お世話になっております。 | |
| Futuretech Japanのマークと申します。 | |
| 私どもは、国内のインターネットビジネス業界に特化したヘッドハンティング会社でございます。 | |
| 人材サーチを行う中で、度々Si様のお名前を伺う機会があり、是非一度お話をさせていただきたく、ご連絡させていただいております。 | |
| 現職には、ご満足されていらっしゃることと存じますが、 | |
| 現在、転職市場では多くの経験を必要とする職種のニーズが高まっております。 | |
| 私どもの特徴としては、現時点ご紹介できる案件の紹介だけでなく、事前にキャリアプランなどを伺い、 | |
| ご希望に沿った市場に出る前の案件をサーチし、転職のお手伝いをさせていただくことが多くございます。 |
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
| お問い合わせ元 eichiiiworks_user <[email protected]> | |
| お問い合わせ内容 Angular Japan User Groupコミュニティ | |
| 主催者様 | |
| はじめまして。エイチワークスの宮沢さくらと申します。 | |
| connpassのお問い合わせフォームから突然のメッセージを送りまして大変失礼致します。 | |
| 大変失礼かと思いながらも、是非、Angular Japan User Group様のコミュニティ運営をぜひご支援させていただきたいと思い、ご連絡致しました。 |
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 { distinctUntilChanged, map } from 'rxjs/operators'; | |
| import { BehaviorSubject } from 'rxjs/BehaviorSubject'; | |
| export abstract class Store<T> extends BehaviorSubject<T> { | |
| constructor(initialState: T) { | |
| super(initialState); | |
| } | |
| public dispatch(fn: (state: T) => T) { | |
| this.next(fn(this.getValue())); |
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
| { | |
| "index": "/index.html", | |
| "assetGroups": [ | |
| { | |
| "name": "app", | |
| "installMode": "prefetch", | |
| "resources": { | |
| "files": ["/favicon.ico", "/index.html"], | |
| "versionedFiles": ["/*.bundle.css", "/*.bundle.js", "/*.chunk.js"] | |
| } |
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
| { | |
| "index": "/index.html", | |
| "assetGroups": [ | |
| { | |
| "name": "app", | |
| "installMode": "prefetch", | |
| "resources": { | |
| "files": ["/favicon.ico", "/index.html"], | |
| "versionedFiles": ["/*.bundle.css", "/*.bundle.js", "/*.chunk.js"] | |
| } |
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 { Component } from '@angular/core'; | |
| // Import SwUpdate from NGSW | |
| import { SwUpdate } from '@angular/service-worker'; | |
| @Component({ | |
| selector: 'app-root', | |
| template: ` | |
| ... | |
| `, | |
| styles: [] |
NewerOlder