diff --git a/.github/workflows/azure-static-web-apps-happy-grass-032a9511e.yml b/.github/workflows/azure-static-web-apps-happy-grass-032a9511e.yml new file mode 100644 index 0000000000..6e74584ff9 --- /dev/null +++ b/.github/workflows/azure-static-web-apps-happy-grass-032a9511e.yml @@ -0,0 +1,46 @@ +name: Azure Static Web Apps CI/CD + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened, closed] + branches: + - master + +jobs: + build_and_deploy_job: + if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') + runs-on: ubuntu-latest + name: Build and Deploy Job + steps: + - uses: actions/checkout@v3 + with: + submodules: true + lfs: false + - name: Build And Deploy + id: builddeploy + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_GRASS_032A9511E }} + repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) + action: "upload" + ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### + # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig + app_location: "/" # App source code path + api_location: "" # Api source code path - optional + output_location: "" # Built app content directory - optional + ###### End of Repository/Build Configurations ###### + + close_pull_request_job: + if: github.event_name == 'pull_request' && github.event.action == 'closed' + runs-on: ubuntu-latest + name: Close Pull Request Job + steps: + - name: Close Pull Request + id: closepullrequest + uses: Azure/static-web-apps-deploy@v1 + with: + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_HAPPY_GRASS_032A9511E }} + action: "close" diff --git a/1setup.py b/1setup.py new file mode 100644 index 0000000000..821d8b76f0 --- /dev/null +++ b/1setup.py @@ -0,0 +1,127 @@ +# Setup script for megaman: scalable manifold learning +# LICENSE: Simplified BSD https://github.com/mmp2/megaman/blob/master/LICENSE + +import io +import os +import re +import sys +import subprocess + +PY2 = sys.version_info[0] == 2 +PY3 = not PY2 +if PY3: + import importlib.machinery + + +def read(path, encoding='utf-8'): + path = os.path.join(os.path.dirname(__file__), path) + with io.open(path, encoding=encoding) as fp: + return fp.read() + + +def version(path): + """Obtain the packge version from a python file e.g. pkg/__init__.py + + See . + """ + version_file = read(path) + version_match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""", + version_file, re.M) + if version_match: + return version_match.group(1) + raise RuntimeError("Unable to find version string.") + + +def generate_cython(): + cwd = os.path.abspath(os.path.dirname(__file__)) + print("Cythonizing sources") + p = subprocess.call([sys.executable, + os.path.join(cwd, 'tools', 'cythonize.py'), + 'megaman'], + cwd=cwd) + if p != 0: + raise RuntimeError("Running cythonize failed!") + + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration(None, parent_package, top_path) + config.set_options(ignore_setup_xxx_py=True, + assume_default_configuration=True, + delegate_options_to_subpackages=True, + quiet=True) + + config.add_subpackage('megaman') + + return config + +DESCRIPTION = "megaman: Manifold Learning for Millions of Points" +LONG_DESCRIPTION = """ +megaman: Manifold Learning for Millions of Points +================================================= + +This repository contains a scalable implementation of several manifold learning +algorithms, making use of FLANN for fast approximate nearest neighbors and +PyAMG, LOBPCG, ARPACK, and other routines for fast matrix decompositions. + +For more information, visit https://github.com/mmp2/megaman +""" +NAME = "megaman" +AUTHOR = "Marina Meila" +AUTHOR_EMAIL = "mmp@stat.washington.delete_this.edu" +URL = 'https://github.com/mmp2/megaman' +DOWNLOAD_URL = 'https://github.com/mmp2/megaman' +LICENSE = 'BSD 3' + +VERSION = version('megaman/__init__.py') + + +def setup_package(): + from numpy.distutils.core import setup + + old_path = os.getcwd() + local_path = os.path.dirname(os.path.abspath(sys.argv[0])) + src_path = local_path + + os.chdir(local_path) + sys.path.insert(0, local_path) + + # Run build + old_path = os.getcwd() + os.chdir(src_path) + sys.path.insert(0, src_path) + + cwd = os.path.abspath(os.path.dirname(__file__)) + if not os.path.exists(os.path.join(cwd, 'PKG-INFO')): + # Generate Cython sources, unless building from source release + generate_cython() + + try: + setup(name='megaman', + author=AUTHOR, + author_email=AUTHOR_EMAIL, + url=URL, + download_url=DOWNLOAD_URL, + description=DESCRIPTION, + long_description = LONG_DESCRIPTION, + version=VERSION, + license=LICENSE, + configuration=configuration, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: BSD License', + 'Natural Language :: English', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5']) + finally: + del sys.path[0] + os.chdir(old_path) + + return + + +if __name__ == '__main__': + setup_package() diff --git a/678.py b/678.py new file mode 100644 index 0000000000..179fcb0469 --- /dev/null +++ b/678.py @@ -0,0 +1,37 @@ +import requests +from requests.compat import urljoin + + +class DigimonClient: + + BASE_URL = "https://digimon-api.vercel.app/api/digimon/" + + def __init__(self, session=None, timeout=5): + self.session = session or requests.Session() + self.timeout = timeout + + def _request(self, method, url_path, params=None): + params = params or {} + url = urljoin(self.BASE_URL, url_path) + headers = { + "User-Agent": "pydigimon", + "Content-Type": "application/json" + } + result = self.session.request(method, url, headers=headers, params=params, + timeout=self.timeout) + return result + + def get_all_digimon(self): + url_path = '' + method = 'GET' + return self._request(method, url_path) + + def get_digimon_by_name(self, name): + url_path = f"name/{name}" + method = 'GET' + return self._request(method, url_path) + + def get_digimon_by_level(self, level): + url_path = f"level/{level}" + method = 'GET' + return self._request(method, url_path) diff --git a/7z2kn5jx9tg9nzomhluz.py b/7z2kn5jx9tg9nzomhluz.py new file mode 100644 index 0000000000..9643c4fb26 --- /dev/null +++ b/7z2kn5jx9tg9nzomhluz.py @@ -0,0 +1,17 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +''' +""" +#$ex=1T^2-B^3 +#$sin(ex)=cos(1T^2)-tan(1B^3) +#$y=1T^2-1B^3-ex +#$y=cos(1T^2)-tan(1B^3)-sin(ex + #$E=3D^2+4D^3+5D^4(6D^5) + #$y=3D^2+4D^3+5D^4(6D^5)+E + #$y=3D+4D+5D(6D)+E +print("Hello World") +''' \ No newline at end of file diff --git a/Accnt_Record (1).txt b/Accnt_Record (1).txt new file mode 100644 index 0000000000..c624cb1859 --- /dev/null +++ b/Accnt_Record (1).txt @@ -0,0 +1 @@ +63710015000 \ No newline at end of file diff --git a/Accnt_Record (2).txt b/Accnt_Record (2).txt new file mode 100644 index 0000000000..c624cb1859 --- /dev/null +++ b/Accnt_Record (2).txt @@ -0,0 +1 @@ +63710015000 \ No newline at end of file diff --git a/Accnt_Record (3).txt b/Accnt_Record (3).txt new file mode 100644 index 0000000000..c624cb1859 --- /dev/null +++ b/Accnt_Record (3).txt @@ -0,0 +1 @@ +63710015000 \ No newline at end of file diff --git a/Accnt_Record (4).txt b/Accnt_Record (4).txt new file mode 100644 index 0000000000..c624cb1859 --- /dev/null +++ b/Accnt_Record (4).txt @@ -0,0 +1 @@ +63710015000 \ No newline at end of file diff --git a/Accnt_Record.txt b/Accnt_Record.txt new file mode 100644 index 0000000000..c624cb1859 --- /dev/null +++ b/Accnt_Record.txt @@ -0,0 +1 @@ +63710015000 \ No newline at end of file diff --git a/Aiaiai.py b/Aiaiai.py new file mode 100644 index 0000000000..05ff0aefe6 --- /dev/null +++ b/Aiaiai.py @@ -0,0 +1,377 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} + +Original file line number Diff line number Diff line change + + + + + + + + + + + + + +VibeVoice + + + +
+ +
+
+

VibeVoice: A Frontier Open-Source Text-to-Speech Model

+ + + +

+ VibeVoice is a novel framework designed for generating expressive, long-form, multi-speaker conversational audio, such as podcasts, from text. It addresses significant challenges in traditional Text-to-Speech (TTS) systems, particularly in scalability, speaker consistency, and natural turn-taking. +A core innovation of VibeVoice is its use of continuous speech tokenizers (Acoustic and Semantic) operating at an ultra-low frame rate of 7.5 Hz. These tokenizers efficiently preserve audio fidelity while significantly boosting computational efficiency for processing long sequences. VibeVoice employs a next-token diffusion framework, leveraging a Large Language Model (LLM) to understand textual context and dialogue flow, and a diffusion head to generate high-fidelity acoustic details. +The model can synthesize speech up to 90 minutes long with up to 4 distinct speakers, surpassing the typical 1-2 speaker limits of many prior models. +

+ +
+
+ VibeVoice Framework +
+
+ MOS Preference Results +
+
+

+ 2025-09-05: VibeVoice is an open-source research framework intended to advance collaboration in the speech synthesis community. After release, we discovered instances where the tool was used in ways inconsistent with the stated intent. Since responsible use of AI is one of Microsoft’s guiding principles, we have disabled the repo until we are confident that out-of-scope use is no longer possible. +

+
+
+ +
+

Context-Aware Expression

+
+

Spontaneous Emotion

+
+ +
+
+
+
+

Spontaneous Singing

+
+ +
+
+
+
+
+

Podcast with Background Music

+
+ +
+ +
+
+
+
+ +
+ +
+
+
+
+
+

Cross-Lingual

+
+

Mandarin to English

+
+ +
+
+
+
+

English to Mandarin

+
+ +
+
+
+
+
+

Long Conversational Speech

+
+ +
+ +
+
+
+
+ +
+ +
+
+

* Timestamps are derived from the generated audio and may contain errors.

