Skip to content

Instantly share code, notes, and snippets.

View jupihes's full-sized avatar

Hesam jupihes

View GitHub Profile

4G CELL ID logic

ECI = eNodeBID * $$2^{28-22}$$ + CellID

5G CELL ID logic

  • NCI(NR Cell Identity)gNB ID + CI
    • Length: 36bit
  • Range: 0 to 68719476735

Installing Python Packages

pip vs. conda

# Install a pip package in the current Jupyter kernel

MobaXterm session export data extraction

Below regex pattern help to extract needful information from Portable export of SSH sessions. Although not complete, can help data extraction from export file.

SSH_pattern = r'(?<Servername>[\w. ()]+)=#(?<Type>\d+)#0%(?<IP>[\w.]+)%(?<port>\d+)%%%([\w.-]+)%([\d-]+)%%%([\w.-]+)%%\d%([\w.-]+)%([\w

Local local linux repo

Modification in .repo files as

  • Comment mirrorlist line
  • Uncomment baseurl line and add local address

Check https://iranrepo.ir/

Question

image

Answer

import pandas as pd
@jupihes
jupihes / 4C.svg
Last active September 17, 2022 19:01
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import datetime
import jdatetime
from pandas import to_datetime
#def p_to_g(d, splitter='/'):
# '''
# Persian date instance to Gregorian date instance converstion assuming input date format to be format="%Y/%m/%d"
# and provide output in same format.
# '''
# d = d.split(splitter)
@jupihes
jupihes / gist-reveal.it-slides.html
Created March 21, 2020 08:59 — forked from ryanj/gist-reveal.it-slides.html
Gist-powered Revealjs slideshow presentations http://gist-reveal.it
<section data-background-transition='zoom' data-transition='concave' data-background='http://ryanjarvinen.com/presentations/shared/img/broadcast_reveal_dark.png' data-state='blackout'>
<h2>Gist-Powered</h2>
<h1>Reveal.js</h1>
<h2>Slideshow Presentations</h2>
<br/>
<h1 class='fragment grow'><a style='color:deepskyblue;' href='http://gist-reveal.it'>gist-reveal.it</a></h1>
</section>
<section data-background-transition='zoom' data-transition='linear' id='try-it'>
<h2>Try it out!</h2>
<p>Create your own deck by forking a copy of <a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>this github gist</a>: <br /><a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>https://gist.github.com/ryanj/af84d40e58c5c2a908dd</a></p>
@jupihes
jupihes / SFileUploader.py
Created March 12, 2020 16:40 — forked from Keshava11/SFileUploader.py
Simple python script to upload file to Dropbox.
#!python3.5
# Prerequisites :
# 1.SetUp dropbox sdk to be able to use Dropbox Api's
# $ sudo pip install dropbox
# By default python dropbox sdk is based upon the python 3.5
#
# 2. Create an App on dropbox console (https://www.dropbox.com/developers/apps) which will be used and validated to do
# the file upload and restore using dropbox api. Mostly you need an access token to connect to Dropbox before actual file/folder operations.
#