cd /home/dev/Development/tracker-project/app && rm output.txt && touch output.txt && soapy_power -d airspy -f 1505000000h -q -c >> /home/dev/Development/tracker-project/app/output.txt
cd /home/dev/Development/tracker-project/app && python app.py
| https://drive.google.com/file/d/1cBqaRJqpSnr74rE2Z25XmUMJRMBdWwRP/view?usp=sharing |
| https://drive.google.com/file/d/1GULEUShxFaqT02yDdwMHuJh79PLq1gKJ/view?usp=sharing |
| import psutil | |
| import time | |
| import multiprocessing | |
| import platform | |
| from datetime import datetime | |
| from multiprocessing import Value, Manager | |
| def stress_cpu(counter): | |
| """Function to stress a single CPU core and count operations""" | |
| end_time = time.time() + 600 # Run for 600 seconds (10 minutes) |
| var https = require('https'), | |
| user = process.argv[2], | |
| opts = parseOpts(process.argv.slice(3)) | |
| request('/users/' + user, function (res) { | |
| if (!res.public_repos) { | |
| console.log(res.message) | |
| return | |
| } | |
| var pages = Math.ceil(res.public_repos / 100), |
| stages: | |
| - build | |
| build-job: | |
| stage: build | |
| script: | |
| - echo "Compiling the code..." | |
| - pwd | |
| - ls |
| echo "Hello World" |
| require('@shopify/shopify-api/adapters/node'); | |
| const { shopifyApi } = require('@shopify/shopify-api'); | |
| // UPDATE THESE VALUES | |
| const SHOPIFY_CLIENT_ID = ''; | |
| const SHOPIFY_APP_HOSTNAME = ''; | |
| const SHOPIFY_CLIENT_SECRET = ''; | |
| const SHOPIFY_SESSION = {}; // Add shopify oAuth session here | |
| const { data } = await axios.post(`/upload`, { }); | |
| const blob = new Blob([data], { type: 'application/pdf' }); | |
| const a = document.createElement('a'); | |
| a.href = window.URL.createObjectURL(blob); | |
| a.download = "resume-with-metadata.pdf"; | |
| a.target = '_self'; | |
| document.body.appendChild(a); | |
| a.click(); |
| const Teleport = require('@ideea-inc/teleport-js'); | |
| const teleport = new Teleport('API_KEY'); | |
| teleport.create({ | |
| group_id: 'c0f37b77-d7e3-428d-953a-3ace386762be', | |
| data: '{arbitrary: "string"}', | |
| pickup_name: 'Anthony Budd', | |
| pickup_phone: '512-xxx-xxx', | |
| pickup_address_line_1: '300 Bowie Street', |