benas.github.io benas.github.io

benas.github.io

Mahmoud's blog: Home

Mahmoud Ben Hassine's blog

http://benas.github.io/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BENAS.GITHUB.IO

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

July

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.9 out of 5 with 17 reviews
5 star
7
4 star
5
3 star
3
2 star
0
1 star
2

Hey there! Start your review of benas.github.io

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • benas.github.io

    16x16

  • benas.github.io

    32x32

  • benas.github.io

    64x64

  • benas.github.io

    128x128

  • benas.github.io

    160x160

  • benas.github.io

    192x192

  • benas.github.io

    256x256

CONTACTS AT BENAS.GITHUB.IO

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Mahmoud's blog: Home | benas.github.io Reviews
<META>
DESCRIPTION
Mahmoud Ben Hassine's blog
<META>
KEYWORDS
1 resume
2 projects
3 rss feed
4 github
5 linkedin
6 twitter
7 java
8 chess
9 generalities
10 back to top
CONTENT
Page content here
KEYWORDS ON
PAGE
resume,projects,rss feed,github,linkedin,twitter,java,chess,generalities,back to top
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Mahmoud's blog: Home | benas.github.io Reviews

https://benas.github.io

Mahmoud Ben Hassine's blog

INTERNAL PAGES

benas.github.io benas.github.io
1

Mahmoud's blog: How chess made me a better software engineer

http://benas.github.io/2015/02/20/how-chess-made-me-a-better-software-engineer.html

My random thoughts about software engineering. An aspiring software craftsman journey, By Mahmoud Ben Hassine. How Chess Made Me A Better Software Engineer. 20 February 2015,. Believe it or not, this post is may be the best post I will never write in my life. At this exact point of time where I am writing the current line, I am already excited to share with you how chess made me a better software engineer and a better person in general. Chess improves your memory. This is my favorite one, you will see why.

2

Mahmoud's blog: Using Server Sent Events to create a monitoring dashboard

http://benas.github.io/2014/10/14/using-server-sent-events-to-create-a-monitoring-dashboard.html

My random thoughts about software engineering. An aspiring software craftsman journey, By Mahmoud Ben Hassine. Using Server Sent Events To Create A Monitoring Dashboard. 14 October 2014,. Aka SSE) are part of HTML5 and allow a web page to get updates from a server. It is a one way messaging form server to clients in contrast to Web Sockets where communication is bidirectional. In this post, I will create a monitoring dashboard that shows JVM stats of a running Tomcat server. Off we go! 1 The server side.

3

Mahmoud's blog: Projects

http://benas.github.io/projects.html

My random thoughts about software engineering. An aspiring software craftsman journey, By Mahmoud Ben Hassine. I really hate complex, full-blown, bloated and over-engineered systems. I love small, focused and easy to use micro-frameworks and libraries. I'm for the simplest solution that could possibly work, I like to KISS. Here are some ideas I turned into real projects:. My name is Mahmoud, a passionate software developer. Get in touch on.

4

Mahmoud's blog: Spring Batch vs Easy Batch - a performance comparison

http://benas.github.io/2015/02/15/spring-batch-vs-easy-batch-a-performance-comparison.html

My random thoughts about software engineering. An aspiring software craftsman journey, By Mahmoud Ben Hassine. Spring Batch Vs Easy Batch: A Performance Comparison. 15 February 2015,. Easy Batch, Java. In the previous post. I tried to compare Easy Batch and Spring Batch in terms of features, ease of use and developer productivity. I came up to the conclusion that with no doubt, Spring Batch provides a richer features set and allows you to do much more than Easy Batch does. Getters and setters omitted.

5

Mahmoud's blog: How I reduced my Java batch application code by 80% using Easy Batch

http://benas.github.io/2014/01/21/how-i-reduced-my-java-app-code-by-80-using-easy-batch.html

