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": "I’m a highly motivated and experienced Software Engineer with 6+ years of experience, I am eager to bring my passion, technical expertise, and attention to detail to a dynamic team. I am seeking a challenging opportunity in an organization that recognizes the value of my skills and provides opportunities for growth and professional development. My goal is to make a positive impact and drive success for the team and the company.",
"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"