This file contains 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
#!/bin/bash | |
### CREDS | |
email='user_email' | |
org_name='org' | |
echo 'from shortcut.com workspace web portal, go to inspect -> storage -> enter the following cookies' | |
echo 'Enter ajs_anonymous_id cookie: ' | |
read ajs_anonymous_id | |
echo 'Enter ajs_user_id' | |
read ajs_user_id |
This file contains 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
import logging | |
import pytz | |
import datetime | |
from telegram import Update | |
from telegram.ext import Updater, CommandHandler, CallbackContext | |
API_KEY = "API TOKEN" | |
logging.basicConfig( | |
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <signal.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/ipc.h> | |
#include <sys/shm.h> | |
/*the tree is made to demonstrate some time lapse after the user inputs the action. | |
After the user input the process will TAKE SOMETIME to send the signal through shared memory route*/ |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <signal.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/ipc.h> | |
#include <sys/shm.h> | |
/*If he causes any problem, do a `kill -9 <Neighbour ID> on a separate terminal.*/ |
NewerOlder