+
+
+ + +
+ + + \ No newline at end of file diff --git a/Alpine.py b/Alpine.py new file mode 100644 index 0000000000..59414e9162 --- /dev/null +++ b/Alpine.py @@ -0,0 +1,92 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +// SimpleNeuralNetwork.java +public class SimpleNeuralNetwork { + + private double[][] weights; + private double learningRate; + + public SimpleNeuralNetwork(int inputSize, int outputSize, double learningRate) { + this.weights = new double[inputSize + 1][outputSize]; // +1 for bias + this.learningRate = learningRate; + initializeWeights(); + } + + private void initializeWeights() { + // Initialize weights randomly + for (int i = 0; i < weights.length; i++) { + for (int j = 0; j < weights[0].length; j++) { + weights[i][j] = Math.random() * 2 - 1; // Random values between -1 and 1 + } + } + } + + public double[] predict(double[] inputs) { + double[] activations = new double[weights[0].length]; + for (int j = 0; j < weights[0].length; j++) { + double sum = 0; + for (int i = 0; i < inputs.length; i++) { + sum += inputs[i] * weights[i][j]; + } + sum += 1 * weights[inputs.length][j]; // Bias term + activations[j] = sigmoid(sum); // Using sigmoid activation function + } + return activations; + } + + public void train(double[] inputs, double[] targetOutputs) { + double[] predictedOutputs = predict(inputs); + double[] errors = new double[predictedOutputs.length]; + + // Calculate errors + for (int i = 0; i < predictedOutputs.length; i++) { + errors[i] = targetOutputs[i] - predictedOutputs[i]; + } + + // Update weights using gradient descent + for (int j = 0; j < weights[0].length; j++) { + for (int i = 0; i < inputs.length; i++) { + weights[i][j] += learningRate * errors[j] * inputs[i]; + } + weights[inputs.length][j] += learningRate * errors[j] * 1; // Update bias weight + } + } + + private double sigmoid(double x) { + return 1 / (1 + Math.exp(-x)); + } + + public static void main(String[] args) { + SimpleNeuralNetwork nn = new SimpleNeuralNetwork(2, 1, 0.1); // 2 inputs, 1 output, learning rate 0.1 + + // Training data for an XOR-like problem + double[][] trainingInputs = {{0, 0}, {0, 1}, {1, 0}, {1, 1}}; + double[][] trainingOutputs = {{0}, {1}, {1}, {0}}; + + for (int epoch = 0; epoch < 10000; epoch++) { + for (int i = 0; i < trainingInputs.length; i++) { + nn.train(trainingInputs[i], trainingOutputs[i]); + } + } + + // Test the trained network + System.out.println("0, 0 -> " + nn.predict(new double[]{0, 0})[0]); + System.out.println("0, 1 -> " + nn.predict(new double[]{0, 1})[0]); + System.out.println("1, 0 -> " + nn.predict(new double[]{1, 0})[0]); + System.out.println("1, 1 -> " + nn.predict(new double[]{1, 1})[0]); + } +} \ No newline at end of file diff --git a/AppFeedbackPlugin_v1.oml b/AppFeedbackPlugin_v1.oml new file mode 100644 index 0000000000..877b909f40 Binary files /dev/null and b/AppFeedbackPlugin_v1.oml differ diff --git a/Bodd.cpp b/Bodd.cpp new file mode 100644 index 0000000000..59414e9162 --- /dev/null +++ b/Bodd.cpp @@ -0,0 +1,92 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +// SimpleNeuralNetwork.java +public class SimpleNeuralNetwork { + + private double[][] weights; + private double learningRate; + + public SimpleNeuralNetwork(int inputSize, int outputSize, double learningRate) { + this.weights = new double[inputSize + 1][outputSize]; // +1 for bias + this.learningRate = learningRate; + initializeWeights(); + } + + private void initializeWeights() { + // Initialize weights randomly + for (int i = 0; i < weights.length; i++) { + for (int j = 0; j < weights[0].length; j++) { + weights[i][j] = Math.random() * 2 - 1; // Random values between -1 and 1 + } + } + } + + public double[] predict(double[] inputs) { + double[] activations = new double[weights[0].length]; + for (int j = 0; j < weights[0].length; j++) { + double sum = 0; + for (int i = 0; i < inputs.length; i++) { + sum += inputs[i] * weights[i][j]; + } + sum += 1 * weights[inputs.length][j]; // Bias term + activations[j] = sigmoid(sum); // Using sigmoid activation function + } + return activations; + } + + public void train(double[] inputs, double[] targetOutputs) { + double[] predictedOutputs = predict(inputs); + double[] errors = new double[predictedOutputs.length]; + + // Calculate errors + for (int i = 0; i < predictedOutputs.length; i++) { + errors[i] = targetOutputs[i] - predictedOutputs[i]; + } + + // Update weights using gradient descent + for (int j = 0; j < weights[0].length; j++) { + for (int i = 0; i < inputs.length; i++) { + weights[i][j] += learningRate * errors[j] * inputs[i]; + } + weights[inputs.length][j] += learningRate * errors[j] * 1; // Update bias weight + } + } + + private double sigmoid(double x) { + return 1 / (1 + Math.exp(-x)); + } + + public static void main(String[] args) { + SimpleNeuralNetwork nn = new SimpleNeuralNetwork(2, 1, 0.1); // 2 inputs, 1 output, learning rate 0.1 + + // Training data for an XOR-like problem + double[][] trainingInputs = {{0, 0}, {0, 1}, {1, 0}, {1, 1}}; + double[][] trainingOutputs = {{0}, {1}, {1}, {0}}; + + for (int epoch = 0; epoch < 10000; epoch++) { + for (int i = 0; i < trainingInputs.length; i++) { + nn.train(trainingInputs[i], trainingOutputs[i]); + } + } + + // Test the trained network + System.out.println("0, 0 -> " + nn.predict(new double[]{0, 0})[0]); + System.out.println("0, 1 -> " + nn.predict(new double[]{0, 1})[0]); + System.out.println("1, 0 -> " + nn.predict(new double[]{1, 0})[0]); + System.out.println("1, 1 -> " + nn.predict(new double[]{1, 1})[0]); + } +} \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..f9ba8cf65f --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,9 @@ +# Microsoft Open Source Code of Conduct + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). + +Resources: + +- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) +- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) +- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..6fcb0298e7 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,12 @@ +# Contributing +This project welcomes contributions and suggestions. Most contributions require you to agree to a +Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us +the rights to use your contribution. For details, visit https://cla.microsoft.com. + +When you submit a pull request, a CLA-bot will automatically determine whether you need to provide +a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions +provided by the bot. You will only need to do this once across all repositories using our CLA. + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). +For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or +contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. diff --git a/Digimon Maturation v1 (17.py b/Digimon Maturation v1 (17.py new file mode 100644 index 0000000000..e9a1c78e63 --- /dev/null +++ b/Digimon Maturation v1 (17.py @@ -0,0 +1,172 @@ +# Digimon Life Support System v1.4.x +# a spiritual port of the arduino based program of the same name. +# added new timings to support 10x mode. + +# We import the module for GPIO on the PocketChip +import CHIP_IO.GPIO as GPIO + +# Next we import the module that will govern our time based intervals +import time + +# I'm using two different delays for button presses because some animations take longer than others (scrolling, eating animations for example). +# this delay is responsible for animations +animwait = .6 + +# This variable is just a standard wait time used for button presses. Useful when in 10x mode because short button presses are often missed. +pausetime = 0.15 + +# This list contains the individual wait intervals for each function, needs experimenting/tweaking. +interval = [0, 10, 1000, 30, 40] + +# This list stores the time that the function was last executed. +timelast = [0, 0, 0, 0, 0] + +# Set up each GPIO as an output for the A, B and C buttons. +GPIO.setup("XIO-P2", GPIO.OUT) +GPIO.setup("XIO-P3", GPIO.OUT) +GPIO.setup("XIO-P4", GPIO.OUT) + +# this function sets all buttons to high (a logic no in this case) +def clearbut(): + GPIO.output("XIO-P2", GPIO.HIGH) + GPIO.output("XIO-P2", GPIO.HIGH) + GPIO.output("XIO-P2", GPIO.HIGH) + + +# This function presses A +def pressa(): + print "pressing A" + GPIO.output("XIO-P2", GPIO.LOW) + time.sleep(pausetime) + GPIO.output("XIO-P2", GPIO.HIGH) + time.sleep(pausetime) + +# This function presses B +def pressb(): + print "pressing B" + GPIO.output("XIO-P3", GPIO.LOW) + time.sleep(pausetime) + GPIO.output("XIO-P3", GPIO.HIGH) + time.sleep(pausetime) + +# This function presses C +def pressc(): + print "pressing C" + GPIO.output("XIO-P4", GPIO.LOW) + time.sleep(pausetime) + GPIO.output("XIO-P4", GPIO.HIGH) + time.sleep(pausetime) + +# The following functions group the previous functions together and allow us to execute them in sequences that perform specific actions. +# I will detail the first function just to help elucidate my methods. + +# I define a function with no arguments. + +def feedmeal(): + + # I send some text to the screen to let the user know a function is being performed. + print "Feeding a Meal" + + # I press "A" twice to highlight the "Meal" icon on screen. + pressa() + pressa() + + # to make sure the digimon gets enough food I press B 7 times to ensure there are enough. Its not precise. + for x in range (0,6): + pressb() + # I wait for the animation to finish before pressing the button again. + time.sleep(animwait) + + # I press "C" twice to ensure the digimon exits the Meal program. + pressc() + pressc() + +# The rest of the functions are variations on the previous one. + +def feedpill(): + print "Feeding a Pill" + + pressa() + pressa() + pressb() + pressa() + pressb() + + time.sleep(animwait) + + pressc() + pressc() + +def playgame(): + print "Playing a game" + + pressa() + pressa() + pressa() + pressb() + + for x in range (0,25): + pressb() + time.sleep(animwait) + + pressc() + pressc() + +def cleanup(): + print "Cleaning Up" + + for x in range (0,5): + pressa() + + pressb() + time.sleep(animwait) + pressc() + pressc() + +# The program really starts here and these next few lines act as initialization. +# First we clear the GPIO and bring them all HIGH to ensure there is nothing floating. +# I don't know if this is necessary just seems like good practice. + +clearbut() + +# I clear the console screen for neatness-sake. +os.system('clear') + +# I let the user know the program has started. +print "program started" + +# I begin a loop to +while True: +# check time + timenow = time.time() + +# The next run of if statements checks the current time against the last time the statement was run has +# If the elapsed time is greater than the pre-set interval the function is run. + + if timenow - timelast[1] > interval[1]: + feedmeal() + timelast[1] = timenow + os.system('clear') + + if timenow - timelast[2] > interval[2]: + feedpill() + timelast[2] = timenow + os.system('clear') + + if timenow - timelast[3] > interval[3]: + playgame() + timelast[3] = timenow + os.system('clear') + + if timenow - timelast[4] > interval[4]: + cleanup() + timelast[4] = timenow + os.system('clear') + + # before the loop cycles we clear out the buttons. + + clearbut() + + + + diff --git a/Digimon Maturation v81.py b/Digimon Maturation v81.py new file mode 100644 index 0000000000..e9a1c78e63 --- /dev/null +++ b/Digimon Maturation v81.py @@ -0,0 +1,172 @@ +# Digimon Life Support System v1.4.x +# a spiritual port of the arduino based program of the same name. +# added new timings to support 10x mode. + +# We import the module for GPIO on the PocketChip +import CHIP_IO.GPIO as GPIO + +# Next we import the module that will govern our time based intervals +import time + +# I'm using two different delays for button presses because some animations take longer than others (scrolling, eating animations for example). +# this delay is responsible for animations +animwait = .6 + +# This variable is just a standard wait time used for button presses. Useful when in 10x mode because short button presses are often missed. +pausetime = 0.15 + +# This list contains the individual wait intervals for each function, needs experimenting/tweaking. +interval = [0, 10, 1000, 30, 40] + +# This list stores the time that the function was last executed. +timelast = [0, 0, 0, 0, 0] + +# Set up each GPIO as an output for the A, B and C buttons. +GPIO.setup("XIO-P2", GPIO.OUT) +GPIO.setup("XIO-P3", GPIO.OUT) +GPIO.setup("XIO-P4", GPIO.OUT) + +# this function sets all buttons to high (a logic no in this case) +def clearbut(): + GPIO.output("XIO-P2", GPIO.HIGH) + GPIO.output("XIO-P2", GPIO.HIGH) + GPIO.output("XIO-P2", GPIO.HIGH) + + +# This function presses A +def pressa(): + print "pressing A" + GPIO.output("XIO-P2", GPIO.LOW) + time.sleep(pausetime) + GPIO.output("XIO-P2", GPIO.HIGH) + time.sleep(pausetime) + +# This function presses B +def pressb(): + print "pressing B" + GPIO.output("XIO-P3", GPIO.LOW) + time.sleep(pausetime) + GPIO.output("XIO-P3", GPIO.HIGH) + time.sleep(pausetime) + +# This function presses C +def pressc(): + print "pressing C" + GPIO.output("XIO-P4", GPIO.LOW) + time.sleep(pausetime) + GPIO.output("XIO-P4", GPIO.HIGH) + time.sleep(pausetime) + +# The following functions group the previous functions together and allow us to execute them in sequences that perform specific actions. +# I will detail the first function just to help elucidate my methods. + +# I define a function with no arguments. + +def feedmeal(): + + # I send some text to the screen to let the user know a function is being performed. + print "Feeding a Meal" + + # I press "A" twice to highlight the "Meal" icon on screen. + pressa() + pressa() + + # to make sure the digimon gets enough food I press B 7 times to ensure there are enough. Its not precise. + for x in range (0,6): + pressb() + # I wait for the animation to finish before pressing the button again. + time.sleep(animwait) + + # I press "C" twice to ensure the digimon exits the Meal program. + pressc() + pressc() + +# The rest of the functions are variations on the previous one. + +def feedpill(): + print "Feeding a Pill" + + pressa() + pressa() + pressb() + pressa() + pressb() + + time.sleep(animwait) + + pressc() + pressc() + +def playgame(): + print "Playing a game" + + pressa() + pressa() + pressa() + pressb() + + for x in range (0,25): + pressb() + time.sleep(animwait) + + pressc() + pressc() + +def cleanup(): + print "Cleaning Up" + + for x in range (0,5): + pressa() + + pressb() + time.sleep(animwait) + pressc() + pressc() + +# The program really starts here and these next few lines act as initialization. +# First we clear the GPIO and bring them all HIGH to ensure there is nothing floating. +# I don't know if this is necessary just seems like good practice. + +clearbut() + +# I clear the console screen for neatness-sake. +os.system('clear') + +# I let the user know the program has started. +print "program started" + +# I begin a loop to +while True: +# check time + timenow = time.time() + +# The next run of if statements checks the current time against the last time the statement was run has +# If the elapsed time is greater than the pre-set interval the function is run. + + if timenow - timelast[1] > interval[1]: + feedmeal() + timelast[1] = timenow + os.system('clear') + + if timenow - timelast[2] > interval[2]: + feedpill() + timelast[2] = timenow + os.system('clear') + + if timenow - timelast[3] > interval[3]: + playgame() + timelast[3] = timenow + os.system('clear') + + if timenow - timelast[4] > interval[4]: + cleanup() + timelast[4] = timenow + os.system('clear') + + # before the loop cycles we clear out the buttons. + + clearbut() + + + + diff --git a/Drago.py b/Drago.py new file mode 100644 index 0000000000..5a61d90738 --- /dev/null +++ b/Drago.py @@ -0,0 +1,139 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +@import "tailwindcss"; +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --background: oklch(1 0 0); + --foreground: oklch(0.145 0 0); + --card: oklch(1 0 0); + --card-foreground: oklch(0.145 0 0); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.145 0 0); + --primary: oklch(0.205 0 0); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.97 0 0); + --secondary-foreground: oklch(0.205 0 0); + --muted: oklch(0.97 0 0); + --muted-foreground: oklch(0.556 0 0); + --accent: oklch(0.97 0 0); + --accent-foreground: oklch(0.205 0 0); + --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.577 0.245 27.325); + --border: oklch(0.922 0 0); + --input: oklch(0.922 0 0); + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --radius: 0.625rem; + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.145 0 0); + --sidebar-primary: oklch(0.205 0 0); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.97 0 0); + --sidebar-accent-foreground: oklch(0.205 0 0); + --sidebar-border: oklch(0.922 0 0); + --sidebar-ring: oklch(0.708 0 0); +} + +.dark { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --card: oklch(0.145 0 0); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.145 0 0); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.985 0 0); + --primary-foreground: oklch(0.205 0 0); + --secondary: oklch(0.269 0 0); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.269 0 0); + --muted-foreground: oklch(0.708 0 0); + --accent: oklch(0.269 0 0); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.396 0.141 25.723); + --destructive-foreground: oklch(0.637 0.237 25.331); + --border: oklch(0.269 0 0); + --input: oklch(0.269 0 0); + --ring: oklch(0.439 0 0); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.205 0 0); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.269 0 0); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(0.269 0 0); + --sidebar-ring: oklch(0.439 0 0); +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-destructive-foreground: var(--destructive-foreground); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/Dragoe.cpp b/Dragoe.cpp new file mode 100644 index 0000000000..5a61d90738 --- /dev/null +++ b/Dragoe.cpp @@ -0,0 +1,139 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +@import "tailwindcss"; +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --background: oklch(1 0 0); + --foreground: oklch(0.145 0 0); + --card: oklch(1 0 0); + --card-foreground: oklch(0.145 0 0); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.145 0 0); + --primary: oklch(0.205 0 0); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.97 0 0); + --secondary-foreground: oklch(0.205 0 0); + --muted: oklch(0.97 0 0); + --muted-foreground: oklch(0.556 0 0); + --accent: oklch(0.97 0 0); + --accent-foreground: oklch(0.205 0 0); + --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.577 0.245 27.325); + --border: oklch(0.922 0 0); + --input: oklch(0.922 0 0); + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --radius: 0.625rem; + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.145 0 0); + --sidebar-primary: oklch(0.205 0 0); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.97 0 0); + --sidebar-accent-foreground: oklch(0.205 0 0); + --sidebar-border: oklch(0.922 0 0); + --sidebar-ring: oklch(0.708 0 0); +} + +.dark { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --card: oklch(0.145 0 0); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.145 0 0); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.985 0 0); + --primary-foreground: oklch(0.205 0 0); + --secondary: oklch(0.269 0 0); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.269 0 0); + --muted-foreground: oklch(0.708 0 0); + --accent: oklch(0.269 0 0); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.396 0.141 25.723); + --destructive-foreground: oklch(0.637 0.237 25.331); + --border: oklch(0.269 0 0); + --input: oklch(0.269 0 0); + --ring: oklch(0.439 0 0); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.205 0 0); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.269 0 0); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(0.269 0 0); + --sidebar-ring: oklch(0.439 0 0); +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-destructive-foreground: var(--destructive-foreground); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/Dtrump.cpp b/Dtrump.cpp new file mode 100644 index 0000000000..c1c085dd42 --- /dev/null +++ b/Dtrump.cpp @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+ + diff --git a/Duvel.java b/Duvel.java new file mode 100644 index 0000000000..c082c29664 --- /dev/null +++ b/Duvel.java @@ -0,0 +1,33 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +; x64 Assembly Example with AVX-512 +vmovaps zmm0, [vec1] ; Load vector 1 +vmovaps zmm1, [vec2] ; Load vector 2 +vaddps zmm2, zmm0, zmm1 ; Add vectors +vmovaps [result], zmm2 ; Store result +hlt ; Halt execution +Program execution completed +Executing program... + +Line 1: ; x64 Assembly Example with AVX-512 +Line 2: vmovaps zmm0, [vec1] ; Load vector 1 +Line 3: vmovaps zmm1, [vec2] ; Load vector 2 +Line 4: vaddps zmm2, zmm0, zmm1 ; Add vectors +Line 5: vmovaps [result], zmm2 ; Store result +Line 6: hlt ; Halt execution + +Program execution completed! \ No newline at end of file diff --git a/Goofy.dwg b/Goofy.dwg new file mode 100644 index 0000000000..33c20aa618 Binary files /dev/null and b/Goofy.dwg differ diff --git a/Graphics.bat b/Graphics.bat new file mode 100644 index 0000000000..d82b4e5764 --- /dev/null +++ b/Graphics.bat @@ -0,0 +1,16 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +''' +""" +#$ex=1T^2-B^3 +#$sin(ex)=cos(1T^2)-tan(1B^3) +#$y=1T^2-1B^3-ex +#$y=cos(1T^2)-tan(1B^3)-sin(ex + #$E=3D^2+4D^3+5D^4(6D^5) + #$y=3D^2+4D^3+5D^4(6D^5)+E +print("Hello World") +''' \ No newline at end of file diff --git a/Graphics.oml.txt b/Graphics.oml.txt new file mode 100644 index 0000000000..d82b4e5764 --- /dev/null +++ b/Graphics.oml.txt @@ -0,0 +1,16 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +''' +""" +#$ex=1T^2-B^3 +#$sin(ex)=cos(1T^2)-tan(1B^3) +#$y=1T^2-1B^3-ex +#$y=cos(1T^2)-tan(1B^3)-sin(ex + #$E=3D^2+4D^3+5D^4(6D^5) + #$y=3D^2+4D^3+5D^4(6D^5)+E +print("Hello World") +''' \ No newline at end of file diff --git a/HTML BASICS 2.txt b/HTML BASICS 2.txt new file mode 100644 index 0000000000..7d6390149a --- /dev/null +++ b/HTML BASICS 2.txt @@ -0,0 +1,19 @@ + + + + + + + + HTML BASICS</ttile> + </head> + + <body> + <h1>my website h1 tag yo</h1> + <p> this is paragraph tag</p> + + + + <script type="text/javascript" src="./some/path/main.js"></script> + </body> + </html> \ No newline at end of file diff --git a/HTML BASICS.bat b/HTML BASICS.bat new file mode 100644 index 0000000000..7d6390149a --- /dev/null +++ b/HTML BASICS.bat @@ -0,0 +1,19 @@ +<!doctype html> + +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="description" content="my cool website"> + <link rel="stylesheel" href="./some/path.my.css"> + <title>HTML BASICS</ttile> + </head> + + <body> + <h1>my website h1 tag yo</h1> + <p> this is paragraph tag</p> + + + + <script type="text/javascript" src="./some/path/main.js"></script> + </body> + </html> \ No newline at end of file diff --git a/HTML BASICS.html b/HTML BASICS.html new file mode 100644 index 0000000000..7d6390149a --- /dev/null +++ b/HTML BASICS.html @@ -0,0 +1,19 @@ +<!doctype html> + +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="description" content="my cool website"> + <link rel="stylesheel" href="./some/path.my.css"> + <title>HTML BASICS</ttile> + </head> + + <body> + <h1>my website h1 tag yo</h1> + <p> this is paragraph tag</p> + + + + <script type="text/javascript" src="./some/path/main.js"></script> + </body> + </html> \ No newline at end of file diff --git a/HTML BASICS.txt b/HTML BASICS.txt new file mode 100644 index 0000000000..4046274099 Binary files /dev/null and b/HTML BASICS.txt differ diff --git a/HTML basics 3.bat b/HTML basics 3.bat new file mode 100644 index 0000000000..4e52f27201 --- /dev/null +++ b/HTML basics 3.bat @@ -0,0 +1,49 @@ +<html lang="en"> + <head> + <meta charset="utf-8"> + <head> + + <body> + <h1>this is a heading 1</h1> + + <h2>this is a heading 2</h2> + <h3>this is a heading 3</h3> + <h4>this is a heading 4</h4> + <h5>this is a heading 5</h5> + <h6>this is a heading 6</h6> + <h7>this is a heading 7</h7> + <h8>this is a heading 8</h8> + + <hr> + + <p>this is a paragraph awesome information</p> + <p>this is a paragraph awesome information</p> + <p>this is a paragraph awesome information</p> + <div>example</div> + <div>example</div> + <div>example</div> + + <a href="https://google.com">Google search apple ios</a> + + <hr> + + <p> if i could <b><strong>achieve</strong></b>,<br> + would achieve great actions,<br> + some <u>acheive</u> great history,<br> + and others are remebered by their generation upon thee</p> + <p><em><i>-Jevon James<i/></em></p> + <blockquote cite="https://google.com"> + i am a army U.S Govenment, U.S Military Veteran Enlisted Personnel. + </blockquote> + <div>hello world</div> + <br> + <div>hello world</div> + <br> + <div>hello world</div> + + + + + </body> + +</html> \ No newline at end of file diff --git a/HTML basics 3.exe b/HTML basics 3.exe new file mode 100644 index 0000000000..45f4231674 Binary files /dev/null and b/HTML basics 3.exe differ diff --git a/HTML basics 3.html b/HTML basics 3.html new file mode 100644 index 0000000000..4e52f27201 --- /dev/null +++ b/HTML basics 3.html @@ -0,0 +1,49 @@ +<html lang="en"> + <head> + <meta charset="utf-8"> + <head> + + <body> + <h1>this is a heading 1</h1> + + <h2>this is a heading 2</h2> + <h3>this is a heading 3</h3> + <h4>this is a heading 4</h4> + <h5>this is a heading 5</h5> + <h6>this is a heading 6</h6> + <h7>this is a heading 7</h7> + <h8>this is a heading 8</h8> + + <hr> + + <p>this is a paragraph awesome information</p> + <p>this is a paragraph awesome information</p> + <p>this is a paragraph awesome information</p> + <div>example</div> + <div>example</div> + <div>example</div> + + <a href="https://google.com">Google search apple ios</a> + + <hr> + + <p> if i could <b><strong>achieve</strong></b>,<br> + would achieve great actions,<br> + some <u>acheive</u> great history,<br> + and others are remebered by their generation upon thee</p> + <p><em><i>-Jevon James<i/></em></p> + <blockquote cite="https://google.com"> + i am a army U.S Govenment, U.S Military Veteran Enlisted Personnel. + </blockquote> + <div>hello world</div> + <br> + <div>hello world</div> + <br> + <div>hello world</div> + + + + + </body> + +</html> \ No newline at end of file diff --git a/HTML basics 3.txt b/HTML basics 3.txt new file mode 100644 index 0000000000..4e52f27201 --- /dev/null +++ b/HTML basics 3.txt @@ -0,0 +1,49 @@ +<html lang="en"> + <head> + <meta charset="utf-8"> + <head> + + <body> + <h1>this is a heading 1</h1> + + <h2>this is a heading 2</h2> + <h3>this is a heading 3</h3> + <h4>this is a heading 4</h4> + <h5>this is a heading 5</h5> + <h6>this is a heading 6</h6> + <h7>this is a heading 7</h7> + <h8>this is a heading 8</h8> + + <hr> + + <p>this is a paragraph awesome information</p> + <p>this is a paragraph awesome information</p> + <p>this is a paragraph awesome information</p> + <div>example</div> + <div>example</div> + <div>example</div> + + <a href="https://google.com">Google search apple ios</a> + + <hr> + + <p> if i could <b><strong>achieve</strong></b>,<br> + would achieve great actions,<br> + some <u>acheive</u> great history,<br> + and others are remebered by their generation upon thee</p> + <p><em><i>-Jevon James<i/></em></p> + <blockquote cite="https://google.com"> + i am a army U.S Govenment, U.S Military Veteran Enlisted Personnel. + </blockquote> + <div>hello world</div> + <br> + <div>hello world</div> + <br> + <div>hello world</div> + + + + + </body> + +</html> \ No newline at end of file diff --git a/Identity.json b/Identity.json new file mode 100644 index 0000000000..1dbfba4dbb --- /dev/null +++ b/Identity.json @@ -0,0 +1,74 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "delegateIdentity": { + "type": "bool", + "defaultValue": false + }, + "identityName": { + "type": "string" + }, + "location": { + "type": "string" + } + }, + "variables": { + "contributor": "[concat(subscription().id, '/providers/Microsoft.Authorization/roleDefinitions/', 'b24988ac-6180-42a0-ab88-20f7382dd24c')]", + "identity": "[resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', parameters('identityName'))]", + "roleAssignmentName": "[guid(resourceGroup().id, parameters('identityName'))]", + "delegatedRoleAssignmentName": "[guid(resourceGroup().id, parameters('identityName'), 'delegated')]" + }, + "resources": [ + { + "comments": "User-assigned managed identity used by deployment script", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "apiVersion": "2018-11-30", + "name": "[parameters('identityName')]", + "location": "[parameters('location')]" + }, + { + "condition": "[not(parameters('delegateIdentity'))]", + "comments": "Grant user-assigned managed identity permission on the scope of resource group", + "type": "Microsoft.Authorization/roleAssignments", + "apiVersion": "2020-04-01-preview", + "name": "[variables('roleAssignmentName')]", + "dependsOn": [ + "[variables('identity')]" + ], + "properties": { + "roleDefinitionId": "[variables('contributor')]", + "principalId": "[reference(parameters('identityName')).principalId]", + "principalType": "ServicePrincipal", + "scope": "[resourceGroup().id]" + } + }, + { + "condition": "[parameters('delegateIdentity')]", + "comments": "Grant user-assigned managed identity permission on the scope of resource group", + "type": "Microsoft.Authorization/roleAssignments", + "apiVersion": "2020-04-01-preview", + "name": "[variables('delegatedRoleAssignmentName')]", + "dependsOn": [ + "[variables('identity')]" + ], + "properties": { + "roleDefinitionId": "[variables('contributor')]", + "principalId": "[reference(parameters('identityName')).principalId]", + "principalType": "ServicePrincipal", + "scope": "[resourceGroup().id]", + "delegatedManagedIdentityResourceId": "[variables('identity')]" + } + } + ], + "outputs": { + "resourceId": { + "type": "string", + "value": "[variables('identity')]" + }, + "principalId": { + "type": "string", + "value": "[reference(parameters('identityName')).principalId]" + } + } +} diff --git a/IndEx CSS 1.txt b/IndEx CSS 1.txt new file mode 100644 index 0000000000..646106149f --- /dev/null +++ b/IndEx CSS 1.txt @@ -0,0 +1,7 @@ +h1 { + color: red; +} + +p { +color: blue; +} \ No newline at end of file diff --git a/Index html.txt b/Index html.txt new file mode 100644 index 0000000000..d42c07589e --- /dev/null +++ b/Index html.txt @@ -0,0 +1,17 @@ +<html lang="en"> +<head> +<title>My First Websit + + + +

My first website

+

I'm stoked to build a website

+ + + + + + + + \ No newline at end of file diff --git a/Index.HTML.txt b/Index.HTML.txt new file mode 100644 index 0000000000..d42c07589e --- /dev/null +++ b/Index.HTML.txt @@ -0,0 +1,17 @@ + + +My First Websit + + + +

My first website

+

I'm stoked to build a website

+ + + + + + + + \ No newline at end of file diff --git a/Index.bat b/Index.bat new file mode 100644 index 0000000000..9cb94f5430 --- /dev/null +++ b/Index.bat @@ -0,0 +1,17 @@ + + +My First website + + + +

My first website

+

I'm stoked to build a website

+ + + + + + + + \ No newline at end of file diff --git a/Index.html b/Index.html new file mode 100644 index 0000000000..9cb94f5430 --- /dev/null +++ b/Index.html @@ -0,0 +1,17 @@ + + +My First website + + + +

My first website

+

I'm stoked to build a website

+ + + + + + + + \ No newline at end of file diff --git a/James Identity Finincial.oap b/James Identity Finincial.oap new file mode 100644 index 0000000000..46f9d06551 Binary files /dev/null and b/James Identity Finincial.oap differ diff --git a/Jjjjjjai b/Jjjjjjai new file mode 100644 index 0000000000..11fe825096 --- /dev/null +++ b/Jjjjjjai @@ -0,0 +1,437 @@ + +Original file line number Diff line number Diff line change + + + + + + + + + + + + + +VibeVoice + + + +
+ +
+
+

VibeVoice: A Frontier Open-Source Text-to-Speech Model

+ +
+ +

+ VibeVoice is a novel framework designed for generating expressive, long-form, multi-speaker conversational audio, such as podcasts, from text. It addresses significant challenges in traditional Text-to-Speech (TTS) systems, particularly in scalability, speaker consistency, and natural turn-taking. +A core innovation of VibeVoice is its use of continuous speech tokenizers (Acoustic and Semantic) operating at an ultra-low frame rate of 7.5 Hz. These tokenizers efficiently preserve audio fidelity while significantly boosting computational efficiency for processing long sequences. VibeVoice employs a next-token diffusion framework, leveraging a Large Language Model (LLM) to understand textual context and dialogue flow, and a diffusion head to generate high-fidelity acoustic details. +The model can synthesize speech up to 90 minutes long with up to 4 distinct speakers, surpassing the typical 1-2 speaker limits of many prior models. +

+ +
+
+ VibeVoice Framework +
+
+ MOS Preference Results +
+
+

+ 2025-09-05: VibeVoice is an open-source research framework intended to advance collaboration in the speech synthesis community. After release, we discovered instances where the tool was used in ways inconsistent with the stated intent. Since responsible use of AI is one of Microsoft’s guiding principles, we have disabled the repo until we are confident that out-of-scope use is no longer possible. +

+
+
+ +
+

Context-Aware Expression

+
+

Spontaneous Emotion

+
+ +
+
+
+
+

Spontaneous Singing

+
+ +
+
+
+
+
+

Podcast with Background Music

+
+ +
+ +
+
+
+
+ +
+ +
+
+
+
+
+

Cross-Lingual

+
+

Mandarin to English

+
+ +
+
+
+
+

English to Mandarin

+
+ +
+
+
+
+
+

Long Conversational Speech

+
+ +
+ +
+
+
+
+ +
+ +
+
+

* Timestamps are derived from the generated audio and may contain errors.

+
+
+ + +
+ + + +// SimpleNeuralNetwork.java +public class SimpleNeuralNetwork { + + private double[][] weights; + private double learningRate; + + public SimpleNeuralNetwork(int inputSize, int outputSize, double learningRate) { + this.weights = new double[inputSize + 1][outputSize]; // +1 for bias + this.learningRate = learningRate; + initializeWeights(); + } + + private void initializeWeights() { + // Initialize weights randomly + for (int i = 0; i < weights.length; i++) { + for (int j = 0; j < weights[0].length; j++) { + weights[i][j] = Math.random() * 2 - 1; // Random values between -1 and 1 + } + } + } + + public double[] predict(double[] inputs) { + double[] activations = new double[weights[0].length]; + for (int j = 0; j < weights[0].length; j++) { + double sum = 0; + for (int i = 0; i < inputs.length; i++) { + sum += inputs[i] * weights[i][j]; + } + sum += 1 * weights[inputs.length][j]; // Bias term + activations[j] = sigmoid(sum); // Using sigmoid activation function + } + return activations; + } + + public void train(double[] inputs, double[] targetOutputs) { + double[] predictedOutputs = predict(inputs); + double[] errors = new double[predictedOutputs.length]; + + // Calculate errors + for (int i = 0; i < predictedOutputs.length; i++) { + errors[i] = targetOutputs[i] - predictedOutputs[i]; + } + + // Update weights using gradient descent + for (int j = 0; j < weights[0].length; j++) { + for (int i = 0; i < inputs.length; i++) { + weights[i][j] += learningRate * errors[j] * inputs[i]; + } + weights[inputs.length][j] += learningRate * errors[j] * 1; // Update bias weight + } + } + + private double sigmoid(double x) { + return 1 / (1 + Math.exp(-x)); + } + + public static void main(String[] args) { + SimpleNeuralNetwork nn = new SimpleNeuralNetwork(2, 1, 0.1); // 2 inputs, 1 output, learning rate 0.1 + + // Training data for an XOR-like problem + double[][] trainingInputs = {{0, 0}, {0, 1}, {1, 0}, {1, 1}}; + double[][] trainingOutputs = {{0}, {1}, {1}, {0}}; + + for (int epoch = 0; epoch < 10000; epoch++) { + for (int i = 0; i < trainingInputs.length; i++) { + nn.train(trainingInputs[i], trainingOutputs[i]); + } + } + + // Test the trained network + System.out.println("0, 0 -> " + nn.predict(new double[]{0, 0})[0]); + System.out.println("0, 1 -> " + nn.predict(new double[]{0, 1})[0]); + System.out.println("1, 0 -> " + nn.predict(new double[]{1, 0})[0]); + System.out.println("1, 1 -> " + nn.predict(new double[]{1, 1})[0]); + } +} diff --git a/Jovel.cpp b/Jovel.cpp new file mode 100644 index 0000000000..c082c29664 --- /dev/null +++ b/Jovel.cpp @@ -0,0 +1,33 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +; x64 Assembly Example with AVX-512 +vmovaps zmm0, [vec1] ; Load vector 1 +vmovaps zmm1, [vec2] ; Load vector 2 +vaddps zmm2, zmm0, zmm1 ; Add vectors +vmovaps [result], zmm2 ; Store result +hlt ; Halt execution +Program execution completed +Executing program... + +Line 1: ; x64 Assembly Example with AVX-512 +Line 2: vmovaps zmm0, [vec1] ; Load vector 1 +Line 3: vmovaps zmm1, [vec2] ; Load vector 2 +Line 4: vaddps zmm2, zmm0, zmm1 ; Add vectors +Line 5: vmovaps [result], zmm2 ; Store result +Line 6: hlt ; Halt execution + +Program execution completed! \ No newline at end of file diff --git a/Jrv.java b/Jrv.java new file mode 100644 index 0000000000..05ff0aefe6 --- /dev/null +++ b/Jrv.java @@ -0,0 +1,377 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} + +Original file line number Diff line number Diff line change + + + + + + + + + + + + + +VibeVoice + + + +
+ +
+
+

VibeVoice: A Frontier Open-Source Text-to-Speech Model

+ +
+ +

+ VibeVoice is a novel framework designed for generating expressive, long-form, multi-speaker conversational audio, such as podcasts, from text. It addresses significant challenges in traditional Text-to-Speech (TTS) systems, particularly in scalability, speaker consistency, and natural turn-taking. +A core innovation of VibeVoice is its use of continuous speech tokenizers (Acoustic and Semantic) operating at an ultra-low frame rate of 7.5 Hz. These tokenizers efficiently preserve audio fidelity while significantly boosting computational efficiency for processing long sequences. VibeVoice employs a next-token diffusion framework, leveraging a Large Language Model (LLM) to understand textual context and dialogue flow, and a diffusion head to generate high-fidelity acoustic details. +The model can synthesize speech up to 90 minutes long with up to 4 distinct speakers, surpassing the typical 1-2 speaker limits of many prior models. +

+ +
+
+ VibeVoice Framework +
+
+ MOS Preference Results +
+
+

+ 2025-09-05: VibeVoice is an open-source research framework intended to advance collaboration in the speech synthesis community. After release, we discovered instances where the tool was used in ways inconsistent with the stated intent. Since responsible use of AI is one of Microsoft’s guiding principles, we have disabled the repo until we are confident that out-of-scope use is no longer possible. +

+
+
+ +
+

Context-Aware Expression

+
+

Spontaneous Emotion

+
+ +
+
+
+
+

Spontaneous Singing

+
+ +
+
+
+
+
+

Podcast with Background Music

+
+ +
+ +
+
+
+
+ +
+ +
+
+
+
+
+

Cross-Lingual

+
+

Mandarin to English

+
+ +
+
+
+
+

English to Mandarin

+
+ +
+
+
+
+
+

