Skip to content

Instantly share code, notes, and snippets.

View shakkurcwb's full-sized avatar
🎯
Focusing

Marlon Ferreira shakkurcwb

🎯
Focusing
View GitHub Profile
@shakkurcwb
shakkurcwb / predator_game.html
Created August 26, 2023 03:43
Predator vs Prey Game
<!DOCTYPE html>
<html>
<head>
<title>Predator and Prey</title>
<style>
</style>
</head>
@shakkurcwb
shakkurcwb / casino.html
Last active June 2, 2023 02:27
Casino Game (Javascript)
<!DOCTYPE html>
<html>
<head>
<title>Casino Game</title>
<meta charset="UTF-8">
<style>
canvas {
border: 1px solid #ccc;
}
</style>
@shakkurcwb
shakkurcwb / game.css
Last active June 2, 2023 02:26
Definitely not a Snake Game (JavaScript)
body {
text-align: center;
}
#game-screen {
border: 1px solid #000000;
}
.title {
font-size: 20px;
<?php
namespace App\Services;
use Illuminate\Support\Arr;
abstract class Service
{
/** Parameters */
private $parameters = [];
@shakkurcwb
shakkurcwb / ActionController.php
Created October 15, 2019 15:09
Controller + ActionController for Laravel
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Validator;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
/**
* This script add new buttons into LinkedIn post page.
* (open all comments, read all comments, like all comments).
*
* 1 - Open a Post Page on LinkedIn (URL like "/feed/update/");
* 2 - Copy and Paste this code into your Browser Console Tab, then press ENTER.
*
* Be polite when using it. I am not responsible for bad usage!
*
* @author ma.ferreira93@gmail.com
/**
* Script for Auto-Reply Comments on LinkedIn.
* 1 - Open a Post Page on LinkedIn (URL like "/feed/update/");
* 2 - Copy and Paste this code into your Browser Console Tab, then press ENTER.
* Be polite when using it. I am not responsible for bad usage!
* CHANGESLOG:
* 1 - Added auto-liker comment.
* @author ma.ferreira93@gmail.com
*/
@shakkurcwb
shakkurcwb / script.js
Last active June 22, 2019 23:23
LinkedIn - Script To Collect Emails From Comment List
/**
* Script to collect emails from comment list on LinkedIn
*
* 1 - Load the post page (must not be the activity page, but the post page itself - URL like this: /feed/update/*);
* 2 - Copy and Paste this code into your Browser Console Tab (press F12 or CTRL+SHIFT+I then click on Console tab. Just paste the code.);
* 3 - Press enter to execute the script, and wait until it is finished (could took some time, depends on your clicksLimit param below);
* 4 - After the end of execution, a list of all the emails will be presented. Just copy the list and do whatever you want with this.
*
* This script uses all the tools already in-use by LinkedIn page. There is no external tools in use.
* If youre not confident about how it works, read the code. Its very simple and clear.