Skip to content

Instantly share code, notes, and snippets.

View sakibian's full-sized avatar
🌐
Working from home

Syed Bakibillah Sakib sakibian

🌐
Working from home
View GitHub Profile
@sakibian
sakibian / webdev_online_resources.md
Created July 24, 2018 09:22 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@sakibian
sakibian / gist:aeb6dedaaa27123863fcd6709502defd
Created September 1, 2018 06:09 — forked from magikcypress/gist:4761526
Liste des Framework CSS

Petite liste non exhaustive des Framework CSS bien pratique pour gagner du temps dans l'intégration de son site web.

unsemantic

Successor to 960.gs

Unsemantic is a fluid grid system that is the successor to the 960 Grid System. It works in a similar way, but instead of being a set number of columns, it's entirely based on percentages.

http://unsemantic.com/

@sakibian
sakibian / frontendDevlopmentBookmarks.md
Created September 1, 2018 06:11 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@sakibian
sakibian / Web Development tools
Created September 1, 2018 06:15 — forked from wilfriedE/Web Development tools
Cool tools for web dev projects
http://cssdb.co/ | Popular CSS Libraries
http://www.slidesjs.com/ | Simple for Slideshow
http://gridpak.com/ | CSS Grid
http://nick-jonas.github.io/windows/ | Fullscreen display
http://manos.malihu.gr/jquery-custom-content-scroller/ | Scrollbar
http://dfcb.github.io/BigVideo.js/ | Video Background
https://developers.google.com/youtube/youtube_player_demo | Customize Embed youtube player
http://fortawesome.github.io/Font-Awesome/ | Cool ICONS (works well with css)
http://aozora.github.io/bootmetro/index.html | Bootstrap Metro Style
http://designmodo.com/flat/ | Flat UI (Bootstrap Metro Style really..)
@sakibian
sakibian / learning_resources.md
Created September 1, 2018 06:32 — forked from nathansmith/web-design-development-learning-resources.md
Resources for learning web design & front-end development
@sakibian
sakibian / papers.md
Created January 29, 2022 06:09 — forked from dominictarr/papers.md
Distributed Systems Papers

(dominic: this list of papers was originally recommended to me by Brain Noguchi @bnoguchi, and was a great start to understanding distributed systems)

Here's a selection of papers that I think you would find helpful and interesting:

Time, Clocks, and the Ordering of Events in a Distributed System

The seminal paper about event ordering and concurrency. The important result is that events in a distributed system define a partially ordered set. The connection to what we're working on is fundamental, as this defines how to detect concurrent updates. Moreover, the chosen algorithm to turn the partially ordered set into a totally ordered set defines the conflict resolution algorithm.

http://research.microsoft.com/en-us/um/people/lamport/pubs/time-clocks.pdf

Fundamentals.
Python.
Object Oriented Programming.
Algorithms
Web Development
Personal Project
Getting A Job
-- Choice to make --
--------------------

To Build a Cordova App

For Android

On Windows

  1. Android Studio - which will include the Android SDK Android Studio Download
  2. JDK - Java Developer Kit JDK Download
  3. Node - which will include NPM Node download
  4. Set up your Environmental Variables

Windows Env variables

  1. ANDROID_SDK_ROOT - location of your android SDK folder
  2. ANDROID_HOME - location of your android SDK folder
  3. JAVA_HOME - Location of your JDK folder
  4. PATH - Locations where programs could be located

PATH Should Include

  • %ANDROID_SDK_ROOT%\emulator
  • %ANDROID_SDK_ROOT%\tools
  • %ANDROID_SDK_ROOT%\tools\bin
@sakibian
sakibian / cleanup-docker.md
Created January 22, 2023 04:26 — forked from F21/cleanup-docker.md
Commands to clean up docker

Remove dangling images

docker images -qf dangling=true | xargs docker rmi

Remove dangling volumes

docker volume ls -qf dangling=true | xargs -r docker volume rm