Long Conversational Speech

+
+ +
+ +
+
+
+
+ +
+ +
+
+

* Timestamps are derived from the generated audio and may contain errors.

+
+
+ + +
+ + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000..4b1ad51b2f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/Manniefresh.cpp b/Manniefresh.cpp new file mode 100644 index 0000000000..05ff0aefe6 --- /dev/null +++ b/Manniefresh.cpp @@ -0,0 +1,377 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} + +Original file line number Diff line number Diff line change + + + + + + + + + + + + + +VibeVoice + + + +
+ +
+
+

VibeVoice: A Frontier Open-Source Text-to-Speech Model

+ +
+ +

+ VibeVoice is a novel framework designed for generating expressive, long-form, multi-speaker conversational audio, such as podcasts, from text. It addresses significant challenges in traditional Text-to-Speech (TTS) systems, particularly in scalability, speaker consistency, and natural turn-taking. +A core innovation of VibeVoice is its use of continuous speech tokenizers (Acoustic and Semantic) operating at an ultra-low frame rate of 7.5 Hz. These tokenizers efficiently preserve audio fidelity while significantly boosting computational efficiency for processing long sequences. VibeVoice employs a next-token diffusion framework, leveraging a Large Language Model (LLM) to understand textual context and dialogue flow, and a diffusion head to generate high-fidelity acoustic details. +The model can synthesize speech up to 90 minutes long with up to 4 distinct speakers, surpassing the typical 1-2 speaker limits of many prior models. +

+ +
+
+ VibeVoice Framework +
+
+ MOS Preference Results +
+
+

+ 2025-09-05: VibeVoice is an open-source research framework intended to advance collaboration in the speech synthesis community. After release, we discovered instances where the tool was used in ways inconsistent with the stated intent. Since responsible use of AI is one of Microsoft’s guiding principles, we have disabled the repo until we are confident that out-of-scope use is no longer possible. +

+
+
+ +
+

Context-Aware Expression

+
+

Spontaneous Emotion

+
+ +
+
+
+
+

Spontaneous Singing

+
+ +
+
+
+
+
+

Podcast with Background Music

+
+ +
+ +
+
+
+
+ +
+ +
+
+
+
+
+

Cross-Lingual

+
+

Mandarin to English

+
+ +
+
+
+
+

English to Mandarin

+
+ +
+
+
+
+
+

Long Conversational Speech

+
+ +
+ +
+
+
+
+ +
+ +
+
+

* Timestamps are derived from the generated audio and may contain errors.

+
+
+ + +
+ + + \ No newline at end of file diff --git a/Matrix.bat b/Matrix.bat new file mode 100644 index 0000000000..78bd5dd6b8 --- /dev/null +++ b/Matrix.bat @@ -0,0 +1,22 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +'' +""" + +>>>print("Hello World", print("Aaa,aaA,Baa,aaB") +>> print("0-9", print("A-Z"), print("a-z") +>>> small_letters =map(chr, range(ord('a'), ord('z')+1)) +>>> an = small_letters[0:(ord('n')-ord('a')+1)] +print( " ".join('an')) +abcdefghijkmn +>>> print( " ".join(small_letters[0::2]))... +"" +'' +print("y = x+emc^2") +""" +#"main.Python" +''' diff --git a/Matrix.py b/Matrix.py new file mode 100644 index 0000000000..78bd5dd6b8 --- /dev/null +++ b/Matrix.py @@ -0,0 +1,22 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +'' +""" + +>>>print("Hello World", print("Aaa,aaA,Baa,aaB") +>> print("0-9", print("A-Z"), print("a-z") +>>> small_letters =map(chr, range(ord('a'), ord('z')+1)) +>>> an = small_letters[0:(ord('n')-ord('a')+1)] +print( " ".join('an')) +abcdefghijkmn +>>> print( " ".join(small_letters[0::2]))... +"" +'' +print("y = x+emc^2") +""" +#"main.Python" +''' diff --git a/Matrix.txt b/Matrix.txt new file mode 100644 index 0000000000..78bd5dd6b8 --- /dev/null +++ b/Matrix.txt @@ -0,0 +1,22 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +'' +""" + +>>>print("Hello World", print("Aaa,aaA,Baa,aaB") +>> print("0-9", print("A-Z"), print("a-z") +>>> small_letters =map(chr, range(ord('a'), ord('z')+1)) +>>> an = small_letters[0:(ord('n')-ord('a')+1)] +print( " ".join('an')) +abcdefghijkmn +>>> print( " ".join(small_letters[0::2]))... +"" +'' +print("y = x+emc^2") +""" +#"main.Python" +''' diff --git a/Moved.py b/Moved.py new file mode 100644 index 0000000000..c082c29664 --- /dev/null +++ b/Moved.py @@ -0,0 +1,33 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +; x64 Assembly Example with AVX-512 +vmovaps zmm0, [vec1] ; Load vector 1 +vmovaps zmm1, [vec2] ; Load vector 2 +vaddps zmm2, zmm0, zmm1 ; Add vectors +vmovaps [result], zmm2 ; Store result +hlt ; Halt execution +Program execution completed +Executing program... + +Line 1: ; x64 Assembly Example with AVX-512 +Line 2: vmovaps zmm0, [vec1] ; Load vector 1 +Line 3: vmovaps zmm1, [vec2] ; Load vector 2 +Line 4: vaddps zmm2, zmm0, zmm1 ; Add vectors +Line 5: vmovaps [result], zmm2 ; Store result +Line 6: hlt ; Halt execution + +Program execution completed! \ No newline at end of file diff --git a/My first Website.txt b/My first Website.txt new file mode 100644 index 0000000000..66efca64df --- /dev/null +++ b/My first Website.txt @@ -0,0 +1,16 @@ + + +My First Websit + + + +

My first website

+

I'm stoked to build a website

