title | published | description | tags | cover_image | series |
---|---|---|---|---|---|
Tutorial: Styling Angular CLI Apps with Bootstrap |
true |
In this tutorial, you learn how to use Bootstrap to style Angular Apps. |
angular, bootstrap, tutorial, beginners |
Styling Angular CLI Apps |
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
# Stop all containers | |
docker stop `docker ps -qa` | |
# Remove all containers | |
docker rm `docker ps -qa` | |
# Remove all images | |
docker rmi -f `docker images -qa ` | |
# Remove all volumes |
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
FROM debian:bullseye AS base | |
ARG AGAVE_VERSION=2.0.15 | |
ARG RUST_VERSION=stable | |
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | |
WORKDIR /workspace | |
RUN mkdir -pv "/workspace/bin" && echo 'echo test' > '/workspace/bin/test.sh' && chmod +x '/workspace/bin/test.sh' |
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
# Build the image: | |
# docker build . -t solana-validator-docker | |
# Run a basic container: | |
# docker run --rm -it --init solana-validator-docker:latest | |
# Run the solana-test-validator and expose port 8899: | |
# docker run --rm -it --init -p 8899:8899 solana-validator-docker:latest solana-test-validator | |
# | |
# Based on Ubuntu 22.04 LTS (Jammy) | |
FROM ubuntu:jammy | |
# Set the workdir to $HOME |
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 { useConnection, useWallet } from '@solana/wallet-adapter-react' | |
import { useSolana } from './solana-provider' | |
export function AppFeature() { | |
const { connection } = useConnection() | |
const { network } = useSolana() | |
const wallet = useWallet() | |
if (wallet.connecting) { | |
return <div>Connecting wallet...</div> |
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
export const DEFAULT_ENGINE = 'davinci'; | |
export const ENGINE_LIST = ['ada', 'babbage', 'curie', 'davinci', 'davinci-instruct-beta', 'curie-instruct-beta']; | |
export const ORIGIN = 'https://api.openai.com'; | |
export const DEFAULT_API_VERSION = 'v1'; | |
export const DEFAULT_OPEN_AI_URL = `${ORIGIN}/${DEFAULT_API_VERSION}`; |
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 { Logger, Module } from '@nestjs/common' | |
import { ServeStaticModule } from '@nestjs/serve-static' | |
import { ensureDirSync, existsSync, writeFileSync } from 'fs-extra' | |
import { join } from 'path' | |
const rootPath = join(__dirname, '..', 'admin') | |
@Module({ | |
imports: [ | |
// Feature modules here... |
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
{ | |
"angular": { | |
"alias": ["ng"], | |
"terms": { | |
"router": [ | |
{ "label": "In-app navigation: routing to views", "url": "https://angular.io/guide/router" }, | |
{ "label": "Observables in Angular - Router", "url": "https://angular.io/guide/observables-in-angular#router" } | |
] | |
} | |
}, |
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
@Injectable() | |
export class DataService extends PrismaClient implements OnModuleInit, OnModuleDestroy { | |
constructor() { | |
super() | |
} | |
async onModuleInit() { | |
await this.$connect() | |
} |
NewerOlder