I hereby claim:
- I am t3hami on github.
- I am tehami (https://keybase.io/tehami) on keybase.
- I have a public key whose fingerprint is 7B07 504A CECC 393A D77D 525C 6CCD C54D B29B 4E9C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Link to these links: https://git.io/vKSVZ
Module 1:
jenkins -jar jenkins.war
docker run -d \
--restart unless-stopped \
--name jenkins \
import re | |
f = open('helloworld.c','r') | |
operators = { | |
'=': 'Assignment Operator', | |
'+': 'Additon Operator', | |
'-' : 'Substraction Operator', | |
'/' : 'Division Operator', | |
'*': 'Multiplication Operator', |
from os.path import join, dirname | |
from watson_developer_cloud import SpeechToTextV1 | |
service = SpeechToTextV1( | |
url = 'https://stream.watsonplatform.net/speech-to-text/api', | |
iam_apikey = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXX') | |
models = service.list_models().get_result() | |
model = service.get_model('en-US_BroadbandModel').get_result() |
import tweepy, json | |
consumer_key = 'XXXXXXXXXXXXXXX' | |
consumer_secret = 'XXXXXXXXXXXXXXX' | |
access_token = 'XXXXXXXXXXXXXXX' | |
access_token_secret = 'XXXXXXXXXXXXXXX' | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) | |
api = tweepy.API(auth, wait_on_rate_limit = True) |
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int a[] = {1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31}; | |
int b[] = {2, 3, 6, 7, 10, 11, 14, 15, 18, 19, 22, 23, 26, 27, 30, 31}; | |
int c[] = {4, 5, 6, 7, 12, 13, 14, 15, 20, 21, 22, 23, 28, 29, 30, 31}; | |
int d[] = {8, 9, 10, 11, 12, 13, 14, 15, 24, 25, 26, 27, 28, 29, 30, 31}; | |
int e[] = {16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31}; | |
def is_prime(num): | |
'''Cheking remainder from 2 to half of the value(Or floor).''' | |
for n in range(2, num // 2): | |
if num % n is 0: | |
return False | |
return True |