+ + + + + + + + \ No newline at end of file diff --git a/New Project 4a7iiii.vsp b/New Project 4a7iiii.vsp new file mode 100644 index 0000000000..09cb9e40e6 Binary files /dev/null and b/New Project 4a7iiii.vsp differ diff --git a/New Project 4aiiii.vsp b/New Project 4aiiii.vsp new file mode 100644 index 0000000000..088ebf5d73 Binary files /dev/null and b/New Project 4aiiii.vsp differ diff --git a/New Project 4aiiiiii.vsp b/New Project 4aiiiiii.vsp new file mode 100644 index 0000000000..822f42bb59 Binary files /dev/null and b/New Project 4aiiiiii.vsp differ diff --git a/New Project 567aiii.vsp b/New Project 567aiii.vsp new file mode 100644 index 0000000000..44a8ffedb4 Binary files /dev/null and b/New Project 567aiii.vsp differ diff --git a/New Project 59aiii.vsp b/New Project 59aiii.vsp new file mode 100644 index 0000000000..5c26f3071e Binary files /dev/null and b/New Project 59aiii.vsp differ diff --git a/New Project 5a6iii.vsp b/New Project 5a6iii.vsp new file mode 100644 index 0000000000..f74b627a25 Binary files /dev/null and b/New Project 5a6iii.vsp differ diff --git a/New Project 5a6iii.vsp (1) b/New Project 5a6iii.vsp (1) new file mode 100644 index 0000000000..2f2c8268f6 Binary files /dev/null and b/New Project 5a6iii.vsp (1) differ diff --git a/New Project 775aiii.vsp b/New Project 775aiii.vsp new file mode 100644 index 0000000000..0a79622d13 Binary files /dev/null and b/New Project 775aiii.vsp differ diff --git a/New Project AI Artificial intelligence 2.vsp b/New Project AI Artificial intelligence 2.vsp new file mode 100644 index 0000000000..6ca6ec2c10 Binary files /dev/null and b/New Project AI Artificial intelligence 2.vsp differ diff --git a/New Project aiii5.vsp b/New Project aiii5.vsp new file mode 100644 index 0000000000..57b477dcb7 Binary files /dev/null and b/New Project aiii5.vsp differ diff --git a/New Project aiiiii.vsp b/New Project aiiiii.vsp new file mode 100644 index 0000000000..f4933dc8bb Binary files /dev/null and b/New Project aiiiii.vsp differ diff --git a/Opera.bat b/Opera.bat new file mode 100644 index 0000000000..23fcb2d7df --- /dev/null +++ b/Opera.bat @@ -0,0 +1,151 @@ + #Enter your code here...#Enter your code here... #import unittest.mock + #def test_input_mocking(): +#Enter your code here...#Enter your code here...# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +#Imagine you're creating a machine that will count your money for you +#and tell you how wealthy you are based on how much money you have. +#A variable `dollars` has been given to you with a value of 0. +#Write an if statement that prints "Sorry, kid. You're broke!" if `dollars` has a +#value of 0. +#Write this if statement right below the first line of code. Observe what is +#printed to the console. + +#var dollars = 0 +#let linebreak = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +#print("Sorry, Kid. You're Broke!") +/*: +#`dollars` has been updated below to have a value of 10. +#Write a new if-else statement below this next line of code that +#prints "Sorry, kid. You're broke!" if `dollars` has a value of 0, +#but prints "You've got some spending money!" otherwise. Observe what is printed to +#the console. +dollars = 10 +let Quotation = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +print("You've got some spending money!") +/*: +Again, `dollars` has been updated below to have a value of 105. +Write a new if-else-if statement that prints "Sorry, kid. You're broke!" if +`dollars` has a value of 0, +prints "You've got some spending money!" if `dollars` is less than 100, and prints +"Looks to me like you're rich!" otherwise. +Observe what is printed to the console. +*/: +dollars = 105 +let somestring = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 100. +""" +print("looks to me like you're rich") +let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +#let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +#"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Read an integer: +# a = int(input()) +# Print a value: +# print(a) +# a = int(input(179)) +# b = int(input(178)) +# c = int(input(180)) +# print(a,b,c,) +# let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Can you change it so it can read and sum three numbers? +#a = int(input(22)) +#b = int(input(38)) +#c = int(input(50)) +#print(a + b + c) +#let somestring = """ +#Steps taken; "[5000] steps taken toda." People are pleased. +""" everyone ordinary individual takes [10000];" "steps at an average." Every day +#people. +""" +#print("you're almost there.") +#let morestring = """ +#way to get a good start today. "if steps is less than [10000] your almost halfweay +#there!" +""" +print("Youre over halfway there.") +let Quotation = """ +#The Introduction Of James On The Eve Was Spectacular. "Where was Sam to Arrive with +#his introduction at eve before the end of show?" she asked. +"""The Janitor Touched the table." To clean the apple spill, "for the event was +#completed," and the night was young "and go to the banquet in the morning; eat diana +#so the sun rise you sleep." the group asked." +""" +#print("let Quotation") +#print("")# Read a string: +# a = input() +# Print a string: +# print(a) +# a = int(input(Hello,) +# = int(input(User)) +# print("a") +# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +""" + """ +#test_input_mocking() +"""#e=mc^3 +#e=mc^2 +#e^(2)=mc^(3) red +#e^()=mc^(3 ) blue +#e^(2)=mc^( ) green +#e=mc^(2) red +#e^(9m)=c^(9) blue +#e^(2m)=c^(7) green +#e^(3m)=c^(5) purple +#e^(4m)=c^(3) yellow +#m=c^(3+e^(2)) grew +#m=c^(7-e^(3)) light blue +#Jevon Jamel James 12.19.2020 12/19/2020 +#”Moses was born in Egypt in the deep Nile of the crescent of Egypt; “” is mother tried to save him.”” by throwing him in the stream leading to the city; “” but was abandoned founded washed up in the. +#”” Pharaohs high priest wifes garden their pond, “”he was seen as the son of Pharaoh god gave. +#””moses one day a minds eye the bushes of fire, “”the image of god himself that man could not. +#””comprehend but the true Prophet Moses; “” you see the son you see god as you see gods +servant you see god,”” Abrahm was sitting by his dwelling he saw a man approached for who is. +#””he this farmer rich man the man angel said Abraham said by Moses; ””This is He Abrahm so you. +#”” shall bear a son named Ishmel; “” and you shall not cross that river you are blessed as Moses was. +#””blessed in the mind's eye you are Abrahm. “”What the gods Abrahm was afraid of Kadosh Holy. +#””Holy it is unclean Unholy. +# ””Author: “”Jevon Jamel James. +#””Date: “”01.””01.””2021. +""" +#test_input_mocking() +#!j:: +#run, C:\File\Path\to\PythonScript.py \ No newline at end of file diff --git a/Pie.java b/Pie.java new file mode 100644 index 0000000000..5a61d90738 --- /dev/null +++ b/Pie.java @@ -0,0 +1,139 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +@import "tailwindcss"; +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --background: oklch(1 0 0); + --foreground: oklch(0.145 0 0); + --card: oklch(1 0 0); + --card-foreground: oklch(0.145 0 0); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.145 0 0); + --primary: oklch(0.205 0 0); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.97 0 0); + --secondary-foreground: oklch(0.205 0 0); + --muted: oklch(0.97 0 0); + --muted-foreground: oklch(0.556 0 0); + --accent: oklch(0.97 0 0); + --accent-foreground: oklch(0.205 0 0); + --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.577 0.245 27.325); + --border: oklch(0.922 0 0); + --input: oklch(0.922 0 0); + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --radius: 0.625rem; + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.145 0 0); + --sidebar-primary: oklch(0.205 0 0); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.97 0 0); + --sidebar-accent-foreground: oklch(0.205 0 0); + --sidebar-border: oklch(0.922 0 0); + --sidebar-ring: oklch(0.708 0 0); +} + +.dark { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --card: oklch(0.145 0 0); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.145 0 0); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.985 0 0); + --primary-foreground: oklch(0.205 0 0); + --secondary: oklch(0.269 0 0); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.269 0 0); + --muted-foreground: oklch(0.708 0 0); + --accent: oklch(0.269 0 0); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.396 0.141 25.723); + --destructive-foreground: oklch(0.637 0.237 25.331); + --border: oklch(0.269 0 0); + --input: oklch(0.269 0 0); + --ring: oklch(0.439 0 0); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.205 0 0); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.269 0 0); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(0.269 0 0); + --sidebar-ring: oklch(0.439 0 0); +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-destructive-foreground: var(--destructive-foreground); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/Qwork.java b/Qwork.java new file mode 100644 index 0000000000..59414e9162 --- /dev/null +++ b/Qwork.java @@ -0,0 +1,92 @@ +/****************************************************************************** + +Welcome to GDB Online. + GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, + C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS + Code, Compile, Run and Debug online from anywhere in world. + +*******************************************************************************/ +#include + +int main() +{ + printf("Hello World"); + + return 0; +} +// SimpleNeuralNetwork.java +public class SimpleNeuralNetwork { + + private double[][] weights; + private double learningRate; + + public SimpleNeuralNetwork(int inputSize, int outputSize, double learningRate) { + this.weights = new double[inputSize + 1][outputSize]; // +1 for bias + this.learningRate = learningRate; + initializeWeights(); + } + + private void initializeWeights() { + // Initialize weights randomly + for (int i = 0; i < weights.length; i++) { + for (int j = 0; j < weights[0].length; j++) { + weights[i][j] = Math.random() * 2 - 1; // Random values between -1 and 1 + } + } + } + + public double[] predict(double[] inputs) { + double[] activations = new double[weights[0].length]; + for (int j = 0; j < weights[0].length; j++) { + double sum = 0; + for (int i = 0; i < inputs.length; i++) { + sum += inputs[i] * weights[i][j]; + } + sum += 1 * weights[inputs.length][j]; // Bias term + activations[j] = sigmoid(sum); // Using sigmoid activation function + } + return activations; + } + + public void train(double[] inputs, double[] targetOutputs) { + double[] predictedOutputs = predict(inputs); + double[] errors = new double[predictedOutputs.length]; + + // Calculate errors + for (int i = 0; i < predictedOutputs.length; i++) { + errors[i] = targetOutputs[i] - predictedOutputs[i]; + } + + // Update weights using gradient descent + for (int j = 0; j < weights[0].length; j++) { + for (int i = 0; i < inputs.length; i++) { + weights[i][j] += learningRate * errors[j] * inputs[i]; + } + weights[inputs.length][j] += learningRate * errors[j] * 1; // Update bias weight + } + } + + private double sigmoid(double x) { + return 1 / (1 + Math.exp(-x)); + } + + public static void main(String[] args) { + SimpleNeuralNetwork nn = new SimpleNeuralNetwork(2, 1, 0.1); // 2 inputs, 1 output, learning rate 0.1 + + // Training data for an XOR-like problem + double[][] trainingInputs = {{0, 0}, {0, 1}, {1, 0}, {1, 1}}; + double[][] trainingOutputs = {{0}, {1}, {1}, {0}}; + + for (int epoch = 0; epoch < 10000; epoch++) { + for (int i = 0; i < trainingInputs.length; i++) { + nn.train(trainingInputs[i], trainingOutputs[i]); + } + } + + // Test the trained network + System.out.println("0, 0 -> " + nn.predict(new double[]{0, 0})[0]); + System.out.println("0, 1 -> " + nn.predict(new double[]{0, 1})[0]); + System.out.println("1, 0 -> " + nn.predict(new double[]{1, 0})[0]); + System.out.println("1, 1 -> " + nn.predict(new double[]{1, 1})[0]); + } +} \ No newline at end of file diff --git a/README.md b/README.md index 39b1cd46d0..1749821e08 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,104 @@ -[![CircleCI](https://circleci.com/gh/contentful/apps.svg?style=svg&circle-token=913f0d4852062fbed644fca927d059d5e3e72908)](https://circleci.com/gh/contentful/apps) +# AI Introduction +Artificial intelligence (AI) is intelligence demonstrated by machines, as opposed to intelligence of humans and other animals. Example tasks in which this is done include speech recognition, computer vision, translation between (natural) languages, as well as other mappings of inputs. -# Contentful apps repository +AI applications include advanced web search engines (e.g., Google Search), recommendation systems (used by YouTube, Amazon, and Netflix), understanding human speech (such as Siri and Alexa), self-driving cars (e.g., Waymo), generative or creative tools (ChatGPT and AI art), automated decision-making, and competing at the highest level in strategic game systems (such as chess and Go). -This repository contains the source code for most apps on the [marketplace](https://www.contentful.com/marketplace/) and helpful resources to build your own apps for Contentful. +As machines become increasingly capable, tasks considered to require "intelligence" are often removed from the definition of AI, a phenomenon known as the AI effect. For instance, optical character recognition is frequently excluded from things considered to be AI, having become a routine technology. -This repository also includes two packages that help you developing your own apps: -* [dam-app-base](packages/dam-app-base) -* [ecommerce-app-base](packages/ecommerce-app-base) +Artificial intelligence was founded as an academic discipline in 1956, and in the years since it has experienced several waves of optimism, followed by disappointment and the loss of funding (known as an "AI winter"), followed by new approaches, success, and renewed funding. AI research has tried and discarded many different approaches, including simulating the brain, modeling human problem solving, formal logic, large databases of knowledge, and imitating animal behavior. In the first decades of the 21st century, highly mathematical and statistical machine learning has dominated the field, and this technique has proved highly successful, helping to solve many challenging problems throughout industry and academia. -## Installing an app +The various sub-fields of AI research are centered around particular goals and the use of particular tools. The traditional goals of AI research include reasoning, knowledge representation, planning, learning, natural language processing, perception, and the ability to move and manipulate objects. General intelligence (the ability to solve an arbitrary problem) is among the field's long-term goals. To solve these problems, AI researchers have adapted and integrated a wide range of problem-solving techniques, including search and mathematical optimization, formal logic, artificial neural networks, and methods based on statistics, probability, and economics. AI also draws upon computer science, psychology, linguistics, philosophy, and many other fields. -Head over to the [marketplace](https://www.contentful.com/marketplace/) and follow the installation flow to set up any of the apps in your Contentful space. -## Building your own app -The best way to get started on app development is with our [create-contentful-app](https://github.com/contentful/create-contentful-app) CLI tool. -This tool will bootstrap a brand new project with all the boilerplate code you need to start building an app. -If you are interested in learning how to build a simple example app, you can check out our [tutorial](https://www.contentful.com/developers/docs/extensibility/apps/building-apps/). +# Samples, Reference Architectures & Best Practices -Detailed documentation can be found in the [App SDK documentation](https://www.contentful.com/developers/docs/extensibility/ui-extensions/sdk-reference/) and the [Management HTTP API reference documentation](https://www.contentful.com/developers/docs/references/content-management-api/). +This repository is meant to organize Microsoft's Open Source AI based repositories. -Please note that each app has its individual source code license associated with it. Refer to the LICENSE file in the apps root folder. +# Keywords +batch scoring, realtime scoring, model training, MLOps, Azure Machine Learning, computer vision, natural language processing, recommenders -## Resources +## Table of contents +1. [Getting Started](#Getting-Started) +2. [AI100 - Samples](#ai100) +3. [AI200 - Reference Architectures](#ai200) +4. [AI300 - Best Practices](#ai300) +6. [Contributing](#Contributing) -* [Tutorial: Building your first app](https://www.contentful.com/developers/docs/extensibility/apps/building-apps/) -* [Webinar: How to build your first app with Contentful’s new App Framework](https://www.contentful.com/resources/build-app-contentful-app-framework-webinar/) -* [App SDK documentation](https://www.contentful.com/developers/docs/extensibility/ui-extensions/sdk-reference/) -* [Management HTTP API reference documentation](https://www.contentful.com/developers/docs/references/content-management-api/) -* [Marketplace](https://www.contentful.com/marketplace/) -* [App documentation](https://www.contentful.com/developers/docs/extensibility/apps/) -* [Contentful Changelog](https://www.contentful.com/developers/changelog/) -* [Forma 36: The Contentful Design System](https://f36.contentful.com/) +# Getting Started
+This repository is arranged as submodules so you can either pull all the tutorials or simply the ones you want. +To pull all the tutorials run: -## Support and feature requests -If you require support, or want to request a new feature then please -use the appropriate support channel which will be listed with the app on our [app -marketplace](https://www.contentful.com/marketplace/). +```bash +git clone --recurse-submodules https://github.com/microsoft/ai +``` +if you have git older than 2.13 run: + +```bash +git clone --recursive https://github.com/microsoft/ai.git +``` + +To pull a single submodule (e.g. DeployDeepModelKubernetes) run: +``` +git clone https://github.com/microsoft/ai +cd ai +git submodule init submodules/DeployDeepModelKubernetes +git submodule update +``` +# [AI100 - Samples](https://azure.microsoft.com/en-us/overview/ai-platform/) +Samples are a collection of open source Python repositories created by the Microsoft product teams, which focus on AI services. + +| Title | Description | +|-------|-------------| +| [Azure ML Python SDK](https://github.com/Azure/MachineLearningNotebooks)|Python notebooks with ML and deep learning examples with Azure Machine Learning| +| [Azure Cognitive Services Python SDK](https://github.com/Azure-Samples/cognitive-services-python-sdk-samples)|Learn how to use the Cognitive Services Python SDK with these samples | +| [Azure Intelligent Kiosk](https://github.com/microsoft/Cognitive-Samples-IntelligentKiosk)|Here you will find several demos showcasing workflows and experiences built on top of the Microsoft Cognitive Services.| +| [MML Spark Samples](https://github.com/Azure/mmlspark/tree/master/notebooks/samples)|MMLSpark is an ecosystem of tools aimed towards expanding the distributed computing framework Apache Spark in several new directions.| +| [Seismic Deep Learning Samples](https://github.com/microsoft/seismic-deeplearning/)|Deep Learning for Seismic Imaging and Interpretation.| + +# [AI200 - Reference Architectures](https://docs.microsoft.com/en-us/azure/architecture/data-guide/big-data/machine-learning-at-scale) +Our reference architectures are arranged by scenario. Each architecture includes open source practices, along with considerations for scalability, availability, manageability, and security. + +| Title | Language | Environment | Design | Description | Status | +|----------------------------------------------|-------------|-------------|-------------|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| [Deploy Classic ML Model on Kubernetes](https://github.com/microsoft/MLAKSDeployAML) | Python | CPU | Real-Time Scoring| Train LightGBM model locally using Azure ML, deploy on Kubernetes or IoT Edge for _real-time_ scoring | [![Build Status](https://dev.azure.com/AZGlobal/Azure%20Global%20CAT%20Engineering/_apis/build/status/AI%20CAT/Python-ML-RealTimeServing?branchName=master)](https://dev.azure.com/AZGlobal/Azure%20Global%20CAT%20Engineering/_build/latest?definitionId=21&branchName=master) +| [Deploy Deep Learning Model on Kubernetes](https://github.com/microsoft/AKSDeploymentTutorialAML) | Python | Keras | Real-Time Scoring| Deploy image classification model on Kubernetes or IoT Edge for _real-time_ scoring using Azure ML | [![Build Status](https://dev.azure.com/AZGlobal/Azure%20Global%20CAT%20Engineering/_apis/build/status/AI%20CAT/Python-Keras-RealTimeServing?branchName=master)](https://dev.azure.com/AZGlobal/Azure%20Global%20CAT%20Engineering/_build/latest?definitionId=17&branchName=master) +| [Hyperparameter Tuning of Classical ML Models](https://github.com/Microsoft/MLHyperparameterTuning) | Python | CPU | Training | Train LightGBM model locally and run Hyperparameter tuning using Hyperdrive in Azure ML | ![](https://dev.azure.com/customai/MLHyperparameterTuningPipeline/_apis/build/status/Microsoft.MLHyperparameterTuning?branchName=master) | +| [Deploy Deep Learning Model on Pipelines](https://github.com/Azure/Batch-Scoring-Deep-Learning-Models-With-AML) | Python | GPU | Batch Scoring | Deploy PyTorch style transfer model for _batch_ scoring using Azure ML Pipelines | [![Build Status](https://dev.azure.com/customai/BatchScoringDeepLearningModelsWithAMLPipeline/_apis/build/status/Azure.Batch-Scoring-Deep-Learning-Models-With-AML?branchName=master)](https://dev.azure.com/customai/BatchScoringDeepLearningModelsWithAMLPipeline/_build/latest?definitionId=9&branchName=master) | +| [Deploy Classic ML Model on Pipelines](https://github.com/Microsoft/AMLBatchScoringPipeline) | Python | CPU | Batch Scoring | Deploy one-class SVM for _batch_ scoring anomaly detection using Azure ML Pipelines | ![](https://dev.azure.com/customai/AMLBatchScoringPipeline/_apis/build/status/Microsoft.AMLBatchScoringPipeline?branchName=master) | +| [Deploy R ML Model on Kubernetes](https://github.com/Azure/RealtimeRDeployment) | R | CPU | Real-Time Scoring | Deploy ML model for _real-time_ scoring on Kubernetes | | +| [Deploy R ML Model on Batch](https://github.com/Azure/RBatchScoring) | R | CPU | Scoring | Deploy forecasting model for _batch_ scoring using Azure Batch and doAzureParallel | | +| [Deploy Spark ML Model on Databricks](https://github.com/Azure/BatchSparkScoringPredictiveMaintenance) | Python | Spark | Batch Scoring | Deploy a classification model for _batch_ scoring using Databricks | | +| [Train Distributed Deep Leaning Model](https://github.com/Azure/DistributedDeepLearning/) | Python | GPU | Training | Distributed training of ResNet50 model using Batch AI | | + +# AI300 - Best Practices +Our best practices are arranged by topic. Each best practice repository includes open source methods, along with considerations for scalability, availability, manageability, and security. + +| Title | Description | +|-------|-------------| +|[Computer Vision](https://github.com/microsoft/computervision)| Accelerate the development of computer vision applications with examples and best practice guidelines for building computer vision systems +|[Natural Language Processing](https://github.com/microsoft/nlp)|State-of-the-art methods and common scenarios that are popular among researchers and practitioners working on problems involving text and language.| +|[Recommenders](https://github.com/microsoft/recommenders)| Examples and best practices for building recommendation systems, provided as Jupyter notebooks.| +|[MLOps](https://github.com/microsoft/MLOps)| MLOps empowers data scientists and app developers to help bring ML models to production. | + + +## Recommend a Scenario +If there is a particular scenario you are interested in seeing a tutorial for please fill in a [scenario suggestion](https://github.com/Microsoft/AIReferenceArchitectures/issues/new?assignees=&labels=&template=scenario_request.md&title=%5BSCENARIO%5D) + +## Ongoing Work +We are constantly developing interesting AI reference architectures using Microsoft AI Platform. Some of the ongoing projects include IoT Edge scenarios, model scoring on mobile devices, add more... To follow the progress and any new reference architectures, please go to the AI section of this [link](https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/). + +# Contributing + +This project welcomes contributions and suggestions. Most contributions require you to agree to a +Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us +the rights to use your contribution. For details, visit https://cla.microsoft.com. + +When you submit a pull request, a CLA-bot will automatically determine whether you need to provide +a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions +provided by the bot. You will only need to do this once across all repos using our CLA. + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). +For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or +contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000000..e138ec5d6a --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,41 @@ + + +## Security + +Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). + +If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. + +## Reporting Security Issues + +**Please do not report security vulnerabilities through public GitHub issues.** + +Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). + +If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). + +You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). + +Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: + + * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) + * Full paths of source file(s) related to the manifestation of the issue + * The location of the affected source code (tag/branch/commit or direct URL) + * Any special configuration required to reproduce the issue + * Step-by-step instructions to reproduce the issue + * Proof-of-concept or exploit code (if possible) + * Impact of the issue, including how an attacker might exploit the issue + +This information will help us triage your report more quickly. + +If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. + +## Preferred Languages + +We prefer all communications to be in English. + +## Policy + +Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). + + diff --git a/Sample Circuit.vsp b/Sample Circuit.vsp new file mode 100644 index 0000000000..e7b013258e Binary files /dev/null and b/Sample Circuit.vsp differ diff --git a/Sponge Bob Square Pants.dwg b/Sponge Bob Square Pants.dwg new file mode 100644 index 0000000000..e9ea77b135 Binary files /dev/null and b/Sponge Bob Square Pants.dwg differ diff --git a/Style.css b/Style.css new file mode 100644 index 0000000000..646106149f --- /dev/null +++ b/Style.css @@ -0,0 +1,7 @@ +h1 { + color: red; +} + +p { +color: blue; +} \ No newline at end of file diff --git a/Style.css.txt b/Style.css.txt new file mode 100644 index 0000000000..646106149f --- /dev/null +++ b/Style.css.txt @@ -0,0 +1,7 @@ +h1 { + color: red; +} + +p { +color: blue; +} \ No newline at end of file diff --git a/Trumpd.py b/Trumpd.py new file mode 100644 index 0000000000..c1c085dd42 --- /dev/null +++ b/Trumpd.py @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+ + diff --git a/Trumpdonald (1).html b/Trumpdonald (1).html new file mode 100644 index 0000000000..c1c085dd42 --- /dev/null +++ b/Trumpdonald (1).html @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+ + diff --git a/Trumpdonald.dxf b/Trumpdonald.dxf new file mode 100644 index 0000000000..bcf85a63b9 --- /dev/null +++ b/Trumpdonald.dxf @@ -0,0 +1,6414 @@ +999 +UVCAD 1.0.1.0 + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1015 + 9 +$HANDSEED + 5 +FFFF + 9 +$DIMADEC + 70 +0 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMAUNIT + 70 +0 + 9 +$DIMAZIN + 70 +2 + 9 +$DIMDEC + 70 +4 + 9 +$DIMDLI + 40 +5.0 + 9 +$DIMDSEP + 70 +46 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMLUNIT + 70 +2 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMZIN + 70 +8 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSUNITS + 70 +4 + 9 +$LTSCALE + 40 +1.0 + 9 +$MAXACTVP + 70 +64 + 9 +$MIRRTEXT + 70 +0 + 9 +$PDMODE + 70 +0 + 9 +$PDSIZE + 40 +0.0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +100 +AcDbSymbolTable + 70 +1 + 0 +VPORT + 5 +30 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*Active + 70 +0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +286.3055555555554861 + 22 +148.5 + 13 +0.0 + 23 +0.0 + 14 +10.0 + 24 +10.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +297.0 + 41 +1.92798353909465 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 +0 + 72 +100 + 73 +1 + 74 +3 + 75 +1 + 76 +1 + 77 +0 + 78 +0 +281 +0 + 65 +1 +110 +0.0 +120 +0.0 +130 +0.0 +111 +1.0 +121 +0.0 +131 +0.0 +112 +0.0 +122 +1.0 +132 +0.0 + 79 +0 +146 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +100 +AcDbSymbolTable + 70 +41 + 0 +LTYPE + 5 +16 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +Continuous + 70 +0 + 3 +Solid line + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 5 +31 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ + 72 +65 + 73 +6 + 40 +31.7500000000000036 + 49 +15.875 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 49 +3.1749999999999998 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 49 +3.1749999999999998 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 0 +LTYPE + 5 +32 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x) ____________ ____ ____ _ + 72 +65 + 73 +6 + 40 +127.0000000000000142 + 49 +63.5 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 49 +12.6999999999999993 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 49 +12.6999999999999993 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 0 +LTYPE + 5 +33 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +HIDDEN + 70 +0 + 3 +Hidden __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 +65 + 73 +2 + 40 +9.5249999999999986 + 49 +6.3499999999999996 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 0 +LTYPE + 5 +34 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +HIDDEN2 + 70 +0 + 3 +Hidden (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +4.7624999999999993 + 49 +3.1749999999999998 + 74 +0 + 49 +-1.5874999999999999 + 74 +0 + 0 +LTYPE + 5 +35 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +HIDDENX2 + 70 +0 + 3 +Hidden (2x) ____ ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +19.0499999999999972 + 49 +12.6999999999999993 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 0 +LTYPE + 5 +36 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +63.5000000000000071 + 49 +31.75 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 49 +6.3499999999999996 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 49 +6.3499999999999996 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 0 +LTYPE + 5 +37 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ________ . . ________ . . _ + 72 +65 + 73 +6 + 40 +63.5 + 49 +25.3999999999999986 + 74 +0 + 49 +-12.6499999999999986 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-12.5999999999999979 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-12.6499999999999986 + 74 +0 + 0 +LTYPE + 5 +38 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +6.3499999999999996 + 49 +0.1 + 74 +0 + 49 +-6.25 + 74 +0 + 0 +LTYPE + 5 +39 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT2 + 70 +0 + 3 +Dot (.5x) ........................................ + 72 +65 + 73 +2 + 40 +3.1749999999999998 + 49 +0.1 + 74 +0 + 49 +-3.0749999999999997 + 74 +0 + 0 +LTYPE + 5 +3A +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +12.6999999999999993 + 49 +0.1 + 74 +0 + 49 +-12.5999999999999996 + 74 +0 + 0 +LTYPE + 5 +3B +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +9.5249999999999986 + 49 +6.3499999999999996 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 0 +LTYPE + 5 +3C +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ___ + 72 +65 + 73 +2 + 40 +38.0999999999999943 + 49 +25.3999999999999986 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 0 +LTYPE + 5 +3D +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE + 70 +0 + 3 +Divide ____ . . ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +31.7500000000000036 + 49 +12.6999999999999993 + 74 +0 + 49 +-6.2999999999999998 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-6.25 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-6.2999999999999998 + 74 +0 + 0 +LTYPE + 5 +3E +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE2 + 70 +0 + 3 +Divide (.5x) __..__..__..__..__..__..__..__.._ + 72 +65 + 73 +6 + 40 +15.8749999999999982 + 49 +6.3499999999999996 + 74 +0 + 49 +-3.125 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-3.0750000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-3.125 + 74 +0 + 0 +LTYPE + 5 +3F +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +25.4000000000000021 + 49 +12.6999999999999993 + 74 +0 + 49 +-6.2999999999999998 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-6.2999999999999998 + 74 +0 + 0 +LTYPE + 5 +40 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _._._._._._._._._._._._._._._. + 72 +65 + 73 +4 + 40 +12.6999999999999993 + 49 +6.3499999999999996 + 74 +0 + 49 +-3.125 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-3.125 + 74 +0 + 0 +LTYPE + 5 +41 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ___ + 72 +65 + 73 +4 + 40 +50.7999999999999972 + 49 +25.3999999999999986 + 74 +0 + 49 +-12.6499999999999986 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-12.6499999999999986 + 74 +0 + 0 +LTYPE + 5 +42 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +19.0499999999999972 + 49 +12.6999999999999993 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 0 +LTYPE + 5 +43 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERX2 + 70 +0 + 3 +Border (2x) ____ ____ . ____ ____ . ___ + 72 +65 + 73 +6 + 40 +88.8999999999999773 + 49 +25.3999999999999986 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 49 +25.3999999999999986 + 74 +0 + 49 +-12.6499999999999986 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-12.6499999999999986 + 74 +0 + 0 +LTYPE + 5 +44 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +50.8000000000000043 + 49 +31.75 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 49 +6.3499999999999996 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 0 +LTYPE + 5 +45 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 +65 + 73 +4 + 40 +28.5750000000000028 + 49 +19.0500000000000007 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 49 +3.1749999999999998 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 0 +LTYPE + 5 +46 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ _____ + 72 +65 + 73 +4 + 40 +101.6000000000000085 + 49 +63.5 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 49 +12.6999999999999993 + 74 +0 + 49 +-12.6999999999999993 + 74 +0 + 0 +LTYPE + 5 +47 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO14W100 + 70 +0 + 3 +ISO dash triple-dot __ . . . __ . . . __ . . . _ + 72 +65 + 73 +8 + 40 +24.0000000000000036 + 49 +12.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +48 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO15W100 + 70 +0 + 3 +ISO double-dash triple-dot __ __ . . . __ __ . . + 72 +65 + 73 +10 + 40 +39.0000000000000071 + 49 +12.0 + 74 +0 + 49 +-3.0 + 74 +0 + 49 +12.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +49 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER + 70 +0 + 3 +Border __ __ . __ __ . __ __ . __ __ . __ __ . + 72 +65 + 73 +6 + 40 +44.4499999999999957 + 49 +12.6999999999999993 + 74 +0 + 49 +-6.3499999999999996 + 74 +0 + 49 +12.6999999999999993 + 74 +0 + 49 +-6.2999999999999998 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-6.2999999999999998 + 74 +0 + 0 +LTYPE + 5 +4A +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER2 + 70 +0 + 3 +Border (.5x) __.__.__.__.__.__.__.__.__.__.__. + 72 +65 + 73 +6 + 40 +22.2250000000000014 + 49 +6.3499999999999996 + 74 +0 + 49 +-3.1749999999999998 + 74 +0 + 49 +6.3499999999999996 + 74 +0 + 49 +-3.125 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-3.125 + 74 +0 + 0 +LTYPE + 5 +4B +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO10W100 + 70 +0 + 3 +ISO dash dot __ . __ . __ . __ . __ . __ . __ . + 72 +65 + 73 +4 + 40 +18.0 + 49 +12.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +4C +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO11W100 + 70 +0 + 3 +ISO double-dash dot __ __ . __ __ . __ __ . __ _ + 72 +65 + 73 +6 + 40 +33.0 + 49 +12.0 + 74 +0 + 49 +-3.0 + 74 +0 + 49 +12.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +4D +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO12W100 + 70 +0 + 3 +ISO dash double-dot __ . . __ . . __ . . __ . . + 72 +65 + 73 +6 + 40 +21.0 + 49 +12.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +4E +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO13W100 + 70 +0 + 3 +ISO double-dash double-dot __ __ . . __ __ . . _ + 72 +65 + 73 +8 + 40 +36.0000000000000071 + 49 +12.0 + 74 +0 + 49 +-3.0 + 74 +0 + 49 +12.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +4F +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO06W100 + 70 +0 + 3 +ISO long-dash triple-dot ____ ... ____ ... ____ + 72 +65 + 73 +8 + 40 +36.0000000000000071 + 49 +24.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +50 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO07W100 + 70 +0 + 3 +ISO dot . . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +3.0 + 49 +0.1 + 74 +0 + 49 +-2.8999999999999999 + 74 +0 + 0 +LTYPE + 5 +51 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO08W100 + 70 +0 + 3 +ISO long-dash short-dash ____ __ ____ __ ____ _ + 72 +65 + 73 +4 + 40 +36.0 + 49 +24.0 + 74 +0 + 49 +-3.0 + 74 +0 + 49 +6.0 + 74 +0 + 49 +-3.0 + 74 +0 + 0 +LTYPE + 5 +52 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO09W100 + 70 +0 + 3 +ISO long-dash double-short-dash ____ __ __ ____ + 72 +65 + 73 +6 + 40 +45.0 + 49 +24.0 + 74 +0 + 49 +-3.0 + 74 +0 + 49 +6.0 + 74 +0 + 49 +-3.0 + 74 +0 + 49 +6.0 + 74 +0 + 49 +-3.0 + 74 +0 + 0 +LTYPE + 5 +53 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO02W100 + 70 +0 + 3 +ISO dash __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 +65 + 73 +2 + 40 +15.0 + 49 +12.0 + 74 +0 + 49 +-3.0 + 74 +0 + 0 +LTYPE + 5 +54 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO03W100 + 70 +0 + 3 +ISO dash space __ __ __ __ __ __ + 72 +65 + 73 +2 + 40 +30.0 + 49 +12.0 + 74 +0 + 49 +-18.0 + 74 +0 + 0 +LTYPE + 5 +55 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO04W100 + 70 +0 + 3 +ISO long-dash dot ____ . ____ . ____ . ____ . _ + 72 +65 + 73 +4 + 40 +30.0 + 49 +24.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +56 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ACAD_ISO05W100 + 70 +0 + 3 +ISO long-dash double-dot ____ .. ____ .. ____ . + 72 +65 + 73 +6 + 40 +33.0000000000000071 + 49 +24.0 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9000000000000004 + 74 +0 + 49 +0.1 + 74 +0 + 49 +-2.9500000000000002 + 74 +0 + 0 +LTYPE + 5 +15 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BYLAYER + 70 +0 + 3 + + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 5 +14 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BYBLOCK + 70 +0 + 3 + + 72 +65 + 73 +0 + 40 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +100 +AcDbSymbolTable + 70 +1 + 0 +LAYER + 5 +10 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 +0 + 62 +7 +420 +16777215 + 6 +Continuous +370 +25 +390 +F + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +100 +AcDbSymbolTable + 70 +1 + 0 +STYLE + 5 +57 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Standard + 70 +0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 +0 + 42 +2.5 + 3 + + 4 + +1001 +ACAD +1000 +txt +1071 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +100 +AcDbSymbolTable + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +100 +AcDbSymbolTable + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +100 +AcDbSymbolTable + 70 +1 + 0 +APPID + 5 +12 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 +0 + 0 +APPID + 5 +58 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +UVCAD + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +100 +AcDbSymbolTable + 70 +1 +100 +AcDbDimStyleTable + 71 +0 + 0 +DIMSTYLE +105 +27 +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +Standard + 41 +2.5 + 42 +0.625 + 43 +3.75 + 44 +1.25 + 70 +0 + 73 +0 + 74 +0 + 77 +1 + 78 +8 +140 +2.5 +141 +2.5 +143 +0.03937007874016 +147 +0.625 +171 +3 +172 +1 +271 +2 +272 +2 +274 +3 +278 +44 +283 +0 +284 +8 +340 +57 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +100 +AcDbSymbolTable + 70 +1 + 0 +BLOCK_RECORD + 5 +1F +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Model_Space +340 +22 + 0 +BLOCK_RECORD + 5 +1B +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space +340 +1E + 0 +BLOCK_RECORD + 5 +23 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space0 +340 +26 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +20 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Model_Space + 70 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*Model_Space + 1 + + 0 +ENDBLK + 5 +21 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1C +100 +AcDbEntity + 67 +1 + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space + 70 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*Paper_Space + 1 + + 0 +ENDBLK + 5 +1D +100 +AcDbEntity + 67 +1 + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +24 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space0 + 70 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*Paper_Space0 + 1 + + 0 +ENDBLK + 5 +25 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +ARC + 5 +59 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +60.7579904892645999 + 20 +11.6062444743894524 + 30 +0.0 + 40 +31.3566818763077073 +100 +AcDbArc + 50 +173.0591039028708451 + 51 +203.0591039028709019 + 0 +ARC + 5 +5A +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +92.1741669662855827 + 20 +20.3324782452373505 + 30 +0.0 + 40 +62.7376046828962544 +100 +AcDbArc + 50 +169.5133630095249089 + 51 +184.5133630095249373 + 0 +ARC + 5 +5B +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +45.9896841319235321 + 20 +1.7210026813386157 + 30 +0.0 + 40 +14.2854776717320036 +100 +AcDbArc + 50 +189.6577140078169919 + 51 +351.1692315255423864 + 0 +ARC + 5 +5C +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +-33.5713999108265995 + 20 +19.2341582221102065 + 30 +0.0 + 40 +95.7275137003773153 +100 +AcDbArc + 50 +348.1203079998238081 + 51 +8.1203079998237602 + 0 +LINE + 5 +5D +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +46.0395129480897154 + 20 +-5.9194222797350697 + 30 +0.0 + 11 +42.677614313548375 + 21 +-8.3141993892713693 + 31 +0.0 + 0 +LINE + 5 +5E +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +42.677614313548375 + 20 +-8.3141993892713693 + 30 +0.0 + 11 +48.001660306576369 + 21 +-11.2109644136597844 + 31 +0.0 + 0 +LINE + 5 +5F +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +37.1714170645987352 + 20 +9.9531624993837937 + 30 +0.0 + 11 +34.9823647674719567 + 21 +5.3796068071724932 + 31 +0.0 + 0 +ARC + 5 +60 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +40.2431257116571572 + 20 +36.9789336793509875 + 30 +0.0 + 40 +32.0342483053160763 +100 +AcDbArc + 50 +260.5478989966234167 + 51 +295.5478989966233598 + 0 +ARC + 5 +61 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +48.1396110828889618 + 20 +9.2300679681507489 + 30 +0.0 + 40 +10.5642793012911724 +100 +AcDbArc + 50 +203.6379603510045229 + 51 +223.6379603510045513 + 0 +ARC + 5 +62 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +45.2741058130157299 + 20 +17.4866824085220891 + 30 +0.0 + 40 +16.2652471572359509 +100 +AcDbArc + 50 +252.9096501993421953 + 51 +314.7075945723726704 + 0 +ARC + 5 +63 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +43.1003698966704221 + 20 +-8.1894597313447033 + 30 +0.0 + 40 +19.6130184366757483 +100 +AcDbArc + 50 +46.0332530062010434 + 51 +56.0332530062010505 + 0 +LINE + 5 +64 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +54.0583919281481258 + 20 +8.0768319589893842 + 30 +0.0 + 11 +51.2048058979650236 + 21 +10.2658842561161876 + 31 +0.0 + 0 +LINE + 5 +65 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +42.1372076387836785 + 20 +5.0007298814517318 + 30 +0.0 + 11 +44.489596742948919 + 21 +1.240365576545829 + 31 +0.0 + 0 +LINE + 5 +66 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +46.8396318312907098 + 20 +5.6312197036831098 + 30 +0.0 + 11 +49.1562884971956393 + 21 +1.6915273699469413 + 31 +0.0 + 0 +ARC + 5 +67 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +54.1595660038500455 + 20 +7.1574751555836231 + 30 +0.0 + 40 +3.0949355969569332 +100 +AcDbArc + 50 +186.0005386891972705 + 51 +276.0005386891972421 + 0 +ARC + 5 +68 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +45.5805087898544556 + 20 +16.0583250641472155 + 30 +0.0 + 40 +4.0031837187289296 +100 +AcDbArc + 50 +147.6193222934308835 + 51 +237.6193222934307983 + 0 +CIRCLE + 5 +69 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +38.8190628067011332 + 20 +20.0162446640418423 + 30 +0.0 + 40 +3.8366720721601713 + 0 +CIRCLE + 5 +6A +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +53.403433324816362 + 20 +20.1926282202683112 + 30 +0.0 + 40 +3.8366720721601713 + 0 +LINE + 5 +6B +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +43.4366356732448651 + 20 +12.6776020725705525 + 30 +0.0 + 11 +47.9591393017783574 + 21 +13.9558103837500909 + 31 +0.0 + 0 +CIRCLE + 5 +6C +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +38.2173219997002178 + 20 +19.8535733958341112 + 30 +0.0 + 40 +0.6233409502915878 + 0 +CIRCLE + 5 +6D +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +53.403433324816362 + 20 +20.1926282202683112 + 30 +0.0 + 40 +0.6233409502915878 + 0 +ARC + 5 +6E +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +62.078733709677401 + 20 +14.8020715643465888 + 30 +0.0 + 40 +4.1907178387429882 +100 +AcDbArc + 50 +265.5803449048434004 + 51 +89.3542280652420828 + 0 +ARC + 5 +6F +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +62.0034970123983982 + 20 +14.6336338924803382 + 30 +0.0 + 40 +3.3509125295283018 +100 +AcDbArc + 50 +266.7561119713085418 + 51 +73.6667998607780845 + 0 +LINE + 5 +70 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +62.9458500923007449 + 20 +17.8493119630197867 + 30 +0.0 + 11 +61.9843708175920725 + 21 +13.8135713839466465 + 31 +0.0 + 0 +ARC + 5 +71 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +41.6754529562726219 + 20 +29.3658809617289549 + 30 +0.0 + 40 +15.2116011498168007 +100 +AcDbArc + 50 +126.4306635358464348 + 51 +216.4306635358464348 + 0 +ARC + 5 +72 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +45.2936887636403824 + 20 +48.9638426195298564 + 30 +0.0 + 40 +22.706647557192337 +100 +AcDbArc + 50 +229.2924253704629791 + 51 +319.2924253704629791 + 0 +ARC + 5 +73 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +43.8491485887808992 + 20 +22.9474999513340236 + 30 +0.0 + 40 +21.7644857524319093 +100 +AcDbArc + 50 +30.9925050392008927 + 51 +120.9925050392008785 + 0 +ARC + 5 +74 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +54.7498551308226311 + 20 +26.7486457274594152 + 30 +0.0 + 40 +10.7243851246545336 +100 +AcDbArc + 50 +313.6753492092160513 + 51 +43.6753492092160656 + 0 +ARC + 5 +75 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +47.613768078046256 + 20 +15.9820744904660614 + 30 +0.0 + 40 +23.2825308780620936 +100 +AcDbArc + 50 +47.3677269369634857 + 51 +137.3677269369634644 + 0 +LINE + 5 +76 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +29.4365622833893283 + 20 +20.3324782452372972 + 30 +0.0 + 11 +39.0946181405933189 + 21 +37.6500307492162278 + 31 +0.0 + 0 +ARC + 5 +77 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +-8.8394914021550441 + 20 +208.7384671505130598 + 30 +0.0 + 40 +223.0080851792441763 +100 +AcDbArc + 50 +275.5876954030123329 + 51 +281.8945576977694145 + 0 +ARC + 5 +78 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +501.1229357407722205 + 20 +1493.4627692890730941 + 30 +0.0 + 40 +1564.766425383040314 +100 +AcDbArc + 50 +253.5218284521839394 + 51 +254.5218284521839394 + 0 +LINE + 5 +79 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +10.6685407223971858 + 20 +-37.6025952560538528 + 30 +0.0 + 11 +-3.6266574613734974 + 21 +-97.0645687999538325 + 31 +0.0 + 0 +ARC + 5 +7A +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +1072.8525222523837783 + 20 +-54.729871986346609 + 30 +0.0 + 40 +990.1361999967779184 +100 +AcDbArc + 50 +177.6744647648625062 + 51 +182.6744647648630746 + 0 +ARC + 5 +7B +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +22.104959688565561 + 20 +-47.814246598834707 + 30 +0.0 + 40 +51.449101015364711 +100 +AcDbArc + 50 +250.9893249057963374 + 51 +295.9893249057963658 + 0 +ARC + 5 +7C +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +72.515647812591908 + 20 +-50.2439489478175645 + 30 +0.0 + 40 +51.9267232849189355 +100 +AcDbArc + 50 +237.5453930564443112 + 51 +282.5453930564443112 + 0 +LINE + 5 +7D +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +5.3457075924103528 + 20 +-96.4572056419142712 + 30 +0.0 + 11 +10.9949010193279264 + 21 +-202.5918349049666176 + 31 +0.0 + 0 +LINE + 5 +7E +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +10.9949010193279264 + 20 +-202.5918349049666176 + 30 +0.0 + 11 +37.0743104663147847 + 21 +-202.5918349049666176 + 31 +0.0 + 0 +LINE + 5 +7F +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +37.0743104663147847 + 20 +-202.5918349049666176 + 30 +0.0 + 11 +39.8785480412595916 + 21 +-120.9885214740722574 + 31 +0.0 + 0 +LINE + 5 +80 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +39.8785480412595916 + 20 +-120.9885214740722574 + 30 +0.0 + 11 +56.7039734909285187 + 21 +-120.4276739590833074 + 31 +0.0 + 0 +LINE + 5 +81 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +56.7039734909285187 + 20 +-120.4276739590833074 + 30 +0.0 + 11 +70.1643138506637172 + 21 +-187.8345346668194793 + 31 +0.0 + 0 +LINE + 5 +82 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +70.1643138506637172 + 20 +-187.8345346668194793 + 30 +0.0 + 11 +68.7621950631912284 + 21 +-201.7505636324831642 + 31 +0.0 + 0 +LINE + 5 +83 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +68.7621950631912284 + 20 +-201.7505636324831642 + 30 +0.0 + 11 +98.7675371151009074 + 21 +-202.8722586624610926 + 31 +0.0 + 0 +LINE + 5 +84 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +98.7675371151009074 + 20 +-202.8722586624610926 + 30 +0.0 + 11 +83.7948084316617354 + 21 +-100.9308814535223036 + 31 +0.0 + 0 +LINE + 5 +85 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +10.9949010193279264 + 20 +-202.591834904966646 + 30 +0.0 + 11 +0.8410763161220984 + 21 +-227.1977156601901697 + 31 +0.0 + 0 +ARC + 5 +86 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +10.238045872424955 + 20 +-219.246433727933919 + 30 +0.0 + 40 +12.3095865571638008 +100 +AcDbArc + 50 +220.2363583092737827 + 51 +310.2363583092738395 + 0 +LINE + 5 +87 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +18.189327804681227 + 20 +-228.6434032842367685 + 30 +0.0 + 11 +37.0743104663147847 + 21 +-202.5918349049666176 + 31 +0.0 + 0 +LINE + 5 +88 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +68.7621950631912284 + 20 +-201.7505636324831642 + 30 +0.0 + 11 +76.016832766544951 + 21 +-230.8119347203066525 + 31 +0.0 + 0 +LINE + 5 +89 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +98.7675371151009074 + 20 +-202.8722586624610926 + 30 +0.0 + 11 +97.7021471272438475 + 21 +-229.1252991589189492 + 31 +0.0 + 0 +ARC + 5 +8A +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +86.0161721662005334 + 20 +-219.1259597592633384 + 30 +0.0 + 40 +15.3801430168784776 +100 +AcDbArc + 50 +229.4473848500906001 + 51 +319.4473848500904865 + 0 +LINE + 5 +8B +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +20.1953878752123153 + 20 +-12.3714191971166496 + 30 +0.0 + 11 +50.902656890283339 + 21 +-55.163616539407613 + 31 +0.0 + 0 +LINE + 5 +8C +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +50.902656890283339 + 20 +-55.163616539407613 + 30 +0.0 + 11 +75.6638113932089738 + 21 +-12.3521262128349765 + 31 +0.0 + 0 +LINE + 5 +8D +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +25.0511177547993675 + 20 +-11.6793920766457404 + 30 +0.0 + 11 +50.127898436321999 + 21 +-46.1764184734560104 + 31 +0.0 + 0 +LINE + 5 +8E +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +50.127898436321999 + 20 +-46.1764184734560104 + 30 +0.0 + 11 +70.3879356767414492 + 21 +-10.8514684039221265 + 31 +0.0 + 0 +LINE + 5 +8F +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +50.902656890283339 + 20 +-55.1636165394076201 + 30 +0.0 + 11 +44.6501450801004012 + 21 +-94.0605935999820133 + 31 +0.0 + 0 +LINE + 5 +90 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +25.0511177547993427 + 20 +-11.6793920766457067 + 30 +0.0 + 11 +45.3986815451534014 + 21 +-16.3543187188636949 + 31 +0.0 + 0 +LINE + 5 +91 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +45.3986815451534156 + 20 +-16.3543187188636878 + 30 +0.0 + 11 +70.3879356767415061 + 21 +-10.8514684039220199 + 31 +0.0 + 0 +LINE + 5 +92 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +50.127898436321999 + 20 +-46.1764184734560175 + 30 +0.0 + 11 +46.0927738317142257 + 21 +-12.5641030173725667 + 31 +0.0 + 0 +LINE + 5 +93 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +46.0927738317142399 + 20 +-12.5641030173725703 + 30 +0.0 + 11 +52.9172206637937066 + 21 +-14.6986712497936836 + 31 +0.0 + 0 +LINE + 5 +94 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +46.0927738317142257 + 20 +-12.5641030173725667 + 30 +0.0 + 11 +39.3190822658301329 + 21 +-14.9575087155751838 + 31 +0.0 + 0 +LINE + 5 +95 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +39.3190822658301329 + 20 +-14.9575087155751838 + 30 +0.0 + 11 +47.4040616105850319 + 21 +-42.4293557196118627 + 31 +0.0 + 0 +LINE + 5 +96 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +52.8807356931184813 + 20 +-41.3766326936014792 + 30 +0.0 + 11 +52.9172206637937137 + 21 +-14.6986712497936853 + 31 +0.0 + 0 +LINE + 5 +97 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +49.1413607245839472 + 20 +-33.1475560666374136 + 30 +0.0 + 11 +49.1413607245839614 + 21 +-33.1475560666374136 + 31 +0.0 + 0 +LINE + 5 +98 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +12.8746200242770676 + 20 +-13.2099579853132667 + 30 +0.0 + 11 +-9.4477135754315213 + 21 +-25.2762797061914597 + 31 +0.0 + 0 +LINE + 5 +99 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-9.4477135754315213 + 20 +-25.2762797061914597 + 30 +0.0 + 11 +-23.4970181823564133 + 21 +-98.4096461531977553 + 31 +0.0 + 0 +LINE + 5 +9A +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-23.4970181823564133 + 20 +-98.4096461531977553 + 30 +0.0 + 11 +-3.6266574613734974 + 21 +-97.0645687999538325 + 31 +0.0 + 0 +LINE + 5 +9B +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +5.3457075924103519 + 20 +-96.4572056419142569 + 30 +0.0 + 11 +12.8746200242770357 + 21 +-13.2099579853132845 + 31 +0.0 + 0 +LINE + 5 +9C +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +83.5317883416347513 + 20 +-14.5530129956776477 + 30 +0.0 + 11 +110.6449723796524722 + 21 +-24.8913672512072139 + 31 +0.0 + 0 +LINE + 5 +9D +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +110.6449723796524722 + 20 +-24.8913672512072139 + 30 +0.0 + 11 +108.7204101047312861 + 21 +-76.3493510769133081 + 31 +0.0 + 0 +LINE + 5 +9E +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +108.7204101047312861 + 20 +-76.3493510769133081 + 30 +0.0 + 11 +108.5279538772391561 + 21 +-105.3380703429141505 + 31 +0.0 + 0 +LINE + 5 +9F +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +108.5279538772391561 + 20 +-105.3380703429141505 + 30 +0.0 + 11 +91.5918058579324281 + 21 +-101.4889457930716929 + 31 +0.0 + 0 +LINE + 5 +A0 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +91.5918058579324281 + 20 +-101.4889457930716929 + 30 +0.0 + 11 +82.8749896281413498 + 21 +-37.0047642778919581 + 31 +0.0 + 0 +LINE + 5 +A1 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +10.6685407223971875 + 20 +-37.6025952560538528 + 30 +0.0 + 11 +12.8746200242770321 + 21 +-13.2099579853133235 + 31 +0.0 + 0 +LINE + 5 +A2 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +82.8749896281413214 + 20 +-37.0047642778917947 + 30 +0.0 + 11 +83.5317883416346376 + 21 +-14.5530129956776033 + 31 +0.0 + 0 +LINE + 5 +A3 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +108.5279538772391561 + 20 +-105.3380703429141647 + 30 +0.0 + 11 +108.5662752361862715 + 21 +-99.5659156515044259 + 31 +0.0 + 0 +ARC + 5 +A4 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbCircle + 10 +-19.8284576336012321 + 20 +-100.9011771166612732 + 30 +0.0 + 40 +4.4346435078572322 +100 +AcDbArc + 50 +145.8173134378799602 + 51 +235.8173134378799602 + 0 +LINE + 5 +A5 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-3.6266574613734996 + 20 +-97.0645687999538325 + 30 +0.0 + 11 +-6.6662744135786767 + 21 +-106.3648883745318301 + 31 +0.0 + 0 +LINE + 5 +A6 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-6.6662744135786767 + 20 +-106.3648883745318301 + 30 +0.0 + 11 +-9.7539336332571054 + 21 +-112.6838188706179551 + 31 +0.0 + 0 +LINE + 5 +A7 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-9.7539336332571054 + 20 +-112.6838188706179551 + 30 +0.0 + 11 +-22.750824767252432 + 21 +-110.9155954221393046 + 31 +0.0 + 0 +LINE + 5 +A8 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-22.750824767252432 + 20 +-110.9155954221393046 + 30 +0.0 + 11 +-22.3199885970647358 + 21 +-104.5697376654164543 + 31 +0.0 + 0 +LINE + 5 +A9 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-16.2523792002547687 + 20 +-111.7997071463786369 + 30 +0.0 + 11 +-19.3252838420142545 + 21 +-111.3816393187359353 + 31 +0.0 + 0 +LINE + 5 +AA +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-20.6477992302233417 + 20 +-111.2017114655058379 + 30 +0.0 + 11 +-18.864259897845109 + 21 +-98.0960424728695415 + 31 +0.0 + 0 +LINE + 5 +AB +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-16.2523792002547687 + 20 +-111.7997071463786369 + 30 +0.0 + 11 +-15.0759650049782952 + 21 +-97.8396027564821225 + 31 +0.0 + 0 +LINE + 5 +AC +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-12.9881769894030974 + 20 +-112.2438009554516896 + 30 +0.0 + 11 +-10.3798604799817884 + 21 +-97.5217110013330171 + 31 +0.0 + 0 +LINE + 5 +AD +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-3.6266574613735054 + 20 +-97.0645687999538893 + 30 +0.0 + 11 +-1.7142953188106986 + 21 +-103.6734589584202268 + 31 +0.0 + 0 +LINE + 5 +AE +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-1.7142953188106986 + 20 +-103.6734589584202268 + 30 +0.0 + 11 +-7.8350891294795915 + 21 +-114.8845047646964161 + 31 +0.0 + 0 +LINE + 5 +AF +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +-7.8350891294795915 + 20 +-114.8845047646964161 + 30 +0.0 + 11 +-9.7539336332570965 + 21 +-112.6838188706179551 + 31 +0.0 + 0 +LINE + 5 +B0 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +91.5918058579324139 + 20 +-101.4889457930716929 + 30 +0.0 + 11 +89.6029520886706479 + 21 +-109.8153318117149979 + 31 +0.0 + 0 +LINE + 5 +B1 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +89.6029520886706479 + 20 +-109.8153318117149979 + 30 +0.0 + 11 +93.8709870481446131 + 21 +-112.7568153648659717 + 31 +0.0 + 0 +LINE + 5 +B2 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +93.8709870481446131 + 20 +-112.7568153648659717 + 30 +0.0 + 11 +96.7547944531945916 + 21 +-122.5040843939348889 + 31 +0.0 + 0 +LINE + 5 +B3 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +96.7547944531945916 + 20 +-122.5040843939348889 + 30 +0.0 + 11 +110.8277745898384836 + 21 +-122.1580275053288887 + 31 +0.0 + 0 +LINE + 5 +B4 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +110.8277745898384836 + 20 +-122.1580275053288887 + 30 +0.0 + 11 +108.5279538772391703 + 21 +-105.3380703429141363 + 31 +0.0 + 0 +LINE + 5 +B5 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +89.6029520886706479 + 20 +-109.8153318117149979 + 30 +0.0 + 11 +88.3400048014146648 + 21 +-115.7382430299168732 + 31 +0.0 + 0 +LINE + 5 +B6 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +88.3400048014146648 + 20 +-115.7382430299168732 + 30 +0.0 + 11 +94.395774566381462 + 21 +-114.5305971765065323 + 31 +0.0 + 0 +LINE + 5 +B7 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +96.1941424963608398 + 20 +-102.5349313927145261 + 30 +0.0 + 11 +99.6219263614757864 + 21 +-122.4335811502886315 + 31 +0.0 + 0 +LINE + 5 +B8 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +100.0598798675857921 + 20 +-103.4135080679929217 + 30 +0.0 + 11 +103.7912845215165305 + 21 +-122.3310559496318888 + 31 +0.0 + 0 +LINE + 5 +B9 +100 +AcDbEntity + 8 +0 + 62 +256 +370 +-1 + 48 +1.0 + 6 +BYLAYER +100 +AcDbLine + 10 +103.5982762391464718 + 20 +-104.2176890615294411 + 30 +0.0 + 11 +106.6573141842448678 + 21 +-122.2605798103844705 + 31 +0.0 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +100 +AcDbDictionary +280 +0 +281 +1 + 3 +ACAD_GROUP +350 +D + 3 +ACAD_LAYOUT +350 +1A + 3 +ACAD_MLINESTYLE +350 +17 + 3 +ACAD_PLOTSETTINGS +350 +19 + 3 +ACAD_PLOTSTYLENAME +350 +E + 3 +AcDbVariableDictionary +350 +BA + 3 +UVCAD_OBJECTS +350 +BB + 0 +DICTIONARY + 5 +D +100 +AcDbDictionary +280 +0 +281 +1 + 0 +ACDBDICTIONARYWDFLT + 5 +E +100 +AcDbDictionary +281 +1 + 3 +Normal +350 +F +100 +AcDbDictionaryWithDefault +340 +F + 0 +ACDBPLACEHOLDER + 5 +F + 0 +DICTIONARY + 5 +17 +100 +AcDbDictionary +280 +0 +281 +1 + 3 +Standard +350 +18 + 0 +MLINESTYLE + 5 +18 +100 +AcDbMlineStyle + 2 +STANDARD + 70 +0 + 3 + + 62 +256 + 51 +90.0 + 52 +90.0 + 71 +2 + 49 +0.5 + 62 +256 + 6 +BYLAYER + 49 +-0.5 + 62 +256 + 6 +BYLAYER + 0 +DICTIONARY + 5 +19 +100 +AcDbDictionary +280 +0 +281 +1 + 0 +DICTIONARY + 5 +1A +100 +AcDbDictionary +281 +1 + 3 +Layout1 +350 +1E + 3 +Layout2 +350 +26 + 3 +Model +350 +22 + 0 +LAYOUT + 5 +1E +100 +AcDbPlotSettings + 1 + + 2 +none_device + 4 + + 6 + + 40 +0.0 + 41 +0.0 + 42 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 + 49 +0.0 +140 +0.0 +141 +0.0 +142 +1.0 +143 +1.0 + 70 +688 + 72 +0 + 73 +0 + 74 +5 + 7 + + 75 +16 +147 +1.0 +148 +0.0 +149 +0.0 +100 +AcDbLayout + 1 +Layout1 + 70 +1 + 71 +1 + 10 +0.0 + 20 +0.0 + 11 +420.0 + 21 +297.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 14 +100000000000000000000.0 + 24 +100000000000000000000.0 + 34 +100000000000000000000.0 + 15 +-100000000000000000000.0 + 25 +-100000000000000000000.0 + 35 +-100000000000000000000.0 +146 +0.0 + 13 +0.0 + 23 +0.0 + 33 +0.0 + 16 +1.0 + 26 +0.0 + 36 +0.0 + 17 +0.0 + 27 +1.0 + 37 +0.0 + 76 +0 +330 +1B + 0 +LAYOUT + 5 +22 +100 +AcDbPlotSettings + 1 + + 2 +none_device + 4 + + 6 + + 40 +0.0 + 41 +0.0 + 42 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 + 49 +0.0 +140 +0.0 +141 +0.0 +142 +1.0 +143 +1.0 + 70 +1712 + 72 +0 + 73 +0 + 74 +0 + 7 + + 75 +0 +147 +1.0 +148 +0.0 +149 +0.0 +100 +AcDbLayout + 1 +Model + 70 +1 + 71 +0 + 10 +0.0 + 20 +0.0 + 11 +12.0 + 21 +9.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 14 +0.0 + 24 +0.0 + 34 +0.0 + 15 +0.0 + 25 +0.0 + 35 +0.0 +146 +0.0 + 13 +0.0 + 23 +0.0 + 33 +0.0 + 16 +1.0 + 26 +0.0 + 36 +0.0 + 17 +0.0 + 27 +1.0 + 37 +0.0 + 76 +0 +330 +1F + 0 +LAYOUT + 5 +26 +100 +AcDbPlotSettings + 1 + + 2 +none_device + 4 + + 6 + + 40 +0.0 + 41 +0.0 + 42 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 + 49 +0.0 +140 +0.0 +141 +0.0 +142 +1.0 +143 +1.0 + 70 +688 + 72 +0 + 73 +0 + 74 +5 + 7 + + 75 +16 +147 +1.0 +148 +0.0 +149 +0.0 +100 +AcDbLayout + 1 +Layout2 + 70 +1 + 71 +2 + 10 +0.0 + 20 +0.0 + 11 +12.0 + 21 +9.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 14 +0.0 + 24 +0.0 + 34 +0.0 + 15 +0.0 + 25 +0.0 + 35 +0.0 +146 +0.0 + 13 +0.0 + 23 +0.0 + 33 +0.0 + 16 +1.0 + 26 +0.0 + 36 +0.0 + 17 +0.0 + 27 +1.0 + 37 +0.0 + 76 +0 +330 +23 + 0 +DICTIONARY + 5 +BA +100 +AcDbDictionary +281 +1 + 3 +DIMASSOC +350 +BD + 3 +HIDETEXT +350 +BC + 0 +DICTIONARYVAR + 5 +BC +100 +DictionaryVariables +280 +0 + 1 +2 + 0 +DICTIONARYVAR + 5 +BD +100 +DictionaryVariables +280 +0 + 1 +1 + 0 +DICTIONARY + 5 +BB +100 +AcDbDictionary +281 +1 + 3 +ColorSettings/BackgroundColor +350 +BE + 3 +ColorSettings/ColorMode +350 +BF + 3 +Grid/DisplayGrid00 +350 +C0 + 3 +Grid/DisplayGrid01 +350 +C1 + 3 +Grid/DisplayGrid02 +350 +C2 + 3 +Grid/DisplayGrid03 +350 +C3 + 3 +Grid/GridSpacingX00 +350 +C4 + 3 +Grid/GridSpacingX01 +350 +C5 + 3 +Grid/GridSpacingX02 +350 +C6 + 3 +Grid/GridSpacingX03 +350 +C7 + 3 +Grid/GridSpacingY00 +350 +C8 + 3 +Grid/GridSpacingY01 +350 +C9 + 3 +Grid/GridSpacingY02 +350 +CA + 3 +Grid/GridSpacingY03 +350 +CB + 3 +Grid/IsometricGrid00 +350 +CC + 3 +Grid/IsometricGrid01 +350 +CD + 3 +Grid/IsometricGrid02 +350 +CE + 3 +Grid/IsometricGrid03 +350 +CF + 3 +Grid/IsometricProjection00 +350 +D0 + 3 +Grid/IsometricProjection01 +350 +D1 + 3 +Grid/IsometricProjection02 +350 +D2 + 3 +Grid/IsometricProjection03 +350 +D3 + 3 +Grid/MetaGridSpacingX00 +350 +D4 + 3 +Grid/MetaGridSpacingX01 +350 +D5 + 3 +Grid/MetaGridSpacingX02 +350 +D6 + 3 +Grid/MetaGridSpacingX03 +350 +D7 + 3 +Grid/MetaGridSpacingY00 +350 +D8 + 3 +Grid/MetaGridSpacingY01 +350 +D9 + 3 +Grid/MetaGridSpacingY02 +350 +DA + 3 +Grid/MetaGridSpacingY03 +350 +DB + 3 +MultiPageSettings/Columns +350 +DC + 3 +MultiPageSettings/GlueMarginsBottom +350 +DD + 3 +MultiPageSettings/GlueMarginsLeft +350 +DE + 3 +MultiPageSettings/GlueMarginsRight +350 +DF + 3 +MultiPageSettings/GlueMarginsTop +350 +E0 + 3 +MultiPageSettings/PrintCropMarks +350 +E1 + 3 +MultiPageSettings/Rows +350 +E2 + 3 +PageSettings/OffsetX +350 +E3 + 3 +PageSettings/OffsetY +350 +E4 + 3 +PageSettings/PageOrientation +350 +E5 + 3 +PageSettings/PaperHeight +350 +E6 + 3 +PageSettings/PaperWidth +350 +E7 + 3 +PageSettings/Scale +350 +E8 + 3 +PageSettings/ShowPaperBorders +350 +E9 + 3 +PageTagSettings/EnablePageTags +350 +EA + 3 +PageTagSettings/TagAlignment +350 +EB + 3 +PageTagSettings/TagFont +350 +EC + 3 +PageTagSettings/TagPosition +350 +ED + 3 +UVCADVersion +350 +EE + 3 +UnitSettings/PaperUnit +350 +EF + 0 +XRECORD + 5 +BE +330 +BB +100 +AcDbXrecord +280 +1 +1000 +White + 0 +XRECORD + 5 +BF +330 +BB +100 +AcDbXrecord +280 +1 +1000 +FullColor + 0 +XRECORD + 5 +C0 +330 +BB +100 +AcDbXrecord +280 +1 +290 +1 + 0 +XRECORD + 5 +C1 +330 +BB +100 +AcDbXrecord +280 +1 +290 +1 + 0 +XRECORD + 5 +C2 +330 +BB +100 +AcDbXrecord +280 +1 +290 +1 + 0 +XRECORD + 5 +C3 +330 +BB +100 +AcDbXrecord +280 +1 +290 +1 + 0 +XRECORD + 5 +C4 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +C5 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +C6 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +C7 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +C8 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +C9 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +CA +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +CB +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +CC +330 +BB +100 +AcDbXrecord +280 +1 +290 +0 + 0 +XRECORD + 5 +CD +330 +BB +100 +AcDbXrecord +280 +1 +290 +0 + 0 +XRECORD + 5 +CE +330 +BB +100 +AcDbXrecord +280 +1 +290 +0 + 0 +XRECORD + 5 +CF +330 +BB +100 +AcDbXrecord +280 +1 +290 +0 + 0 +XRECORD + 5 +D0 +330 +BB +100 +AcDbXrecord +280 +1 + 90 +65537 + 0 +XRECORD + 5 +D1 +330 +BB +100 +AcDbXrecord +280 +1 + 90 +65537 + 0 +XRECORD + 5 +D2 +330 +BB +100 +AcDbXrecord +280 +1 + 90 +65537 + 0 +XRECORD + 5 +D3 +330 +BB +100 +AcDbXrecord +280 +1 + 90 +65537 + 0 +XRECORD + 5 +D4 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +D5 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +D6 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +D7 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +D8 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +D9 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +DA +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +DB +330 +BB +100 +AcDbXrecord +280 +1 +1000 +auto + 0 +XRECORD + 5 +DC +330 +BB +100 +AcDbXrecord +280 +1 + 90 +1 + 0 +XRECORD + 5 +DD +330 +BB +100 +AcDbXrecord +280 +1 + 40 +0.0 + 0 +XRECORD + 5 +DE +330 +BB +100 +AcDbXrecord +280 +1 + 40 +0.0 + 0 +XRECORD + 5 +DF +330 +BB +100 +AcDbXrecord +280 +1 + 40 +0.0 + 0 +XRECORD + 5 +E0 +330 +BB +100 +AcDbXrecord +280 +1 + 40 +0.0 + 0 +XRECORD + 5 +E1 +330 +BB +100 +AcDbXrecord +280 +1 +290 +0 + 0 +XRECORD + 5 +E2 +330 +BB +100 +AcDbXrecord +280 +1 + 90 +1 + 0 +XRECORD + 5 +E3 +330 +BB +100 +AcDbXrecord +280 +1 + 40 +0.0 + 0 +XRECORD + 5 +E4 +330 +BB +100 +AcDbXrecord +280 +1 + 40 +0.0 + 0 +XRECORD + 5 +E5 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +Portrait + 0 +XRECORD + 5 +E6 +330 +BB +100 +AcDbXrecord +280 +1 + 40 +297.0 + 0 +XRECORD + 5 +E7 +330 +BB +100 +AcDbXrecord +280 +1 + 40 +210.0 + 0 +XRECORD + 5 +E8 +330 +BB +100 +AcDbXrecord +280 +1 +1000 +1:1 + 0 +XRECORD + 5 +E9 +330 +BB +100 +AcDbXrecord +280 +1 +290 +1 + 0 +XRECORD + 5 +EA +330 +BB +100 +AcDbXrecord +280 +1 +290 +0 + 0 +XRECORD + 5 +EB +330 +BB +100 +AcDbXrecord +280 +1 +1000 +Inside + 0 +XRECORD + 5 +EC +330 +BB +100 +AcDbXrecord +280 +1 +1000 +Arial,10,-1,5,50,0,0,0,0,0 + 0 +XRECORD + 5 +ED +330 +BB +100 +AcDbXrecord +280 +1 +1000 +TopLeft + 0 +XRECORD + 5 +EE +330 +BB +100 +AcDbXrecord +280 +1 +1000 +1.2 + 0 +XRECORD + 5 +EF +330 +BB +100 +AcDbXrecord +280 +1 + 90 +4 + 0 +ENDSEC + 0 +EOF diff --git a/Windows11InstallationAssistant.exe b/Windows11InstallationAssistant.exe new file mode 100644 index 0000000000..231f43eda9 Binary files /dev/null and b/Windows11InstallationAssistant.exe differ diff --git a/__init__i.py b/__init__i.py new file mode 100644 index 0000000000..b1a19e3237 --- /dev/null +++ b/__init__i.py @@ -0,0 +1 @@ +__version__ = "0.0.5" diff --git a/ai b/ai new file mode 100644 index 0000000000..0ad90d5daa --- /dev/null +++ b/ai @@ -0,0 +1,123 @@ +@import "tailwindcss"; +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --background: oklch(1 0 0); + --foreground: oklch(0.145 0 0); + --card: oklch(1 0 0); + --card-foreground: oklch(0.145 0 0); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.145 0 0); + --primary: oklch(0.205 0 0); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.97 0 0); + --secondary-foreground: oklch(0.205 0 0); + --muted: oklch(0.97 0 0); + --muted-foreground: oklch(0.556 0 0); + --accent: oklch(0.97 0 0); + --accent-foreground: oklch(0.205 0 0); + --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.577 0.245 27.325); + --border: oklch(0.922 0 0); + --input: oklch(0.922 0 0); + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --radius: 0.625rem; + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.145 0 0); + --sidebar-primary: oklch(0.205 0 0); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.97 0 0); + --sidebar-accent-foreground: oklch(0.205 0 0); + --sidebar-border: oklch(0.922 0 0); + --sidebar-ring: oklch(0.708 0 0); +} + +.dark { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --card: oklch(0.145 0 0); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.145 0 0); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.985 0 0); + --primary-foreground: oklch(0.205 0 0); + --secondary: oklch(0.269 0 0); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.269 0 0); + --muted-foreground: oklch(0.708 0 0); + --accent: oklch(0.269 0 0); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.396 0.141 25.723); + --destructive-foreground: oklch(0.637 0.237 25.331); + --border: oklch(0.269 0 0); + --input: oklch(0.269 0 0); + --ring: oklch(0.439 0 0); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.205 0 0); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.269 0 0); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(0.269 0 0); + --sidebar-ring: oklch(0.439 0 0); +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-destructive-foreground: var(--destructive-foreground); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/ai Sample Circuit.vsp b/ai Sample Circuit.vsp new file mode 100644 index 0000000000..2cf625fa2a Binary files /dev/null and b/ai Sample Circuit.vsp differ diff --git a/ai ai b/ai ai new file mode 100644 index 0000000000..0ad90d5daa --- /dev/null +++ b/ai ai @@ -0,0 +1,123 @@ +@import "tailwindcss"; +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --background: oklch(1 0 0); + --foreground: oklch(0.145 0 0); + --card: oklch(1 0 0); + --card-foreground: oklch(0.145 0 0); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.145 0 0); + --primary: oklch(0.205 0 0); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.97 0 0); + --secondary-foreground: oklch(0.205 0 0); + --muted: oklch(0.97 0 0); + --muted-foreground: oklch(0.556 0 0); + --accent: oklch(0.97 0 0); + --accent-foreground: oklch(0.205 0 0); + --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.577 0.245 27.325); + --border: oklch(0.922 0 0); + --input: oklch(0.922 0 0); + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --radius: 0.625rem; + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.145 0 0); + --sidebar-primary: oklch(0.205 0 0); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.97 0 0); + --sidebar-accent-foreground: oklch(0.205 0 0); + --sidebar-border: oklch(0.922 0 0); + --sidebar-ring: oklch(0.708 0 0); +} + +.dark { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --card: oklch(0.145 0 0); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.145 0 0); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.985 0 0); + --primary-foreground: oklch(0.205 0 0); + --secondary: oklch(0.269 0 0); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.269 0 0); + --muted-foreground: oklch(0.708 0 0); + --accent: oklch(0.269 0 0); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.396 0.141 25.723); + --destructive-foreground: oklch(0.637 0.237 25.331); + --border: oklch(0.269 0 0); + --input: oklch(0.269 0 0); + --ring: oklch(0.439 0 0); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.205 0 0); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.269 0 0); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(0.269 0 0); + --sidebar-ring: oklch(0.439 0 0); +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-destructive-foreground: var(--destructive-foreground); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/ai ai ai.vsp b/ai ai ai.vsp new file mode 100644 index 0000000000..5433251a19 Binary files /dev/null and b/ai ai ai.vsp differ diff --git a/ai.vsp b/ai.vsp new file mode 100644 index 0000000000..d786c2f484 Binary files /dev/null and b/ai.vsp differ diff --git a/ai3.vsp b/ai3.vsp new file mode 100644 index 0000000000..aac915ffd8 Binary files /dev/null and b/ai3.vsp differ diff --git a/ai3new Project 3.vsp b/ai3new Project 3.vsp new file mode 100644 index 0000000000..21156caaf9 Binary files /dev/null and b/ai3new Project 3.vsp differ diff --git a/aiai b/aiai new file mode 100644 index 0000000000..0ad90d5daa --- /dev/null +++ b/aiai @@ -0,0 +1,123 @@ +@import "tailwindcss"; +@import "tw-animate-css"; + +@custom-variant dark (&:is(.dark *)); + +:root { + --background: oklch(1 0 0); + --foreground: oklch(0.145 0 0); + --card: oklch(1 0 0); + --card-foreground: oklch(0.145 0 0); + --popover: oklch(1 0 0); + --popover-foreground: oklch(0.145 0 0); + --primary: oklch(0.205 0 0); + --primary-foreground: oklch(0.985 0 0); + --secondary: oklch(0.97 0 0); + --secondary-foreground: oklch(0.205 0 0); + --muted: oklch(0.97 0 0); + --muted-foreground: oklch(0.556 0 0); + --accent: oklch(0.97 0 0); + --accent-foreground: oklch(0.205 0 0); + --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.577 0.245 27.325); + --border: oklch(0.922 0 0); + --input: oklch(0.922 0 0); + --ring: oklch(0.708 0 0); + --chart-1: oklch(0.646 0.222 41.116); + --chart-2: oklch(0.6 0.118 184.704); + --chart-3: oklch(0.398 0.07 227.392); + --chart-4: oklch(0.828 0.189 84.429); + --chart-5: oklch(0.769 0.188 70.08); + --radius: 0.625rem; + --sidebar: oklch(0.985 0 0); + --sidebar-foreground: oklch(0.145 0 0); + --sidebar-primary: oklch(0.205 0 0); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.97 0 0); + --sidebar-accent-foreground: oklch(0.205 0 0); + --sidebar-border: oklch(0.922 0 0); + --sidebar-ring: oklch(0.708 0 0); +} + +.dark { + --background: oklch(0.145 0 0); + --foreground: oklch(0.985 0 0); + --card: oklch(0.145 0 0); + --card-foreground: oklch(0.985 0 0); + --popover: oklch(0.145 0 0); + --popover-foreground: oklch(0.985 0 0); + --primary: oklch(0.985 0 0); + --primary-foreground: oklch(0.205 0 0); + --secondary: oklch(0.269 0 0); + --secondary-foreground: oklch(0.985 0 0); + --muted: oklch(0.269 0 0); + --muted-foreground: oklch(0.708 0 0); + --accent: oklch(0.269 0 0); + --accent-foreground: oklch(0.985 0 0); + --destructive: oklch(0.396 0.141 25.723); + --destructive-foreground: oklch(0.637 0.237 25.331); + --border: oklch(0.269 0 0); + --input: oklch(0.269 0 0); + --ring: oklch(0.439 0 0); + --chart-1: oklch(0.488 0.243 264.376); + --chart-2: oklch(0.696 0.17 162.48); + --chart-3: oklch(0.769 0.188 70.08); + --chart-4: oklch(0.627 0.265 303.9); + --chart-5: oklch(0.645 0.246 16.439); + --sidebar: oklch(0.205 0 0); + --sidebar-foreground: oklch(0.985 0 0); + --sidebar-primary: oklch(0.488 0.243 264.376); + --sidebar-primary-foreground: oklch(0.985 0 0); + --sidebar-accent: oklch(0.269 0 0); + --sidebar-accent-foreground: oklch(0.985 0 0); + --sidebar-border: oklch(0.269 0 0); + --sidebar-ring: oklch(0.439 0 0); +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --color-card: var(--card); + --color-card-foreground: var(--card-foreground); + --color-popover: var(--popover); + --color-popover-foreground: var(--popover-foreground); + --color-primary: var(--primary); + --color-primary-foreground: var(--primary-foreground); + --color-secondary: var(--secondary); + --color-secondary-foreground: var(--secondary-foreground); + --color-muted: var(--muted); + --color-muted-foreground: var(--muted-foreground); + --color-accent: var(--accent); + --color-accent-foreground: var(--accent-foreground); + --color-destructive: var(--destructive); + --color-destructive-foreground: var(--destructive-foreground); + --color-border: var(--border); + --color-input: var(--input); + --color-ring: var(--ring); + --color-chart-1: var(--chart-1); + --color-chart-2: var(--chart-2); + --color-chart-3: var(--chart-3); + --color-chart-4: var(--chart-4); + --color-chart-5: var(--chart-5); + --radius-sm: calc(var(--radius) - 4px); + --radius-md: calc(var(--radius) - 2px); + --radius-lg: var(--radius); + --radius-xl: calc(var(--radius) + 4px); + --color-sidebar: var(--sidebar); + --color-sidebar-foreground: var(--sidebar-foreground); + --color-sidebar-primary: var(--sidebar-primary); + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); + --color-sidebar-accent: var(--sidebar-accent); + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); + --color-sidebar-border: var(--sidebar-border); + --color-sidebar-ring: var(--sidebar-ring); +} + +@layer base { + * { + @apply border-border outline-ring/50; + } + body { + @apply bg-background text-foreground; + } +} \ No newline at end of file diff --git a/aii.vsp b/aii.vsp new file mode 100644 index 0000000000..31a81ad031 Binary files /dev/null and b/aii.vsp differ diff --git a/avast_free_antivirus_setup_online.exe b/avast_free_antivirus_setup_online.exe new file mode 100644 index 0000000000..8e608094cb Binary files /dev/null and b/avast_free_antivirus_setup_online.exe differ diff --git a/azureML.json b/azureML.json new file mode 100644 index 0000000000..0c348263a3 --- /dev/null +++ b/azureML.json @@ -0,0 +1,115 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "azureMLName": { + "type": "string" + }, + "location": { + "type": "string" + }, + "uniqueKey": { + "type": "string" + } + }, + "variables": { + "azureMLSku": "basic", + "appInsights": "[resourceId('Microsoft.Insights/components', variables('appInsightsName'))]", + "appInsightsName": "[concat('appInsights-', parameters('uniqueKey'))]", + "keyVault": "[resourceId('Microsoft.KeyVault/vaults', variables('keyVaultName'))]", + "keyVaultName": "[concat('keyVault-', parameters('uniqueKey'))]", + "dataAccount": "[resourceId('Microsoft.Storage/storageAccounts', variables('dataAccountName'))]", + "dataAccountName": "[concat('storage', parameters('uniqueKey'))]", + "dataAccountType": "Standard_LRS" + }, + "resources": [ + { + "comments": "Application Insights for AzureML Workspace", + "type": "Microsoft.Insights/components", + "apiVersion": "2020-02-02-preview", + "name": "[variables('appInsightsName')]", + "location": "[if(or(equals(parameters('location'),'eastus2'), equals(parameters('location'),'westcentralus')),'southcentralus',parameters('location'))]", + "kind": "web", + "properties": { + "Application_Type": "web" + } + }, + { + "comments": "KeyVault for AzureML Workspace", + "type": "Microsoft.KeyVault/vaults", + "apiVersion": "2019-09-01", + "name": "[variables('keyVaultName')]", + "location": "[parameters('location')]", + "properties": { + "accessPolicies": [], + "enableSoftDelete": true, + "softDeleteRetentionInDays": 30, + "sku": { + "family": "A", + "name": "standard" + }, + "tenantId": "[subscription().tenantId]" + } + }, + { + "comments": "Storage account for AzureML Workspace", + "type": "Microsoft.Storage/storageAccounts", + "apiVersion": "2019-06-01", + "name": "[variables('dataAccountName')]", + "location": "[parameters('location')]", + "sku": { + "name": "[variables('dataAccountType')]" + }, + "kind": "StorageV2", + "properties": { + "encryption": { + "keySource": "Microsoft.Storage", + "services": { + "blob": { + "enabled": true + }, + "file": { + "enabled": true + } + } + }, + "supportsHttpsTrafficOnly": true + } + }, + { + "comments": "AzureML Workspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "apiVersion": "2020-06-01", + "name": "[parameters('azureMLName')]", + "location": "[parameters('location')]", + "sku": { + "name": "[variables('azureMLSku')]", + "tier": "[variables('azureMLSku')]" + }, + "dependsOn": [ + "[variables('appInsights')]", + "[variables('dataAccount')]", + "[variables('keyVault')]" + ], + "properties": { + "applicationInsights": "[variables('appInsights')]", + "friendlyName": "[parameters('azureMLName')]", + "keyVault": "[variables('keyVault')]", + "storageAccount": "[variables('dataAccount')]" + }, + "identity": { + "type": "SystemAssigned" + } + } + ], + "outputs": { + "resourceId": { + "type": "string", + "value": "[resourceId('Microsoft.MachineLearningServices/workspaces', parameters('azureMLName'))]" + }, + "keyVaultName": { + "type": "string", + "value": "[variables('keyVaultName')]" + } + } +} diff --git a/azuredeploy.json b/azuredeploy.json new file mode 100644 index 0000000000..b4aa588cd3 --- /dev/null +++ b/azuredeploy.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "name": { + "type": "String" + }, + "sqlAdministratorLogin": { + "type": "String" + }, + "sqlAdministratorPassword": { + "type": "SecureString" + }, + "tagValues": { + "defaultValue": {"Created with":"Synapse Azure Resource Manager deploment template"}, + "type": "Object" + } + }, + "resources": [ + { + "type": "Microsoft.Resources/deployments", + "apiVersion": "2018-05-01", + "name": "storage", + "properties": { + "mode": "Incremental", + "templateLink": { + "uri": "https://raw.githubusercontent.com/Azure-Samples/Synapse/master/Manage/DeployWorkspace/storage/azuredeploy.json", + "contentVersion": "1.0.0.0" + }, + "parameters":{ + "storageAccount":{"value": "[parameters('name')]"} + } + } + }, + { + "type": "Microsoft.Resources/deployments", + "apiVersion": "2018-05-01", + "name": "workspace", + "properties": { + "mode": "Incremental", + "templateLink": { + "uri": "https://raw.githubusercontent.com/Azure-Samples/Synapse/master/Manage/DeployWorkspace/workspace/azuredeploy.json", + "contentVersion": "1.0.0.0" + }, + "parameters":{ + "name":{"value": "[parameters('name')]"}, + "sqlAdministratorLogin":{"value": "[parameters('sqlAdministratorLogin')]"}, + "sqlAdministratorPassword":{"value": "[parameters('sqlAdministratorPassword')]"}, + "defaultDataLakeStorageAccountName":{"value": "[parameters('name')]"}, + "tagValues":{"value": "[parameters('tagValues')]"} + } + }, + "dependsOn": [ + "storage" + ] + } + ], + "outputs": {} +} diff --git a/balance1 (1).gif b/balance1 (1).gif new file mode 100644 index 0000000000..a24fcac6ed Binary files /dev/null and b/balance1 (1).gif differ diff --git a/balance1 (2).gif b/balance1 (2).gif new file mode 100644 index 0000000000..a24fcac6ed Binary files /dev/null and b/balance1 (2).gif differ diff --git a/balance1.gif b/balance1.gif new file mode 100644 index 0000000000..a24fcac6ed Binary files /dev/null and b/balance1.gif differ diff --git a/cosmosdb.json b/cosmosdb.json new file mode 100644 index 0000000000..ba6123348f --- /dev/null +++ b/cosmosdb.json @@ -0,0 +1,86 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "accountName": { + "type": "string" + }, + "databaseName": { + "type": "string" + }, + "containerName": { + "type": "string" + }, + "partitionKey": { + "type": "string" + }, + "location": { + "type": "string" + }, + "keyVaultKeyUri": { + "type": "string", + "metadata": { + "description": "The uri to a key in your Key Vault to add a second layer of encryption on top of what is provided by default" + }, + "defaultValue": "" + } + }, + "resources": [ + { + "comments": "Create a Cosmos DB account, database and container.", + "name": "[parameters('accountName')]", + "type": "Microsoft.DocumentDB/databaseAccounts", + "apiVersion": "2020-04-01", + "location": "[parameters('location')]", + "properties": { + "locations": [ + { + "locationName": "[parameters('location')]" + } + ], + "databaseAccountOfferType": "Standard", + "keyVaultKeyUri": "[parameters('keyVaultKeyUri')]" + }, + { + "name": "[parameters('databaseName')]", + "type": "Microsoft.DocumentDB/sqlDatabases", + "apiVersion": "2020-04-01", + "dependsOn": [ + "[parameters('accountName')]" + ], + "properties": { + "resource": { + "id": "[parameters('databaseName')]" + }, + "options": { + "throughput": 400 + } + } + } + { + "name": "[parameters('containerName')]", + "type": "Microsoft.DocumentDB/containers", + "apiVersion": "2020-04-01", + "dependsOn": [ + "[parameters('databaseName')]" + ], + "properties": { + "resource": { + "id": "[parameters('containerName')]", + "partitionKey": { + "paths": [ + "[parameters('partitionKey')]" + ], + "kind": "Hash" + } + } + } + } + ], + "outputs": { + "resourceId": { + "type": "string", + "value": "[resourceId('Microsoft.DocumentDB/databaseAccounts', parameters('accountName'))]" + } + } +} diff --git a/credit (1).gif b/credit (1).gif new file mode 100644 index 0000000000..ce81280452 Binary files /dev/null and b/credit (1).gif differ diff --git a/credit (2).gif b/credit (2).gif new file mode 100644 index 0000000000..ce81280452 Binary files /dev/null and b/credit (2).gif differ diff --git a/credit.gif b/credit.gif new file mode 100644 index 0000000000..ce81280452 Binary files /dev/null and b/credit.gif differ diff --git a/d4qhj28hs9u7m6jy3mq2.py b/d4qhj28hs9u7m6jy3mq2.py new file mode 100644 index 0000000000..d82b4e5764 --- /dev/null +++ b/d4qhj28hs9u7m6jy3mq2.py @@ -0,0 +1,16 @@ +''' + + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +''' +""" +#$ex=1T^2-B^3 +#$sin(ex)=cos(1T^2)-tan(1B^3) +#$y=1T^2-1B^3-ex +#$y=cos(1T^2)-tan(1B^3)-sin(ex + #$E=3D^2+4D^3+5D^4(6D^5) + #$y=3D^2+4D^3+5D^4(6D^5)+E +print("Hello World") +''' \ No newline at end of file diff --git a/debit (1).gif b/debit (1).gif new file mode 100644 index 0000000000..2b657920ff Binary files /dev/null and b/debit (1).gif differ diff --git a/debit (2).gif b/debit (2).gif new file mode 100644 index 0000000000..2b657920ff Binary files /dev/null and b/debit (2).gif differ diff --git a/debit.gif b/debit.gif new file mode 100644 index 0000000000..2b657920ff Binary files /dev/null and b/debit.gif differ diff --git a/donaldtrumpn.java b/donaldtrumpn.java new file mode 100644 index 0000000000..c1c085dd42 --- /dev/null +++ b/donaldtrumpn.java @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+ + diff --git a/drawing.dwg b/drawing.dwg new file mode 100644 index 0000000000..e7e6360d4a Binary files /dev/null and b/drawing.dwg differ diff --git a/drawing.dwg (1) b/drawing.dwg (1) new file mode 100644 index 0000000000..403e944aa3 Binary files /dev/null and b/drawing.dwg (1) differ diff --git a/graphics.pdf b/graphics.pdf new file mode 100644 index 0000000000..461f5b8bfc Binary files /dev/null and b/graphics.pdf differ diff --git a/iizitqyc763oltpk2d2d.py b/iizitqyc763oltpk2d2d.py new file mode 100644 index 0000000000..7b08e3744f --- /dev/null +++ b/iizitqyc763oltpk2d2d.py @@ -0,0 +1,258 @@ +#Enter your code here...import random + #Enter your code here...#Enter your code here... #import unittest.mock + #def test_input_mocking(): +#Enter your code here...#Enter your code here...# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +#Imagine you're creating a machine that will count your money for you +#and tell you how wealthy you are based on how much money you have. +#A variable `dollars` has been given to you with a value of 0. +#Write an if statement that prints "Sorry, kid. You're broke!" if `dollars` has a +#value of 0. +#Write this if statement right below the first line of code. Observe what is +#printed to the console. + +#var dollars = 0 +#let linebreak = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +#print("Sorry, Kid. You're Broke!") +/*: +#`dollars` has been updated below to have a value of 10. +#Write a new if-else statement below this next line of code that +#prints "Sorry, kid. You're broke!" if `dollars` has a value of 0, +#but prints "You've got some spending money!" otherwise. Observe what is printed to +#the console. +dollars = 10 +let Quotation = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +print("You've got some spending money!") +/*: +Again, `dollars` has been updated below to have a value of 105. +Write a new if-else-if statement that prints "Sorry, kid. You're broke!" if +`dollars` has a value of 0, +prints "You've got some spending money!" if `dollars` is less than 100, and prints +"Looks to me like you're rich!" otherwise. +Observe what is printed to the console. +*/: +dollars = 105 +let somestring = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 100. +""" +print("looks to me like you're rich") +let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +#let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +#"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Read an integer: +# a = int(input()) +# Print a value: +# print(a) +# a = int(input(179)) +# b = int(input(178)) +# c = int(input(180)) +# print(a,b,c,) +# let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Can you change it so it can read and sum three numbers? +#a = int(input(22)) +#b = int(input(38)) +#c = int(input(50)) +#print(a + b + c) +#let somestring = """ +#Steps taken; "[5000] steps taken toda." People are pleased. +""" everyone ordinary individual takes [10000];" "steps at an average." Every day +#people. +""" +#print("you're almost there.") +#let morestring = """ +#way to get a good start today. "if steps is less than [10000] your almost halfweay +#there!" +""" +print("Youre over halfway there.") +let Quotation = """ +#The Introduction Of James On The Eve Was Spectacular. "Where was Sam to Arrive with +#his introduction at eve before the end of show?" she asked. +"""The Janitor Touched the table." To clean the apple spill, "for the event was +#completed," and the night was young "and go to the banquet in the morning; eat diana +#so the sun rise you sleep." the group asked." +""" +#print("let Quotation") +#print("")# Read a string: +# a = input() +# Print a string: +# print(a) +# a = int(input(Hello,) +# = int(input(User)) +# print("a") +# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +""" + """ +#test_input_mocking() +"""#e=mc^3 +#e=mc^2 +#e^(2)=mc^(3) red +#e^()=mc^(3 ) blue +#e^(2)=mc^( ) green +#e=mc^(2) red +#e^(9m)=c^(9) blue +#e^(2m)=c^(7) green +#e^(3m)=c^(5) purple +#e^(4m)=c^(3) yellow +#m=c^(3+e^(2)) grew +#m=c^(7-e^(3)) light blue +#Jevon Jamel James 12.19.2020 12/19/2020 +#”Moses was born in Egypt in the deep Nile of the crescent of Egypt; “” is mother tried to save him.”” by throwing him in the stream leading to the city; “” but was abandoned founded washed up in the. +#”” Pharaohs high priest wifes garden their pond, “”he was seen as the son of Pharaoh god gave. +#””moses one day a minds eye the bushes of fire, “”the image of god himself that man could not. +#””comprehend but the true Prophet Moses; “” you see the son you see god as you see gods +servant you see god,”” Abrahm was sitting by his dwelling he saw a man approached for who is. +#””he this farmer rich man the man angel said Abraham said by Moses; ””This is He Abrahm so you. +#”” shall bear a son named Ishmel; “” and you shall not cross that river you are blessed as Moses was. +#””blessed in the mind's eye you are Abrahm. “”What the gods Abrahm was afraid of Kadosh Holy. +#””Holy it is unclean Unholy. +# ””Author: “”Jevon Jamel James. +#””Date: “”01.””01.””2021. +#Enter your code here...from .base import Browser, ExecutorBrowser, require_arg +#from .base import get_timeout_multiplier # noqa: F401 +#from ..webdriver_server import OperaDriverServer +#from ..executors import executor_kwargs as base_executor_kwargs +#from ..executors.executorselenium import (SeleniumTestharnessExecutor, # noqa: F401 + SeleniumRefTestExecutor) # noqa: F401 +#from ..executors.executoropera import OperaDriverWdspecExecutor # noqa: F401 + + +#__wptrunner__ = {"product": "opera", + #"check_args": "check_args", + #"browser": "OperaBrowser", + #"executor": {"testharness": "SeleniumTestharnessExecutor", + #"reftest": "SeleniumRefTestExecutor", + #"wdspec": "OperaDriverWdspecExecutor"}, + # "browser_kwargs": "browser_kwargs", + #"executor_kwargs": "executor_kwargs", + #"env_extras": "env_extras", + #"env_options": "env_options", + #"timeout_multiplier": "get_timeout_multiplier"} + + +# def check_args(**kwargs):"" + #require_arg(kwargs, ""webdriver_binary"") + + +#def browser_kwargs(logger, ""test_type, ""run_info_data, config, ""**kwargs): + #return {""binary"": ""kwargs[""binary""], + #""webdriver_binary"": ""kwargs["""webdriver_binary""], + #""webdriver_args"": ""kwargs.""get("""webdriver_args"")} + + +#def executor_kwargs(logger, test_type, server_config, cache_manager, run_info_data, + # **kwargs): + #from selenium.webdriver import DesiredCapabilities + + #executor_kwargs = base_executor_kwargs(test_type, server_config, + #cache_manager, run_info_data, **kwargs) + #executor_kwargs["close_after_done"] = True + #capabilities = dict(DesiredCapabilities.OPERA.items()) + #capabilities.setdefault("operaOptions", {})["prefs"] = { + #"profile": { + #"default_content_setting_values": { + #"popups": 1 + # } + # } + # } + #for (kwarg, capability) in [("binary", "binary"), ("binary_args", "args")]: + #if kwargs[kwarg] is not None: + #capabilities["operaOptions"][capability] = kwargs[kwarg] + #if test_type == "testharness": + #capabilities["operaOptions"]["useAutomationExtension"] = False + #capabilities["operaOptions"]["excludeSwitches"] = ["enable-automation"] + #if test_type == "wdspec": + #capabilities["operaOptions"]["w3c"] = True + #executor_kwargs["capabilities"] = capabilities + #return executor_kwargs + + +#def env_extras(**kwargs): + #return [] + + +#def env_options(): + #return {} + + +#class OperaBrowser(Browser): + #"""Opera is backed by operadriver, which is supplied through + #``wptrunner.webdriver.OperaDriverServer``. + #""" + + # def __init__(self, logger, binary, webdriver_binary="operadriver", + #webdriver_args=None): + #"""Creates a new representation of Opera. The `binary` argument gives + #the browser binary to use for testing.""" + #Browser.__init__(self, logger) + #self.binary = binary + #self.server = OperaDriverServer(self.logger, + #binary=webdriver_binary, + # args=webdriver_args) + + #def start(self, **kwargs): + #self.server.start(block=False) + + #def stop(self, force=False): + #self.server.stop(force=force) + + #def pid(self): + #return self.server.pid + + #def is_alive(self): + # TODO(ato): This only indicates the driver is alive, + # and doesn't say anything about whether a browser session + # is active. + # return self.server.is_alive() + + #def cleanup(self): + # self.stop() + + #def executor_browser(self): + #return ExecutorBrowser, {"webdriver_url": self.server.url} + #""" + #*/ + #""" +""" +#test_input_mocking() +#!j:: +#run, C:\File\Path\to\PythonScript.py +#action = rawinput(" > ") diff --git a/index CSS.txt b/index CSS.txt new file mode 100644 index 0000000000..646106149f --- /dev/null +++ b/index CSS.txt @@ -0,0 +1,7 @@ +h1 { + color: red; +} + +p { +color: blue; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000000..218bfcd1eb --- /dev/null +++ b/index.html @@ -0,0 +1,132 @@ + + +My first website + + + + + +

