- Create your bot with botfather
- Make you bot an admin of your channel
Go to Telegram web and open a channel, get the ID from -[channel id] from hash in the path
https://web.telegram.org/k/#-9999999999999
| {"lastUpload":"2020-08-31T19:39:26.393Z","extensionVersion":"v3.4.3"} |
| using DocumentFormat.OpenXml.Packaging; | |
| using DocumentFormat.OpenXml.Spreadsheet; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Data; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ReadWriteExcelUsingOpenXml.Shared |
| /// <remarks/> | |
| [System.SerializableAttribute()] | |
| [System.ComponentModel.DesignerCategoryAttribute("code")] | |
| [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)] | |
| [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)] | |
| public partial class packages | |
| { | |
| private packagesPackage[] packageField; |
| import { Component, Input } from '@angular/core'; | |
| @Component({ | |
| selector: 'example', | |
| template: `{{data}}` // getting `data` in the template will call the getter method! | |
| }) | |
| export class ExampleCoponent { | |
| private dataInternal: number; | |
| @Input() set data(data: number) { |
| FROM java:8-jdk | |
| RUN dpkg --add-architecture i386 | |
| RUN apt-get update | |
| #current debian kernel feezes java | |
| RUN apt-get dist-upgrade -y | |
| RUN apt-get install ruby-full -y | |
| RUN apt-get install -y --no-install-recommends apt-utils build-essential git ruby-dev zlib1g-dev | |
| RUN apt-get install -y --no-install-recommends libncurses5:i386 libc6:i386 libstdc++6:i386 zlib1g:i386 wget unzip |
| Download Google Drive files with WGET | |
| Example Google Drive download link: | |
| https://docs.google.com/open?id=[ID] | |
| To download the file with WGET you need to use this link: | |
| https://googledrive.com/host/[ID] | |
| Example WGET command: |
| #---------------------------------------------------------------------------------------------# | |
| #--Script to copy files from one location to another with a cool Progressbar --# | |
| # If you want to test it - Change the source path and target path with a relevant directory | |
| # in your computer - | |
| # $SOURCE_PATH | |
| # $TARGET_PATH | |
| #---------------------------------------------------------------------------------------------# | |
| # Note : The script will copy only files from source to target, please use it carefully | |
| # if the low disk space problem in target drive. | |
| # Do not use C:\ drive or drive where Operating system in installed. |