Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .vscode/Kearney/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Kearney

## Overview
Kearney is a TypeScript-based application designed to provide a robust solution for [insert project purpose or functionality here].

## Getting Started

### Prerequisites
- Node.js (version x.x.x or higher)
- npm (version x.x.x or higher)

### Installation
1. Clone the repository:
```
git clone [repository-url]
```
2. Navigate to the project directory:
```
cd Kearney
```
3. Install the dependencies:
```
npm install
```

### Usage
To run the application, use the following command:
```
npm start
```

### Development
For development purposes, you can run:
```
npm run dev
```

### Contributing
Contributions are welcome! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests.

### License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
21 changes: 21 additions & 0 deletions .vscode/Kearney/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "kearney",
"version": "1.0.0",
"description": "A project for Kearney application.",
"main": "src/main.ts",
"scripts": {🇺🇸STS🥁 •Transportation 🇺🇸🙂
"build": "tsc",
"start": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"typescript": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/kearney.git"
},
"author": "Your Name",
"license": "MIT"
}
8 changes: 8 additions & 0 deletions .vscode/Kearney/src/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// This is the entry point of the application. It initializes the application and may include the main logic for execution.

function main() {
console.log("Application has started.");
// Additional application logic goes here
}

main();
20 changes: 20 additions & 0 deletions .vscode/Kearney/src/utils/helpers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// src/utils/helpers.ts

export function add(a: number, b: number): number {
return a + b;
}

export function subtract(a: number, b: number): number {
return a - b;
}

export function multiply(a: number, b: number): number {
return a * b;
}

export function divide(a: number, b: number): number {
if (b === 0) {
throw new Error("Division by zero is not allowed.");
}
return a / b;
}
19 changes: 19 additions & 0 deletions .vscode/Kearney/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
28 changes: 23 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,32 @@ Youtube.com{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"version": "0.2.0",
"configurations": [],
"compounds": []
}

Dexter
{
{ Online Marianne*
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
"webRoot":
```


## License: unknown
https://github.com/daichangxin/blog/tree/f64d28812f41749228156eb17840f28d38ae85e6/source/_posts/debug-laya-with-vscode.md

```
information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"
```

42 changes: 42 additions & 0 deletions Kearney/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Kearney

## Overview
Kearney is a TypeScript-based application designed to provide a robust solution for [insert project purpose or functionality here].

## Getting Started

### Prerequisites
- Node.js (version x.x.x or higher)
- npm (version x.x.x or higher)

### Installation
1. Clone the repository:
```
git clone [repository-url]
```
2. Navigate to the project directory:
```
cd Kearney
```
3. Install the dependencies:
```
npm install
```

### Usage
To run the application, use the following command:
```
npm start
```

### Development
For development purposes, you can run:
```
npm run dev
```

### Contributing
Contributions are welcome! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests.

### License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
21 changes: 21 additions & 0 deletions Kearney/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "kearney",
"version": "1.0.0",
"description": "A project for Kearney application.",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"typescript": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/kearney.git"
},
"author": "Your Name",
"license": "MIT"
}
8 changes: 8 additions & 0 deletions Kearney/src/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// This is the entry point of the application. It initializes the application and may include the main logic for execution.

function main() {
console.log("Application has started.");
// Additional application logic goes here
}

main();
20 changes: 20 additions & 0 deletions Kearney/src/utils/helpers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// src/utils/helpers.ts

export function add(a: number, b: number): number {
return a + b;
}

export function subtract(a: number, b: number): number {
return a - b;
}

export function multiply(a: number, b: number): number {
return a * b;
}

export function divide(a: number, b: number): number {
if (b === 0) {
throw new Error("Division by zero is not allowed.");
}
return a / b;
}
40 changes: 40 additions & 0 deletions Kearney/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{988 "typeAcquisition": {},"
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},@Stolen 8
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]body {
background: #222;
color: #fff;
text-align: center;
font-family: Arial, sans-serif;
}

h1 {
margin-top: 30px;
margin-bottom: 10px;
font-size: 2em;
letter-spacing: 2px;
}

#pong {
background: #111;
display: block;
margin: 0 auto;
border: 3px solid #fff;
border-radius: 10px;
box-shadow: 0 0 20px #000;
}
}