Skip to content

Instantly share code, notes, and snippets.

View CodeArtisT75's full-sized avatar
💭
Coding 😊

Moe Javanbakht CodeArtisT75

💭
Coding 😊
View GitHub Profile
@CodeArtisT75
CodeArtisT75 / convert-postman-to-insomnia.js
Created January 13, 2022 07:57 — forked from wesleyegberto/convert-postman-to-insomnia.js
Script to convert a Postman backupt to Insomnia
/**
* Script to parse a Postman backupt to Insomnia keeping the same structure.
*
* It parses:
* - Folders
* - Requests
* - Environments
*
* Notes: Insomnia doesn't accept vars with dots, if you are using you must replace yours URLs manually (see ENVIRONMENTS_EXPORTS).
*/
@CodeArtisT75
CodeArtisT75 / findnumbergame.py
Created August 25, 2020 05:54
SokanAcademy: Python - find number game
from random import randint
# initiale min and max is 1 - 99
minNum = 1
maxNum = 99
# this while loop will run until the num == YOUR NUMBER
while True:
# generate random number between min and max and print it
num = randint(minNum, maxNum)
print("your number is: " + str(num))
# get the answer from user