[MAGNIFIQUE BANIERE en 750x256px]
- Liste
- de
| set number | |
| syntax on | |
| set mouse=a | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set autoindent |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/jecaudal/.oh-my-zsh" | |
| ZSH_THEME="sunrise" | |
| # Which plugins would you like to load? | |
| # Standard plugins can be found in ~/.oh-my-zsh/plugins/* | |
| # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
| # Example format: plugins=(rails git textmate ruby lighthouse) | |
| # Add wisely, as too many plugins slow down shell startup. |
| { | |
| "main snippet": { | |
| "prefix": "main", | |
| "body": [ | |
| "int\t\tmain(int argc, char **argv)", | |
| "{", | |
| "\t${1://code}", | |
| "\treturn (0);", | |
| "}" | |
| ] |
| # i3 config file (v4) | |
| # | |
| # Please see https://i3wm.org/docs/userguide.html for a complete reference! | |
| # | |
| # This config file uses keycodes (bindsym) and was written for the QWERTY | |
| # layout. | |
| # | |
| # To get a config file with the same key positions, but for your current | |
| # layout, use the i3-config-wizard | |
| # |
| @heading-color: #ff45ae; | |
| @sub-heading-color: #66f38a; | |
| @color: #9f9f9fb3; | |
| .vc-container { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| flex-direction: column; | |
| height: 100vh; |
| function generateCode(): number { | |
| var draw: number = Math.random(); | |
| draw *= Math.pow(10, 6); | |
| while (draw < 100000) { | |
| draw *= 10; | |
| } | |
| return (Math.round(draw)); | |
| } | |
| var test: number; |
| # This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' | |
| version: 2.1 | |
| # Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. | |
| # See: https://circleci.com/docs/2.0/orb-intro/ | |
| orbs: | |
| node: circleci/node@5.0.0 | |
| jobs: | |
| main: | |
| docker: |
| var token = "YOUR TELEGRAM API CODE"; | |
| var telegramUrl = "https://api.telegram.org/bot" + token; | |
| var webAppUrl = "THE URL OF THE APP SCRIPT INSTANCE" | |
| function setWebhook() { | |
| var url = telegramUrl + "/setWebhook?url=" + webAppUrl; | |
| var response = UrlFetchApp.fetch(url); | |
| } | |
| function sendMessage(chat_id, text) { |
| server { | |
| listen 80; | |
| server_name example.com; | |
| location / { | |
| proxy_pass https://xxxx/; | |
| } | |
| } |