This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE DEPARTMENT | |
(DNO VARCHAR2 (20) PRIMARY KEY, | |
DNAME VARCHAR2 (20), | |
MGRSTARTDATE DATE); | |
CREATE TABLE EMPLOYEE | |
(SSN VARCHAR2 (20) PRIMARY KEY, | |
FNAME VARCHAR2 (20), | |
LNAME VARCHAR2 (20), | |
ADDRESS VARCHAR2 (20), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2012 The CyanogenMod Project | |
# (C) 2017 The LineageOS Project | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from telegram import ParseMode, InlineKeyboardButton, InlineKeyboardMarkup | |
from telegram.ext import MessageHandler, Filters, CommandHandler, run_async | |
from telegram.utils.helpers import escape_markdown | |
import tg_bot.modules.sql.welcome_sql as sql | |
from tg_bot import dispatcher, OWNER_ID | |
from tg_bot.modules.helper_funcs import user_admin, markdown_parser, escape_invalid_curly_brackets, \ | |
button_markdown_parser | |
VALID_WELCOME_FORMATTERS = ['first', 'last', 'fullname', 'username', 'id', 'count', 'chatname', 'mention'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2017 Android Open Source Project | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright 2016 The CyanogenMod Project | |
# Copyright 2017 The LineageOS Project | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"repository": "android_kernel_xiaomi_msm8956", | |
"target_path": "kernel/xiaomi/msm8956" | |
}, | |
{ | |
"repository": "android_device_xiaomi_msm8956-common", | |
"target_path": "device/xiaomi/msm8956-common" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright 2016 The CyanogenMod Project | |
# Copyright 2017 The LineageOS Project | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/TheScarastic/android_device_xiaomi_kenzo -b lineage-15.0 device/xiaomi/kenzo | |
git clone https://github.com/TheScarastic/android_device_xiaomi_msm8956-common -b lineage-15.0 device/xiaomi/msm8956-common | |
git clone https://github.com/nitrogen-project/android_kernel_xiaomi_kenzo -b o kernel/xiaomi/msm8956 | |
git clone https://github.com/TheScarastic/proprietary_vendor_xiaomi -b lineage-15.0 vendor/xiaomi | |
git clone https://github.com/AmolAmrit/android_hardware_cyanogen -b oreo hardware/cyanogen | |
rm -rf hardware/qcom/audio-caf/msm8952 | |
rm -rf hardware/qcom/display-caf/msm8952 | |
rm -rf hardware/qcom/media-caf/msm8952 | |
git clone https://github.com/AmolAmrit/android_hardware_qcom_audio -b oreo hardware/qcom/audio-caf/msm8952 | |
git clone https://github.com/AmolAmrit/android_hardware_qcom_media -b oreo hardware/qcom/media-caf/msm8952 |