Skip to content

Instantly share code, notes, and snippets.

View lilbro1062000's full-sized avatar

Abdoulaye Camara lilbro1062000

View GitHub Profile

Keybase proof

I hereby claim:

  • I am lilbro1062000 on github.
  • I am abdoulaye (https://keybase.io/abdoulaye) on keybase.
  • I have a public key whose fingerprint is 25B6 4995 4896 6D60 751B FCFE 7F26 9F70 EA1C AB6A

To claim this, I am signing this object:

@lilbro1062000
lilbro1062000 / COnfiguration.h
Created July 10, 2016 18:14
Configuration.h for marlin 6 9 2016
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
@lilbro1062000
lilbro1062000 / gist:929bbf08c184e8a0e0b9
Created March 25, 2016 00:45
my Userscript to clear off some ads stuff on solarmovie
// ==UserScript==
// @name My Fancy New Userscript
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author You
// @match http://watch.solarmovie.ph/link/play/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
module.exports = function (grunt) {
// show elapsed time at the end
require('time-grunt')(grunt);
// load all grunt tasks
require('load-grunt-tasks')(grunt);
//MODIFIED: add require for connect-modewrite
var modRewrite = require('connect-modrewrite');
grunt.initConfig({
/**
* Description:
* removes white space from text. useful for html values that cannot have spaces
* Usage:
* {{some_text | nospace}}
*/
app.filter('nospace', function () {
return function (value) {
return (!value) ? '' : value.replace(/ /g, '');
@lilbro1062000
lilbro1062000 / AngularJSGruntTest.sublime-build
Created April 24, 2014 16:32
Angular JS Grunt tests Karma jasmine
{
"shell_cmd": "karma start",
"working_dir": "${project_path:${folder}}"
}
@lilbro1062000
lilbro1062000 / Jasmine-node-tests.sublime-build
Created April 24, 2014 16:32
jasmine-node build sublime text
{
"shell_cmd": "jasmine-node tests",
"working_dir": "${project_path:${folder}}"
}
#!/bin/bash
BH=$(which bash)
echo "Currently using " + $BH
echo " "
echo "update apt repos..."
echo " "
sudo apt-get update
#!/bin/bash
#
# Author: mrimp
#
# Description:
# Setup script for AOKP Build Enviroment Ubuntu 13.04
#
# Legal Stuff:
#
# This script is free software; you can redistribute it and/or modify it under
@lilbro1062000
lilbro1062000 / phpunit.xml
Created January 4, 2014 01:34
cakephp phpunit.xml
<phpunit>
<filter>
<!-- Exclude directories for coverrage. -->
<blacklist>
<directory suffix=".php">bin</directory>
<directory suffix=".php">cakephp</directory>
<directory suffix=".php">*/Config/Migration</directory>
<directory suffix=".php">*/Config/Schema</directory>
<directory suffix=".php">*/Console/Templates</directory>
<directory suffix=".php">*/Lib</directory>