Skip to content

Instantly share code, notes, and snippets.

View genuinemoses's full-sized avatar
👨‍💻
Writing and breaking code for humanity, fun and profit!

Moses genuinemoses

👨‍💻
Writing and breaking code for humanity, fun and profit!
View GitHub Profile
@genuinemoses
genuinemoses / license-badges.md
Created June 11, 2018 11:37 — forked from lukas-h/license-badges.md
License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • Badges are made with Shields.io.
  • This badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.  
  • 🇫🇷 Cette liste en français
  • Github has a new autodetection of the LICENSE file, which shows up the license at the repo overview
@genuinemoses
genuinemoses / gist:f4cfa9f47ddfbfc794e2900e8048a74f
Created June 25, 2018 14:28 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@genuinemoses
genuinemoses / singly_Linked_List.c
Last active February 26, 2019 13:21
Singly Linked List - insert_at_beginning() Implementation.
#include <stdio.h>
#include <stdlib.h>
typedef struct Node Node;
struct Node
{
int data;
Node *next;
} *head, *tail;
@genuinemoses
genuinemoses / sublime_key.txt
Created March 22, 2019 05:11 — forked from MuLx10/sublime_key.txt
Sublime text Keys
## Sublime Text 3 Serial key build is 3103
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
B085E65E 2F5F5360 8489D422 FB8FC1AA
@genuinemoses
genuinemoses / activity_main.xml
Created August 11, 2019 04:58
Front-end for GPA_computer - Layout_1
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<GridLayout

Keybase proof

I hereby claim:

  • I am genuinemoses on github.
  • I am themoses (https://keybase.io/themoses) on keybase.
  • I have a public key whose fingerprint is 8E71 C04E F0BC 5C66 939E A1D6 5D56 1A1D D64E E62E

To claim this, I am signing this object:

A Simple and elegant app that reduces your pain in calcuating your GPA.
Have you ever got irritated working around the formulas and calculations for finding
out your GPA. Yes, we did get. So here we bring our simple and new app that reduces your
headache to find your GPA at anytime. With our app the task is made simple and automated.
you just need to enter the credits and grades that produces the final result.
You are free to customize the app according to your needs. You could add as many
semesters and subjects you could.
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import 'package:proseekr/src/models/globals.dart' as globals;
import 'package:proseekr/src/views/job_provider/provider_feed.dart';
import 'package:proseekr/src/views/job_seeker/homepage.dart';
final FirebaseAuth _auth = FirebaseAuth.instance;
class UserLogin extends StatefulWidget {
// UserLogin({Key key, this.title}) : super(key: key);
@genuinemoses
genuinemoses / programming-as-theory-building.md
Created June 2, 2020 00:13 — forked from onlurking/programming-as-theory-building.md
Programming as Theory Building - Peter Naur

Programming as Theory Building

Peter Naur

Peter Naur's classic 1985 essay "Programming as Theory Building" argues that a program is not its source code. A program is a shared mental construct (he uses the word theory) that lives in the minds of the people who work on it. If you lose the people, you lose the program. The code is merely a written representation of the program, and it's lossy, so you can't reconstruct