This is frequently updated devops fundamentals roadmap.
- Linux Fundamentals - Introduction to Linux – Full Course for Beginners - YouTube
- Git and Version Control - Learn Git – Full Course for Beginners
This is frequently updated devops fundamentals roadmap.
| http { | |
| server { | |
| listen 80; | |
| server_name http-bin.domain.com; | |
| location / { | |
| proxy_pass http://http-bin:80; | |
| } | |
| } | |
| } |
| import re | |
| class SMSFiltrele: | |
| def __init__(self, spam_kelimeleri): | |
| self.spam_kelimeleri = spam_kelimeleri | |
| def spam_mi(self, mesaj): | |
| mesaj_metni = mesaj.get('text') | |
| if mesaj_metni: | |
| for kelime in self.spam_kelimeleri: |
First, make sure you have Node.js installed on your machine. You can download it from here: https://nodejs.org/en/
Next, create a new directory for your bot and navigate to it in your terminal.
Initialize a new Node.js project by running the following command in your terminal:
npm init -y
| // for send function to select input | |
| function dispatch(target, eventType, char) { | |
| var evt = document.createEvent("TextEvent"); | |
| evt.initTextEvent (eventType, true, true, window, char, 0, "en-US"); | |
| target.focus(); | |
| target.dispatchEvent(evt); | |
| } | |
| // enters input and clicks button | |
| function send(msg){ |
| // for send function to select input | |
| function dispatch(target, eventType, char) { | |
| var evt = document.createEvent("TextEvent"); | |
| evt.initTextEvent (eventType, true, true, window, char, 0, "en-US"); | |
| target.focus(); | |
| target.dispatchEvent(evt); | |
| } | |
| // enters input and clicks button | |
| function send(msg){ |
| -- ts3.printMessageToCurrentTab("1") | |
| require("ts3defs") | |
| -- ts3.printMessageToCurrentTab("2") | |
| require("ts3errors") | |
| ts3.printMessageToCurrentTab("3") | |
| local SCRIPT = "LUA Channel creator" | |
| local SCRIPTSHORT = "CC" | |
| local VERSION = "0.5" | |
| local AUTHOR = "B1uscr34m" |
| #!/bin/bash | |
| # | |
| # chkconfig: 2345 98 8 | |
| # description: start/stop/status the Teamspeak3 server | |
| # On Ubuntu: | |
| # - copy to `/etc/init.d/teamspeak3` | |
| # - `sudo chmod +x /etc/init.d/teamspeak3` | |
| # - `update-rc.d teamspeak3 defaults |