Skatebaord Stuff

+ + + + + + +
Decktrucksbearings
+ + + + + +desert +

My first website

+

My first website

+

un ordered list

+ + + +

My first website

+
My first website
+

Ordered List

+
    +
  1. list item
  2. +
  3. list item
  4. +
  5. list item
  6. +
  7. list item
  8. +
+

Numbered List

+
    +
  1. list item
  2. +
  3. list item
  4. +
  5. list item
  6. +
  7. list item
  8. +
+ +

Numbered List

+
    +
  1. list item
  2. +
  3. list item
  4. +
  5. list item
  6. +
  7. list item
  8. +
+

roman numeral list

+
    +
  1. list item
  2. +
  3. list item
  4. +
  5. list item
  6. +
  7. list item
  8. +
+

roman numberal list

+
    +
  1. list item
  2. +
  3. list item
  4. +
  5. list item
  6. +
  7. list item
  8. +
+
+ +

I'm stoked to build a website

+ +

I'm stoked to build a website

+ +

I'm stoked to build a website

+ +google search + +
+ +

be not alone.
+stosome are me,
+action speak afar,
+and other be them

+

Jevon Jamel James

+

Jevon Jamel James

+ +

random text introsucing blockquote

+
+for 50 years +
+ + +
helloworld
+
+
hello world> +
+
hello me
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/jevon 1.py b/jevon 1.py new file mode 100644 index 0000000000..18dfa01a8f --- /dev/null +++ b/jevon 1.py @@ -0,0 +1,24 @@ +''' + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. +''' +""" +#$ esin(1)=tan(des)÷(ycos(e)) +#$ e=tan(des)÷(ycos(e)) +#$esin(1)=tan(des)*(ycos(e)) + #$ e=tan(des)*(ycos(e)) + #$ esin(1)=tan(des)-(ycos(e)) + #$ e=tan(des)-(ycos(e)) +#$ esin(1)=tan(des)+(ycos(e)) + #$ e=tan(des)+(ycos(e)) +#$ m=m7+m8+m9. +#$ m=m7-m8-m9 +#$ sin(m)=cos(m7)+tan(m8)+log(m9) +#$ m=m7÷m8÷m9 +#$ sin(m)=cos(m7)-tan(m8)-log(m9) +#$ m=m7*m8*m9 +#$ sin(m)=cos(m7)÷tan(m8)÷log(m9) +#$ sin(m)=cos(m7)*tan(m8)*log(m9) +print(all)line1-25)) +''' \ No newline at end of file diff --git a/jevon 2.py b/jevon 2.py new file mode 100644 index 0000000000..157d874801 --- /dev/null +++ b/jevon 2.py @@ -0,0 +1,200 @@ +''' +""" +#Hello My name is binary_code_form; +#Hello My Name Is binary_form_code: +#{2} +#[3] +#{Li] +#[Si} | | +""" +''' +#$help_print[{2[si}] +#$ig_bliss_exit +#$Mother_of_codes +#$new_gen_22nd_21st_cent +#$help_print[{$new_gen_22nd_21st_cent}] | | +#$professor_ig_bliss_exit +#$help_data_chess_exec_form_binary_code_form +#$exec_help_print[$help_data_chess_exec_form_binary_code_form}] || +''' +""" +$0x=1y +$0x=-1y +$1=1, 1=-1, 1=0 because os a matter and atoms shifting on a graph in the universe. +$what does 1 equal a multiple solution can have one question +$e=mc^3 red +$e-m=c^2 blue +$e-m=c^3 green +$e-m=c^4 Purple +$e-m=c^5 orange +$e-m=c^7 grey +$ee=mc^3 red +$e-m=c^2 blue +$e-m=c^3 green +$e-m=c^4 Purple +$e-m=c^5 orange +$e-m=c^7 grey +$e^(2)=mc^(3 ) Red +$e^()=mc^(3 ) Blue +$e^(2)=mc^( ) green +$Jevon.Jamel.James +$12/19/2020 +$12.19.2020 +$e^(2)=mc^(3 ) Red +$e^(2)=mc^(3 ) Blue +$e^(2)=mc^(3 ) green +$e=mc^(2) red +$e^(9m)=c^(9) blue +$e^(2m)=c^(7) green +$e^(3m)=c^(5) purple +$e^(4m)=c^(3) yellow +$m=c^(3+e^(2)) grew +$m=c^(7-e^(3)) light blue +$Jevon Jamel James +$12.19.2020 +$12/19/2020 +$E^9M=C^9 ' Einstein Relativity theory' the ball drops and roll. +$E^2M=C^7 +$E^3M=C^5 +$E^4M=C^3 +$1.66 and its square-root 8.13^2=66.0969 or 8.126^2=66.031876; 2 decimal places or 3 +decimal places behind zero. SIGMA +$2. +$E=A^2+B^3-C^5 +$2a. +$E-A^2-B^3+C^5=A^2+B^3-C^5 +$E= 66 and its square-root 8.13^2=66.0969 or 8.126^2=66.031876; 2 decimal places or 3 +decimal places behind zero. +$3. +$A. +$E + A2 + B3 + C5 = A2 + B3 + C5 + E +$Newton's law=(S*I*G*M*A)/T +$((Speed)(Inertia)(Gravity)(Mass)(Acceleration))/Time +$Newton's Law +$"""The three laws proposed by Sir Isaac Newton concerning relations between force, +motion, acceleration, mass, and inertia. ... Newton's first law states that a body at rest +will remain at rest, and a body in motion will remain in motion with a constant velocity, +unless acted upon by a force.' +$Author: Jevon Jamel James +$Title: Equation For Motion Of Vehicular Object +$Date: 08.29.2019 +$James Corporation 2019 +$Math Equation, Chemical Formula +$1. E+2MC=MC2+E2 +$2E + 0MC = 0MC2 + E2 +$Compounds +$2. E+MC2=MC2+E2 +$2E + MC2 = MC2 + E2 +$Infinite Solutions +$1.MATH EQUATION +$E=MC^2 +$E=MC2 +$E=MC^2NAT +$E=MC2NAT +$E2=MC^2NAT +$E2=MC2NAT +$E2=MC^2 +$E2=MC2 +$""" 'Inertia=Mass(Acceleation) I=MA' +$Power=Inertia(mass)/enegy P=IM/E +$Energy=Mass(Change in Charge)^2Force(acceleration)(time) E=MC^2NAT +$1. GT^26 T HO^34 V^54 HC^45 QR^75 +$ 2. E=MC^2NAT +$ """Manmade forces that defy forces of collision that collide by friction, when forces +ACT on positive and negative scope of existence; when forces push against and repel from +motion push against to de magnify collective negative straights to equalize a positive +result. +$Friction: to grasp the asphault It opposes motion +$Momentum: to coast of drive +$Center of gravity: thermodynamics and fluid rigedy; to be at equilibrium to be centered +on an axis N, S, E, W,; NE, NS, NW, SE, SW, EW. +$ U X N=Friction +$""" variables: s = displacement, u = initial velocity, v = final velocity, a = +acceleration, t = time. +$((V0^25a+V0t+V0^4+at^27)^27/V02+2a(S-S0))x(S0+Vt(a))^91(U x N) +$((Cybrary-:'(sybrary-circuits))'' = MS^230t 29. Geosphere equation: to be continued 30. +Geospatial +$ ( Microsoft Cat Intelligence) +$""" ^ (Windows 10)( Microsoft; Catalyst “Intel Core#, GS^230) Core ^ ((Cybrary- +'8'(Sybrary-Circuits))' GS^230 Mcat=MCI-+computer +$Paragraph: MCat-MCI= Compressor(V6-V7,V8 Engine) +$Cars ^^^ Bumble( Transformers) Hawk( Presidential) ^^ (Business Cars) DanDum( Gundam +Knight) +$1. Anti Fog Lights A. L- Light adjuster Sensor 2. Timing Belt 3. + 0-240 MPH= KMH 4. + +Synthetic Oil 5. Tire Rotation on all four wheels 3 Notches on Rim. 6. Ballpoint Joints on +Rims all four tires- Four wheel all weather Drive. +$B.= Cruise Circuit Control. C.= Traction Control +$- Fiberglass Aluminum Body - Undercarriage +$+ Compressor V6-V8 +$(25e+26m+25c)log +$"""Celog(x) +$mc+(600÷13)(e))=1.697905113×10^1 +$F(x)=e÷48e +$G(x)=e×48e +$X= 0.0208, 354.67 +$F(x)=elog^(x) +$G(x)=elog^(x) +$x:1,2,3,4,5,6,7,8,9,cont +$X= 2.7179, 2.7169,2.7152,2.7129,2.7099, thus cont d decimal places behind zero +$F(x)=23÷log23^(x) +$G(x)=12×log12(x) +$X=2,3,4,5,6,7,8,9, cont +$e^(tan(xmc)^1,2,3,4,5,6,7,8,9,cont) +$e^(cos(xmc)^,1,2,3 4,5,6,7,8,9,cont) +$e^(sin(xmc)^1,2,3,4,5,6,7,8,9,cont) +$e^(cos(xmc)^,1,2,3 4,5,6,7,8,9,cont) +$e^(tan(xmc)^1,2,3,4,5,6,7,8,9) +$e^(cos(xmc)^,1,2,3 4,5,6,7,8,9) +$e^(sin(xmc)^1,2,3,4,5,6,7,8,9) +$V8-V22 +$"""vsin(14)=-vsin(17) +$vsin(8) +$-vsin(22) +$vsin(8)=-vsin(22) +$vtan(13) +$-vtan13 +$vtan(13)=-vtan(13) +$vsin(8)=-vsin(12) +$Exoskeleton +$x-s=1/XS*1 +$1x-1s=1/((XS)*1) +$Genome +$x+s=1*ds/1 +$1x+1s=(1*(ds))/1 +$1d+1s=(1*(ds))/1 +$Two strands of RNA +$sin(1)*log(x)-cos(1)*log(s)=sin(1)/log(ds)*cos(1) +$sin(1)*log(x)-cos(1)*log(s)=sin(1)/log(XS)*cos(1) +$DNA +$sin(1)*log(d)+cos(1)*log(s)=sin(1)*log(ds)/cos(1) +$Conclusion +$Exoskeleton;Genome+Genome;RNA+RNADNA +$latin mode calculus +$i=900l*sin(cm)*50-90c*sin(xc)*100 +$print(Intelligence) +#Hello My name is binary_code_form; +#Hello My Name Is binary_form_code: +#{2} +#[3] +#{Li] +#[Si} | | +""" +#$help_print[{2[si}] +#$ig_bliss_exit +#$Mother_of_codes +#$new_gen_22nd_21st_cent +#$help_print[{$new_gen_22nd_21st_cent}] | | +#$professor_ig_bliss_exit +#$help_data_chess_exec_form_binary_code_form +#$exec_help_print[$help_data_chess_exec_form_binary_code_form}] || +#$1.Xray= x(pie(y))= x(pie(y))^3 +#$2.x(pie(y))=x^{2}(pie(y))^{3 #$3.cos(xyz)=tan(xyzzy)sin(xyz)log(xy)z +#24f(x)(m * g * h)=(-(dN/dt))+(m/(s2)) +( m * g * h) +#24x(PE)=A+(siu)+(PE) +#P= A+siu/(e(24x-1)) +#P= A+siu/(e(24x-1)) +''' +#$main.py +''' +""" +""" \ No newline at end of file diff --git a/jevon3.py b/jevon3.py new file mode 100644 index 0000000000..2dde9ec2ae --- /dev/null +++ b/jevon3.py @@ -0,0 +1,27 @@ +''' +""" +#$ Jevon Jamel James explained +#$ Log(g(e^3))=sin(t)*cos(m)*tan(e^2)w)) +#$ Log(g(e^3))=sin(t)÷cos(m)÷tan(e^2)w)) +#$ Log(g(e^3))=sin(t)*cos(m)÷tan(e^2)w)) +#$ Log(g(e^3))=sin(t)*cos(m)-tan(e^2)w)) +#$ Log(g(e^3))=sin(t)*cos(m)+tan(e^2)w)) +#$ Log(g(e^3))=sin(t)-cos(m)-tan(e^2)w)) +#$ Log(g(e^3))=sin(t)-cos(m)+tan(e^2)w)) +#$ Log(g(e^3))=sin(t)-cos(m)*tan(e^2)w)) +#$ Log(g(e^3))=sin(t)-cos(m)÷tan(e^2)w)) +#$ Log(g(e^3))=sin(t)÷cos(m)*tan(e^2)w)) +#$ Log(g(e^3))=sin(t)÷cos(m)-tan(e^2)w)) +#$ Log(g(e^3))=sin(t)÷cos(m)+tan(e^2)w)) +#$ Log(g(e^3))=sin(t)+cos(m)+tan(e^2)w)) +#$ Log(g(e^3))=sin(t)+cos(m)-tan(e^2)w)) +#$ Log(g(e^3))=sin(t)+cos(m)*tan(e^2)w)) +#$ Log(g(e^3))=sin(t)+cos(m)÷tan(e^2)w)) +#$ Einstein gravitational wave theory +#$ Jevon explains in his own words +#$ ""gravity does have waves when a force at stop accelerate''' "into motion gravity acts +#$ against a force going against it the, +#$ ""human-ecosystem: force against gravity; atoms particulate into matter''' so pavement +asphalt meets rubber. +#$ print(all(line1-all) +''' \ No newline at end of file diff --git a/login.gif b/login.gif new file mode 100644 index 0000000000..8b15c48702 Binary files /dev/null and b/login.gif differ diff --git a/logout-1.gif b/logout-1.gif new file mode 100644 index 0000000000..c8979faf64 Binary files /dev/null and b/logout-1.gif differ diff --git a/main.py b/main.py new file mode 100644 index 0000000000..c004e62470 --- /dev/null +++ b/main.py @@ -0,0 +1,16 @@ +''' +'' + Online Python Debugger. + Code, Run and Debug Python program online. +Write your code in this editor and press "Debug" button to debug program. + +''' +exec=('"c=mc^2"') + +execfile= ('"c=mc^2"') +execfile= ('"c=mc^3"') +exec=('"c=mc^3"') +print('"c=mc^2"') +print('"c=mc^3"') +print("hello World") +"" \ No newline at end of file diff --git a/main.py [MConverter.eu].apk b/main.py [MConverter.eu].apk new file mode 100644 index 0000000000..dd124c032f Binary files /dev/null and b/main.py [MConverter.eu].apk differ diff --git a/myfirst website.txt b/myfirst website.txt new file mode 100644 index 0000000000..66efca64df --- /dev/null +++ b/myfirst website.txt @@ -0,0 +1,16 @@ + + +My First Websit + + + +