My random thoughts about software engineering. An aspiring software craftsman journey, By Mahmoud Ben Hassine. How I Reduced My Java App Code By 80% Using Easy Batch. 21 January 2014,. Easy Batch, Java. In this post, I will try to show you how Easy Batch. Can tremendously simplify batch application development by taking care of the boilerplate code you may write yourself. This will make your application more readable, understandable and maintainable. Let’s assume we have a JPA. Unable to convert ". Produ...

UPGRADE TO PREMIUM TO VIEW 9 MORE

TOTAL PAGES IN THIS WEBSITE

14

LINKS TO THIS WEBSITE

codingpedia.org codingpedia.org

Coding Friend Program – CodingpediaOrg

http://www.codingpedia.org/friends

Fork me on GitHub. October 10, 2014. Dear fellow coder,. We believe here, at Codingpedia.org. That technological advancement and efficiency, driven among other things by the humans’ ability to program machines, has a positive impact on human evolution and well-being. We want to contribute to the expansion of this ability by offering a platform for sharing coding knowledge. We invite you to join our efforts and become a. Ready to go to the next step? How can Coding Friends promote Codingpedia.org? You cho...

easybatch.org easybatch.org

Easy Batch • Tutorials index

http://www.easybatch.org//tutorials/index.html

The simple, stupid batch processing framework for Java. Version : 4.1.0. The following tutorials are step-by-step guides on how to setup, configure and run Easy Batch jobs. Tutorials are independent and go from the simplest hello world application to more advanced jobs with parallelism and asynchronous processing. You can find here. The source code of all tutorials as well as other tutorials not presented in this page. The simplest batch application using Easy Batch. CSV to XML job. Share it on Twitter.

easybatch.org easybatch.org

Easy Batch • Architecture

http://www.easybatch.org//documentation/architecture.html

The simple, stupid batch processing framework for Java. Version : 4.1.0. The next figure describes Easy Batch from a bird eye view:. Easy Batch is all about processing a data source in batch mode:. First, you need to configure a job. Then, you run your job. And finally you get an execution report and a log file about the job run. Here are some examples of records as seen by Easy Batch:. Interface is an abstraction of all record types. A record has a header and a payload:. This operating environment is te...

easybatch.org easybatch.org

Easy Batch • User Guide

http://www.easybatch.org//documentation/user-guide.html

The simple, stupid batch processing framework for Java. Version : 4.1.0. Create a batch job. API is the main entry point to configure and create batch jobs:. Job job = new JobBuilder() .named("myJob") .build(); / Or Job job = JobBuilder.aNewJob() .named("myJob") .build();. By default, the job name is "job". Run the batch job. Once you have created a batch job instance, you can run it as follows:. When the job is finished, you get an execution report with several statistics and metrics about the job run.

easybatch.org easybatch.org

Easy Batch • Getting started

http://www.easybatch.org//documentation/getting-started.html

The simple, stupid batch processing framework for Java. Version : 4.1.0. Easy Batch requires a Java 1.7 runtime. To use Easy Batch, you have to add easybatch-core-4.1.0.jar. To your application's classpath. If you use maven, add the following dependency to your project's. Dependency groupId org.easybatch /groupId artifactId easybatch-core /artifactId version 4.1.0 /version /dependency. 3 Quick start archetype. Mvn compile exec:java -Dexec.mainClass=${your.base.package}.App. The source code is under Git.

UPGRADE TO PREMIUM TO VIEW 2 MORE

TOTAL LINKS TO THIS WEBSITE

7

SOCIAL ENGAGEMENT



OTHER SITES

benas-biogas.com benas-biogas.com

BENAS GmbH - Home

2016 BENAS Biogasanlage GmbH Impressum.

benas.com benas.com

Benas Environmental Services | Your Neighborhood Environmental Engineers

