Download the windows image you want.
AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)
So Home wont work.
| # '0081' -> 11 | |
| # '23' -> 7 | |
| # '022' -> 9 | |
| def is_div(s: str) -> bool: | |
| #print(int(s)) | |
| if (int(s) % 3 == 0): | |
| return True | |
| return False |
| #include <cstdio> | |
| #include <cunistd> | |
| #include <iostream> | |
| #include <memory> | |
| #include <string> | |
| #include "rocksdb/convenience.h" | |
| #include "rocksdb/db.h" | |
| #include "rocksdb/slice.h" | |
| #include "rocksdb/options.h" |
| #/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import logging | |
| import airflow | |
| from airflow import DAG | |
| from datetime import timedelta, datetime | |
| from airflow.operators.dummy_operator import DummyOperator | |
| from airflow.operators.python_operator import PythonOperator | |
| from airflow.operators.http_operator import SimpleHttpOperator |
| package com.phoneservice.phoneservice; | |
| import com.phoneservice.phoneservice.model.Signup; | |
| import com.phoneservice.phoneservice.model.SignupParsed; | |
| import org.springframework.amqp.rabbit.annotation.RabbitListener; | |
| import org.springframework.messaging.Message; | |
| import org.springframework.stereotype.Component; | |
| @Component | |
| public class SignupListener { |
| package com.phoneservice.phoneservice; | |
| import com.phoneservice.phoneservice.model.Signup; | |
| import lombok.extern.slf4j.Slf4j; | |
| import org.springframework.amqp.rabbit.core.RabbitTemplate; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.http.ResponseEntity; | |
| import org.springframework.web.bind.annotation.PostMapping; | |
| import org.springframework.web.bind.annotation.RequestBody; | |
| import org.springframework.web.bind.annotation.RequestMapping; |
| package com.phoneservice.phoneservice; | |
| import org.springframework.amqp.core.Binding; | |
| import org.springframework.amqp.core.BindingBuilder; | |
| import org.springframework.amqp.core.Queue; | |
| import org.springframework.amqp.core.TopicExchange; | |
| import org.springframework.amqp.rabbit.connection.CachingConnectionFactory; | |
| import org.springframework.amqp.rabbit.connection.ConnectionFactory; | |
| import org.springframework.amqp.rabbit.core.RabbitTemplate; | |
| import org.springframework.amqp.support.converter.Jackson2JsonMessageConverter; |
Unfortunately, xcode does not yet have support for importing OSX crash logs and symbolizing them. Therefore, you must use the command line and a little bit of manual work.
| # Adjust the following variables as necessary | |
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=500 | |
| # check if the branch exists on the remote | |
| if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # if so, only push the commits that are not on the remote already | |
| range=$REMOTE/$BRANCH..HEAD | |
| else |
| import pandas as pd | |
| # Read CSV file into DataFrame object | |
| csv_df = pd.read_csv(csv_file_path) | |
| # Read XLS/XLSX file into DataFrame object | |
| excel_df = pd.read_excel(excel_io) |