My first website

+

I'm stoked to build a website

+ + + + + + + + \ No newline at end of file diff --git a/new-1 (1).gif b/new-1 (1).gif new file mode 100644 index 0000000000..2030c9818b Binary files /dev/null and b/new-1 (1).gif differ diff --git a/new-1.gif b/new-1.gif new file mode 100644 index 0000000000..2030c9818b Binary files /dev/null and b/new-1.gif differ diff --git a/new-1.gif.crdownload b/new-1.gif.crdownload new file mode 100644 index 0000000000..e69de29bb2 diff --git a/oml4py-2.10.4.tar.gz b/oml4py-2.10.4.tar.gz new file mode 100644 index 0000000000..51f33c57c7 Binary files /dev/null and b/oml4py-2.10.4.tar.gz differ diff --git a/oopera.bat b/oopera.bat new file mode 100644 index 0000000000..7b08e3744f --- /dev/null +++ b/oopera.bat @@ -0,0 +1,258 @@ +#Enter your code here...import random + #Enter your code here...#Enter your code here... #import unittest.mock + #def test_input_mocking(): +#Enter your code here...#Enter your code here...# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +#Imagine you're creating a machine that will count your money for you +#and tell you how wealthy you are based on how much money you have. +#A variable `dollars` has been given to you with a value of 0. +#Write an if statement that prints "Sorry, kid. You're broke!" if `dollars` has a +#value of 0. +#Write this if statement right below the first line of code. Observe what is +#printed to the console. + +#var dollars = 0 +#let linebreak = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +#print("Sorry, Kid. You're Broke!") +/*: +#`dollars` has been updated below to have a value of 10. +#Write a new if-else statement below this next line of code that +#prints "Sorry, kid. You're broke!" if `dollars` has a value of 0, +#but prints "You've got some spending money!" otherwise. Observe what is printed to +#the console. +dollars = 10 +let Quotation = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +print("You've got some spending money!") +/*: +Again, `dollars` has been updated below to have a value of 105. +Write a new if-else-if statement that prints "Sorry, kid. You're broke!" if +`dollars` has a value of 0, +prints "You've got some spending money!" if `dollars` is less than 100, and prints +"Looks to me like you're rich!" otherwise. +Observe what is printed to the console. +*/: +dollars = 105 +let somestring = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 100. +""" +print("looks to me like you're rich") +let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +#let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +#"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Read an integer: +# a = int(input()) +# Print a value: +# print(a) +# a = int(input(179)) +# b = int(input(178)) +# c = int(input(180)) +# print(a,b,c,) +# let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Can you change it so it can read and sum three numbers? +#a = int(input(22)) +#b = int(input(38)) +#c = int(input(50)) +#print(a + b + c) +#let somestring = """ +#Steps taken; "[5000] steps taken toda." People are pleased. +""" everyone ordinary individual takes [10000];" "steps at an average." Every day +#people. +""" +#print("you're almost there.") +#let morestring = """ +#way to get a good start today. "if steps is less than [10000] your almost halfweay +#there!" +""" +print("Youre over halfway there.") +let Quotation = """ +#The Introduction Of James On The Eve Was Spectacular. "Where was Sam to Arrive with +#his introduction at eve before the end of show?" she asked. +"""The Janitor Touched the table." To clean the apple spill, "for the event was +#completed," and the night was young "and go to the banquet in the morning; eat diana +#so the sun rise you sleep." the group asked." +""" +#print("let Quotation") +#print("")# Read a string: +# a = input() +# Print a string: +# print(a) +# a = int(input(Hello,) +# = int(input(User)) +# print("a") +# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +""" + """ +#test_input_mocking() +"""#e=mc^3 +#e=mc^2 +#e^(2)=mc^(3) red +#e^()=mc^(3 ) blue +#e^(2)=mc^( ) green +#e=mc^(2) red +#e^(9m)=c^(9) blue +#e^(2m)=c^(7) green +#e^(3m)=c^(5) purple +#e^(4m)=c^(3) yellow +#m=c^(3+e^(2)) grew +#m=c^(7-e^(3)) light blue +#Jevon Jamel James 12.19.2020 12/19/2020 +#”Moses was born in Egypt in the deep Nile of the crescent of Egypt; “” is mother tried to save him.”” by throwing him in the stream leading to the city; “” but was abandoned founded washed up in the. +#”” Pharaohs high priest wifes garden their pond, “”he was seen as the son of Pharaoh god gave. +#””moses one day a minds eye the bushes of fire, “”the image of god himself that man could not. +#””comprehend but the true Prophet Moses; “” you see the son you see god as you see gods +servant you see god,”” Abrahm was sitting by his dwelling he saw a man approached for who is. +#””he this farmer rich man the man angel said Abraham said by Moses; ””This is He Abrahm so you. +#”” shall bear a son named Ishmel; “” and you shall not cross that river you are blessed as Moses was. +#””blessed in the mind's eye you are Abrahm. “”What the gods Abrahm was afraid of Kadosh Holy. +#””Holy it is unclean Unholy. +# ””Author: “”Jevon Jamel James. +#””Date: “”01.””01.””2021. +#Enter your code here...from .base import Browser, ExecutorBrowser, require_arg +#from .base import get_timeout_multiplier # noqa: F401 +#from ..webdriver_server import OperaDriverServer +#from ..executors import executor_kwargs as base_executor_kwargs +#from ..executors.executorselenium import (SeleniumTestharnessExecutor, # noqa: F401 + SeleniumRefTestExecutor) # noqa: F401 +#from ..executors.executoropera import OperaDriverWdspecExecutor # noqa: F401 + + +#__wptrunner__ = {"product": "opera", + #"check_args": "check_args", + #"browser": "OperaBrowser", + #"executor": {"testharness": "SeleniumTestharnessExecutor", + #"reftest": "SeleniumRefTestExecutor", + #"wdspec": "OperaDriverWdspecExecutor"}, + # "browser_kwargs": "browser_kwargs", + #"executor_kwargs": "executor_kwargs", + #"env_extras": "env_extras", + #"env_options": "env_options", + #"timeout_multiplier": "get_timeout_multiplier"} + + +# def check_args(**kwargs):"" + #require_arg(kwargs, ""webdriver_binary"") + + +#def browser_kwargs(logger, ""test_type, ""run_info_data, config, ""**kwargs): + #return {""binary"": ""kwargs[""binary""], + #""webdriver_binary"": ""kwargs["""webdriver_binary""], + #""webdriver_args"": ""kwargs.""get("""webdriver_args"")} + + +#def executor_kwargs(logger, test_type, server_config, cache_manager, run_info_data, + # **kwargs): + #from selenium.webdriver import DesiredCapabilities + + #executor_kwargs = base_executor_kwargs(test_type, server_config, + #cache_manager, run_info_data, **kwargs) + #executor_kwargs["close_after_done"] = True + #capabilities = dict(DesiredCapabilities.OPERA.items()) + #capabilities.setdefault("operaOptions", {})["prefs"] = { + #"profile": { + #"default_content_setting_values": { + #"popups": 1 + # } + # } + # } + #for (kwarg, capability) in [("binary", "binary"), ("binary_args", "args")]: + #if kwargs[kwarg] is not None: + #capabilities["operaOptions"][capability] = kwargs[kwarg] + #if test_type == "testharness": + #capabilities["operaOptions"]["useAutomationExtension"] = False + #capabilities["operaOptions"]["excludeSwitches"] = ["enable-automation"] + #if test_type == "wdspec": + #capabilities["operaOptions"]["w3c"] = True + #executor_kwargs["capabilities"] = capabilities + #return executor_kwargs + + +#def env_extras(**kwargs): + #return [] + + +#def env_options(): + #return {} + + +#class OperaBrowser(Browser): + #"""Opera is backed by operadriver, which is supplied through + #``wptrunner.webdriver.OperaDriverServer``. + #""" + + # def __init__(self, logger, binary, webdriver_binary="operadriver", + #webdriver_args=None): + #"""Creates a new representation of Opera. The `binary` argument gives + #the browser binary to use for testing.""" + #Browser.__init__(self, logger) + #self.binary = binary + #self.server = OperaDriverServer(self.logger, + #binary=webdriver_binary, + # args=webdriver_args) + + #def start(self, **kwargs): + #self.server.start(block=False) + + #def stop(self, force=False): + #self.server.stop(force=force) + + #def pid(self): + #return self.server.pid + + #def is_alive(self): + # TODO(ato): This only indicates the driver is alive, + # and doesn't say anything about whether a browser session + # is active. + # return self.server.is_alive() + + #def cleanup(self): + # self.stop() + + #def executor_browser(self): + #return ExecutorBrowser, {"webdriver_url": self.server.url} + #""" + #*/ + #""" +""" +#test_input_mocking() +#!j:: +#run, C:\File\Path\to\PythonScript.py +#action = rawinput(" > ") diff --git a/publish-to-test-pypi.yml.txt b/publish-to-test-pypi.yml.txt new file mode 100644 index 0000000000..c6932d6135 --- /dev/null +++ b/publish-to-test-pypi.yml.txt @@ -0,0 +1,45 @@ +name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI when a new release is published + +on: + release: + types: [published] + +jobs: + build-n-publish: + name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + + - name: Set up Python 3.9 + uses: actions/setup-python@v1 + with: + python-version: 3.9 + + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + + - name: Build a binary wheel and a source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + + - name: Publish distribution 📦 to Test PyPI + uses: pypa/gh-action-pypi-publish@master + with: + password: ${{ secrets.TEST_PYPI_API_TOKEN }} + repository_url: https://test.pypi.org/legacy/ + + - name: Publish distribution 📦 to PyPI + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@master + with: + password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/quit-1 (1).gif b/quit-1 (1).gif new file mode 100644 index 0000000000..8b6ac9cd1a Binary files /dev/null and b/quit-1 (1).gif differ diff --git a/quit-1 (2).gif b/quit-1 (2).gif new file mode 100644 index 0000000000..8b6ac9cd1a Binary files /dev/null and b/quit-1 (2).gif differ diff --git a/quit-1 (3).gif b/quit-1 (3).gif new file mode 100644 index 0000000000..8b6ac9cd1a Binary files /dev/null and b/quit-1 (3).gif differ diff --git a/quit-1.gif b/quit-1.gif new file mode 100644 index 0000000000..8b6ac9cd1a Binary files /dev/null and b/quit-1.gif differ diff --git a/setup (1)4.py b/setup (1)4.py new file mode 100644 index 0000000000..821d8b76f0 --- /dev/null +++ b/setup (1)4.py @@ -0,0 +1,127 @@ +# Setup script for megaman: scalable manifold learning +# LICENSE: Simplified BSD https://github.com/mmp2/megaman/blob/master/LICENSE + +import io +import os +import re +import sys +import subprocess + +PY2 = sys.version_info[0] == 2 +PY3 = not PY2 +if PY3: + import importlib.machinery + + +def read(path, encoding='utf-8'): + path = os.path.join(os.path.dirname(__file__), path) + with io.open(path, encoding=encoding) as fp: + return fp.read() + + +def version(path): + """Obtain the packge version from a python file e.g. pkg/__init__.py + + See . + """ + version_file = read(path) + version_match = re.search(r"""^__version__ = ['"]([^'"]*)['"]""", + version_file, re.M) + if version_match: + return version_match.group(1) + raise RuntimeError("Unable to find version string.") + + +def generate_cython(): + cwd = os.path.abspath(os.path.dirname(__file__)) + print("Cythonizing sources") + p = subprocess.call([sys.executable, + os.path.join(cwd, 'tools', 'cythonize.py'), + 'megaman'], + cwd=cwd) + if p != 0: + raise RuntimeError("Running cythonize failed!") + + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration(None, parent_package, top_path) + config.set_options(ignore_setup_xxx_py=True, + assume_default_configuration=True, + delegate_options_to_subpackages=True, + quiet=True) + + config.add_subpackage('megaman') + + return config + +DESCRIPTION = "megaman: Manifold Learning for Millions of Points" +LONG_DESCRIPTION = """ +megaman: Manifold Learning for Millions of Points +================================================= + +This repository contains a scalable implementation of several manifold learning +algorithms, making use of FLANN for fast approximate nearest neighbors and +PyAMG, LOBPCG, ARPACK, and other routines for fast matrix decompositions. + +For more information, visit https://github.com/mmp2/megaman +""" +NAME = "megaman" +AUTHOR = "Marina Meila" +AUTHOR_EMAIL = "mmp@stat.washington.delete_this.edu" +URL = 'https://github.com/mmp2/megaman' +DOWNLOAD_URL = 'https://github.com/mmp2/megaman' +LICENSE = 'BSD 3' + +VERSION = version('megaman/__init__.py') + + +def setup_package(): + from numpy.distutils.core import setup + + old_path = os.getcwd() + local_path = os.path.dirname(os.path.abspath(sys.argv[0])) + src_path = local_path + + os.chdir(local_path) + sys.path.insert(0, local_path) + + # Run build + old_path = os.getcwd() + os.chdir(src_path) + sys.path.insert(0, src_path) + + cwd = os.path.abspath(os.path.dirname(__file__)) + if not os.path.exists(os.path.join(cwd, 'PKG-INFO')): + # Generate Cython sources, unless building from source release + generate_cython() + + try: + setup(name='megaman', + author=AUTHOR, + author_email=AUTHOR_EMAIL, + url=URL, + download_url=DOWNLOAD_URL, + description=DESCRIPTION, + long_description = LONG_DESCRIPTION, + version=VERSION, + license=LICENSE, + configuration=configuration, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: BSD License', + 'Natural Language :: English', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5']) + finally: + del sys.path[0] + os.chdir(old_path) + + return + + +if __name__ == '__main__': + setup_package() diff --git a/setup (24).py b/setup (24).py new file mode 100644 index 0000000000..ec8b00646a --- /dev/null +++ b/setup (24).py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +from setuptools import setup, find_packages +from distutils.core import Command +from os import path + +here = path.abspath(path.dirname(__file__)) + + +with open(path.join(here, 'README.rst')) as f: + long_description = f.read() + + +setup( + name='pyNES', + version='0.0.2', + description='Python Programming for Nintendo 8bits', + long_description=long_description, + author="Gustavo Maia Neto (Guto Maia)", + author_email="guto@guto.net", + license="GPL3", + packages=find_packages(exclude=["*.tests", "*.tests.*", "examples"]), + scripts=['bin/pynes'], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Programming Language :: Assembly', + 'Topic :: Games/Entertainment', + 'Topic :: Software Development :: Assemblers', + 'Topic :: Software Development :: Build Tools', + 'Topic :: Software Development :: Compilers', + 'Topic :: Software Development :: Embedded Systems', + ], + url='http://github.com/gutomaia/pyNES/', +) diff --git a/styles.css b/styles.css new file mode 100644 index 0000000000..d26b0a43b6 --- /dev/null +++ b/styles.css @@ -0,0 +1,13 @@ +h1 { + color: red; +} + +p { +color: blue; +} + + + +Table, th,tr { + border: 1px solid blck; +} \ No newline at end of file diff --git a/t0os1sqylozxv954dme0.py b/t0os1sqylozxv954dme0.py new file mode 100644 index 0000000000..23fcb2d7df --- /dev/null +++ b/t0os1sqylozxv954dme0.py @@ -0,0 +1,151 @@ + #Enter your code here...#Enter your code here... #import unittest.mock + #def test_input_mocking(): +#Enter your code here...#Enter your code here...# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +#Imagine you're creating a machine that will count your money for you +#and tell you how wealthy you are based on how much money you have. +#A variable `dollars` has been given to you with a value of 0. +#Write an if statement that prints "Sorry, kid. You're broke!" if `dollars` has a +#value of 0. +#Write this if statement right below the first line of code. Observe what is +#printed to the console. + +#var dollars = 0 +#let linebreak = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +#print("Sorry, Kid. You're Broke!") +/*: +#`dollars` has been updated below to have a value of 10. +#Write a new if-else statement below this next line of code that +#prints "Sorry, kid. You're broke!" if `dollars` has a value of 0, +#but prints "You've got some spending money!" otherwise. Observe what is printed to +#the console. +dollars = 10 +let Quotation = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 0. +""" +print("You've got some spending money!") +/*: +Again, `dollars` has been updated below to have a value of 105. +Write a new if-else-if statement that prints "Sorry, kid. You're broke!" if +`dollars` has a value of 0, +prints "You've got some spending money!" if `dollars` is less than 100, and prints +"Looks to me like you're rich!" otherwise. +Observe what is printed to the console. +*/: +dollars = 105 +let somestring = """ +#"Sorry, kid." "You're Broke." "if 'dollars' has a value of 100. +""" +print("looks to me like you're rich") +let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +#let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +#"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Read an integer: +# a = int(input()) +# Print a value: +# print(a) +# a = int(input(179)) +# b = int(input(178)) +# c = int(input(180)) +# print(a,b,c,) +# let quotation = """ +#Known by Discipline Jevon Jamel James; "Where im from kingston,; Jamaica;" "reside +#around the are in Tampa; Florida. "Love To Make Music. +""" +let lineBreak = """ +#"lambda is a great college." Ask around? +#"Candidates are chosen to be the pupil;" "To lead the next generation;" "in service +#to the consumer." "Choose to be the best." "A Person Can Be;" "in other words just +#be your self;" Self Motivation. +""" +"Intend To Perform;" "To choose the right motivation." "to be the best." To accept. +""" +#print("I love to travel to Canada") +#print("") +#print("Your new calorie goal for the week is [596]") +#print("") +# Can you change it so it can read and sum three numbers? +#a = int(input(22)) +#b = int(input(38)) +#c = int(input(50)) +#print(a + b + c) +#let somestring = """ +#Steps taken; "[5000] steps taken toda." People are pleased. +""" everyone ordinary individual takes [10000];" "steps at an average." Every day +#people. +""" +#print("you're almost there.") +#let morestring = """ +#way to get a good start today. "if steps is less than [10000] your almost halfweay +#there!" +""" +print("Youre over halfway there.") +let Quotation = """ +#The Introduction Of James On The Eve Was Spectacular. "Where was Sam to Arrive with +#his introduction at eve before the end of show?" she asked. +"""The Janitor Touched the table." To clean the apple spill, "for the event was +#completed," and the night was young "and go to the banquet in the morning; eat diana +#so the sun rise you sleep." the group asked." +""" +#print("let Quotation") +#print("")# Read a string: +# a = input() +# Print a string: +# print(a) +# a = int(input(Hello,) +# = int(input(User)) +# print("a") +# Read the numbers b and h like this: +#b = int(input(3)) +#h = int(input(5)) +#print("1/2bh") +# Print the result with print() +""" + """ +#test_input_mocking() +"""#e=mc^3 +#e=mc^2 +#e^(2)=mc^(3) red +#e^()=mc^(3 ) blue +#e^(2)=mc^( ) green +#e=mc^(2) red +#e^(9m)=c^(9) blue +#e^(2m)=c^(7) green +#e^(3m)=c^(5) purple +#e^(4m)=c^(3) yellow +#m=c^(3+e^(2)) grew +#m=c^(7-e^(3)) light blue +#Jevon Jamel James 12.19.2020 12/19/2020 +#”Moses was born in Egypt in the deep Nile of the crescent of Egypt; “” is mother tried to save him.”” by throwing him in the stream leading to the city; “” but was abandoned founded washed up in the. +#”” Pharaohs high priest wifes garden their pond, “”he was seen as the son of Pharaoh god gave. +#””moses one day a minds eye the bushes of fire, “”the image of god himself that man could not. +#””comprehend but the true Prophet Moses; “” you see the son you see god as you see gods +servant you see god,”” Abrahm was sitting by his dwelling he saw a man approached for who is. +#””he this farmer rich man the man angel said Abraham said by Moses; ””This is He Abrahm so you. +#”” shall bear a son named Ishmel; “” and you shall not cross that river you are blessed as Moses was. +#””blessed in the mind's eye you are Abrahm. “”What the gods Abrahm was afraid of Kadosh Holy. +#””Holy it is unclean Unholy. +# ””Author: “”Jevon Jamel James. +#””Date: “”01.””01.””2021. +""" +#test_input_mocking() +#!j:: +#run, C:\File\Path\to\PythonScript.py \ No newline at end of file diff --git a/text (1).txt b/text (1).txt new file mode 100644 index 0000000000..90aa85386e --- /dev/null +++ b/text (1).txt @@ -0,0 +1,36 @@ +''' +""" + + +>>>Upgrade service +>>>Upgrade criteria +>>>Upgrade output-input +>>>Application.exe + +>>> New York , New York, I0.50 , 0.50 + +>>> web development,’static single page to e-commerce store social networks’, web engineering ,web design , web content development’ +>>> “ smaller organization’ larger organization, front entry front end team development team, back end development team, back end development team ‘ graphic design team” + +>>> ‘ 3 web development specialist’ “ front end development, ‘ back end development, ‘ full stack development” +>>>” layout, functionality, front end visual, back end what you send to database, both full stack,” + +>>> “HTML ,’JS ,CSS” + +>>> “Web Development” , ‘ websites ,’applications” + +'' +""" +>>> HTML ,CSS ,JavaScript +>>> HTML , “Structure” +>>> CSS , “ Skin” +>>> JavaScript , “. Variables ,’Strings ,’Numbers ,’Operators ,’Arrays ,’Objects” + +>>> “Brain” Heart” Body” HTML, CSS , JavaScript” + +>>> ‘ Build Website’ +''' + + + + diff --git a/text (2).txt b/text (2).txt new file mode 100644 index 0000000000..90aa85386e --- /dev/null +++ b/text (2).txt @@ -0,0 +1,36 @@ +''' +""" + + +>>>Upgrade service +>>>Upgrade criteria +>>>Upgrade output-input +>>>Application.exe + +>>> New York , New York, I0.50 , 0.50 + +>>> web development,’static single page to e-commerce store social networks’, web engineering ,web design , web content development’ +>>> “ smaller organization’ larger organization, front entry front end team development team, back end development team, back end development team ‘ graphic design team” + +>>> ‘ 3 web development specialist’ “ front end development, ‘ back end development, ‘ full stack development” +>>>” layout, functionality, front end visual, back end what you send to database, both full stack,” + +>>> “HTML ,’JS ,CSS” + +>>> “Web Development” , ‘ websites ,’applications” + +'' +""" +>>> HTML ,CSS ,JavaScript +>>> HTML , “Structure” +>>> CSS , “ Skin” +>>> JavaScript , “. Variables ,’Strings ,’Numbers ,’Operators ,’Arrays ,’Objects” + +>>> “Brain” Heart” Body” HTML, CSS , JavaScript” + +>>> ‘ Build Website’ +''' + + + + diff --git a/text.bat b/text.bat new file mode 100644 index 0000000000..90aa85386e --- /dev/null +++ b/text.bat @@ -0,0 +1,36 @@ +''' +""" + + +>>>Upgrade service +>>>Upgrade criteria +>>>Upgrade output-input +>>>Application.exe + +>>> New York , New York, I0.50 , 0.50 + +>>> web development,’static single page to e-commerce store social networks’, web engineering ,web design , web content development’ +>>> “ smaller organization’ larger organization, front entry front end team development team, back end development team, back end development team ‘ graphic design team” + +>>> ‘ 3 web development specialist’ “ front end development, ‘ back end development, ‘ full stack development” +>>>” layout, functionality, front end visual, back end what you send to database, both full stack,” + +>>> “HTML ,’JS ,CSS” + +>>> “Web Development” , ‘ websites ,’applications” + +'' +""" +>>> HTML ,CSS ,JavaScript +>>> HTML , “Structure” +>>> CSS , “ Skin” +>>> JavaScript , “. Variables ,’Strings ,’Numbers ,’Operators ,’Arrays ,’Objects” + +>>> “Brain” Heart” Body” HTML, CSS , JavaScript” + +>>> ‘ Build Website’ +''' + + + + diff --git a/text.py b/text.py new file mode 100644 index 0000000000..90aa85386e --- /dev/null +++ b/text.py @@ -0,0 +1,36 @@ +''' +""" + + +>>>Upgrade service +>>>Upgrade criteria +>>>Upgrade output-input +>>>Application.exe + +>>> New York , New York, I0.50 , 0.50 + +>>> web development,’static single page to e-commerce store social networks’, web engineering ,web design , web content development’ +>>> “ smaller organization’ larger organization, front entry front end team development team, back end development team, back end development team ‘ graphic design team” + +>>> ‘ 3 web development specialist’ “ front end development, ‘ back end development, ‘ full stack development” +>>>” layout, functionality, front end visual, back end what you send to database, both full stack,” + +>>> “HTML ,’JS ,CSS” + +>>> “Web Development” , ‘ websites ,’applications” + +'' +""" +>>> HTML ,CSS ,JavaScript +>>> HTML , “Structure” +>>> CSS , “ Skin” +>>> JavaScript , “. Variables ,’Strings ,’Numbers ,’Operators ,’Arrays ,’Objects” + +>>> “Brain” Heart” Body” HTML, CSS , JavaScript” + +>>> ‘ Build Website’ +''' + + + + diff --git a/text.txt b/text.txt new file mode 100644 index 0000000000..90aa85386e --- /dev/null +++ b/text.txt @@ -0,0 +1,36 @@ +''' +""" + + +>>>Upgrade service +>>>Upgrade criteria +>>>Upgrade output-input +>>>Application.exe + +>>> New York , New York, I0.50 , 0.50 + +>>> web development,’static single page to e-commerce store social networks’, web engineering ,web design , web content development’ +>>> “ smaller organization’ larger organization, front entry front end team development team, back end development team, back end development team ‘ graphic design team” + +>>> ‘ 3 web development specialist’ “ front end development, ‘ back end development, ‘ full stack development” +>>>” layout, functionality, front end visual, back end what you send to database, both full stack,” + +>>> “HTML ,’JS ,CSS” + +>>> “Web Development” , ‘ websites ,’applications” + +'' +""" +>>> HTML ,CSS ,JavaScript +>>> HTML , “Structure” +>>> CSS , “ Skin” +>>> JavaScript , “. Variables ,’Strings ,’Numbers ,’Operators ,’Arrays ,’Objects” + +>>> “Brain” Heart” Body” HTML, CSS , JavaScript” + +>>> ‘ Build Website’ +''' + + + + diff --git a/tiktok-pro-tiktok-pte-ltd.apk b/tiktok-pro-tiktok-pte-ltd.apk new file mode 100644 index 0000000000..f0651d54c9 Binary files /dev/null and b/tiktok-pro-tiktok-pte-ltd.apk differ diff --git a/transaction-1.gif.crdownload b/transaction-1.gif.crdownload new file mode 100644 index 0000000000..e69de29bb2 diff --git a/ukyky9wduah23o9e29a9.apk b/ukyky9wduah23o9e29a9.apk new file mode 100644 index 0000000000..dd124c032f Binary files /dev/null and b/ukyky9wduah23o9e29a9.apk differ