HEALTH AND SAFETY, MANAGEMENT/TRAINING. IN-DOOR AIR QUALITY CONSULTING SERVICES. LEAD-BASED PAINT MANAGEMENT SERVICES. Asbestos Abatement Project Management and Air Monitoring. Faq – Asbestos. Faq – Lead. DO YOU OR SOMEONE YOU KNOW HAVE:. Asbestos in their Residential Dwellings, Private building and Structures? Asbestos in their Offices/Buildings or other Occupational Locations/Buildings? Asbestos in their commercial Buildings and Real Estate? Lead-Based Paint in their Office or other Work Locations?

benas.com.cn benas.com.cn

昆山切削液|昆山清洗剂|昆山防锈油-昆山贝纳斯润滑油有限公司

邮箱 Jason tian@benas.com.cn. 网 址 www.benas.com.cn.

benas.com.tr benas.com.tr

Fiber Optik ,Elektrik,Elektronik › Benas Mühendislik

Alt Yapı Çözümleri. Zamanında Teslimat,Uygun Fiyat,Deneyimli Kadro ve Uygun Ödeme Seçenekleri, projeniz büyük yada küçük olsun farketmez.BENAS Makine Parkı ve Ekipmanları ile hizmetinizde Çözümlerimiz. İstanbul: 0212 222 2931. Tekirdağ: 0282 673 6833. Türkiyenin her yerine Hizmet. Ülkemizde genel bilinir geçmişi 20-25 yıla dayanan fiber optik. Fiber Optik Yapısal Kablolama ve Network. Fiber Optik Dikey ve Yatay Kablolama. Fiber Optik Ek Yapımı 4 Core – 288 Core. Optik Dağıtım Çatısı (ODF) Kurulumu. Fiber...

benas.cz benas.cz

Studio BENAS

Vítáme vás v nahrávacím studiu Benas. Podařilo se nám získat na Seči u Chrudimi objekt na nádherném místě. Je to nikým nerušená samota 5 min. od centra města s přírodou a vyhlidkou do kraje 360°. Ihned jsme věděli že tahle oáza klidu bude idealní útočiště pro muzikanty kteří si chtějí při nahravání i odpočinout a odreagovat se.

benas.github.io benas.github.io

Mahmoud's blog: Home

My random thoughts about software engineering. An aspiring software craftsman journey, By Mahmoud Ben Hassine. The Story Behind Java Query Language. 07 December 2016,. Using The Java Api For Websocket To Create A Chat Server. 21 February 2016,. How Chess Made Me A Better Software Engineer. 20 February 2015,. Spring Batch Vs Easy Batch: A Performance Comparison. 15 February 2015,. Easy Batch, Java. You Are Using Version Control Systems The Wrong Way. 09 January 2015,. New Year New Blog! 03 January 2015,.

benas.net benas.net

Documento sin título

Apache/2.2.29 (Unix) mod ssl/2.2.29 OpenSSL/1.0.1e-fips mod bwlimited/1.4 Server at www.benas.net Port 80.

benas01.myqnapcloud.com benas01.myqnapcloud.com

Hello! Welcome to Synology Web Station!

Welcome to Synology Web Station! The Web Station service is enabled. You can now create you own website on Disk Station. Please follow steps below to build, and publish your website online. Log in to the web manager and go to the Privileges Shared Folder page. Assign user privileges for accessing the web shared folder. Create web pages, and) Upload your pages to the web shared folder. Make sure the homepage of your website is named index.php, index.htm, or index.html. How to publish my website?

benas131.deviantart.com benas131.deviantart.com

Benas131 (no.) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Ignore my gallery and journals. Deviant for 4 Years. This deviant's full pageview. Last Visit: 4 weeks ago. Ignore my gallery and journals.

benas1971.deviantart.com benas1971.deviantart.com

benas1971 (Pawel Bieniewski) | DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 10 Years. This deviant's full pageview. Last Visit: 27 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange. You can edit widgets to customize them. The bottom has widgets you can add! Some widgets you can only access when you get Core Membership.

benas40.deviantart.com benas40.deviantart.com

Benas40 - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 4 Years. This deviant's full pageview. Last Visit: 6 weeks ago. This is the place where you can personalize your profile! Window&#4...