Skip to content

Instantly share code, notes, and snippets.

View Qasemm's full-sized avatar
🤑

Qasem mohammd Qasemm

🤑
View GitHub Profile
@Qasemm
Qasemm / js_linked_list.js
Created August 14, 2021 22:31 — forked from bradtraversy/js_linked_list.js
JS Linked List Class
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {
@Qasemm
Qasemm / agency-website-poc.markdown
Created October 19, 2019 10:56
Agency website POC

Agency website POC

A concept that was rejected by the client. Serves as a demo only and not to be put into production. Not responsive as just a POC

No likey. No lighty

A Pen by Jamie Coulter on CodePen.

License.

@Qasemm
Qasemm / index.haml
Created October 19, 2019 10:34
Solar System Explorer in CSS only
%h1.logo
Solar explorer
%span in only CSS
%input.planet9{:type => 'radio', :id => 'pluto', :name => 'planet'}
%label.pluto.menu{:for => 'pluto'}
.preview
.info
%h2
.pip
Pluto
@Qasemm
Qasemm / glitchy-loading-indicator.markdown
Created October 19, 2019 10:32
Glitchy Loading Indicator