Skip to content

Instantly share code, notes, and snippets.

View rezzzza's full-sized avatar
👽
Communicating with Aliens

Reza Hamouleh rezzzza

👽
Communicating with Aliens
View GitHub Profile

Golang Roadmap

It is a roadmap to learn go lang language and its toolses.

Items to Learn

Go Platform

Database

Architecture

  • Software Design
@rezzzza
rezzzza / java_roadmap.md
Last active September 16, 2023 03:03
Java roadmap
@rezzzza
rezzzza / python_roadmap.md
Last active August 22, 2021 14:02
developer roadmap for python

Roadmap for Python Back-end development

Learning Topics

Software development topics a developer should know.

General Topics

  • python priciples
  • django
    • dependency injection
  • dependency management
'''
python3 -m venv env
source ./env/bin/activate
pip3 install setuptools bs4 lxml requests
python3 sanjesh.py
'''
from lxml import html
from time import sleep
from os import system
export default function createClientApi(
axios,
apiBaseURL,
websiteBaseUrl,
userBaseUrl
) {
return {
ax: axios,
apiBaseURL,
userBaseUrl,
@rezzzza
rezzzza / API.md
Created November 20, 2018 23:54 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@rezzzza
rezzzza / rspec-sovan.rb
Last active August 22, 2021 13:55
Rspec and Savon2: writing test for SOAP Api
require "spec_helper"
# require the helper module
require "savon/mock/spec_helper"
describe AuthenticationService do
# include the helper module
include Savon::SpecHelper
# set Savon in and out of mock mode
@rezzzza
rezzzza / ruby-valiables.rb
Last active November 20, 2018 13:45
Ruby variables
# booleans
true_boolean = true
# string
an_string = "test string"
# symbol
a_symbol = :my_symbol
# float