Skip to content

Instantly share code, notes, and snippets.

{
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Basheer Al-Momani",
"label": "Full-Stack Java Developer",
"picture": "https://i.ibb.co/N9PT35F/20200311-210338-281-29-jpg-rdx19d.jpg",
"summary": "Experienced Software Engineer with over 9 years of hands-on expertise in building reliable, scalable backend systems across diverse industries. Known for delivering high-impact solutions with a strong focus on quality, performance, and user experience. I thrive in collaborative environments that value ownership, innovation, and continuous improvement, and I’m looking to contribute to forward-thinking teams where I can grow while driving meaningful impact.",
"website": "https://rebrand.ly/sllwmpx",
@BMomani
BMomani / CHANGELOG.md
Last active February 5, 2023 11:42 — forked from Integralist/CHANGELOG.md
[CHANGELOG] #changelog

https://keepachangelog.com/

Guiding Principles

  • Changelogs are for humans, not machines.
  • There should be an entry for every single version.
  • The same types of changes should be grouped.
  • Versions and sections should be linkable.
  • The latest version comes first.
  • The release date of each version is displayed.
@BMomani
BMomani / paginationView.html
Last active October 18, 2017 20:00
pagination ui backbone, underscore
<% if(paginationInfo != undefined) { %>
<ul class="pagination">
<% var currentPage = paginationInfo.pageNumber,
lastPage = paginationInfo.totalCount==0?1:Math.ceil(paginationInfo.totalCount/paginationInfo.perPage),
/*pageRange represents pages on both sides of the current page.*/
pageRange = 2;
debugger;
/*values to be used in main loop*/
var rangeStart = currentPage - pageRange;
var rangeEnd = currentPage + pageRange;
@BMomani
BMomani / list_item.xml
Last active February 27, 2016 08:59
list item contain image and tow lerner layout
<?xml version="1.0" encoding="utf-8"?>
<!--
looks like this
________________________________
|image|text 15|
|_____|text__________________7_|
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"