Skip to content

Instantly share code, notes, and snippets.

View erickacevedor's full-sized avatar
💭
learning!

Erick Acevedo erickacevedor

💭
learning!
  • Ideaware CO
  • Barranquilla Colombia
  • 21:16 (UTC -05:00)
  • X @erickacevedor
View GitHub Profile
@erickacevedor
erickacevedor / setup.md
Created October 21, 2022 05:55 — forked from akella/setup.md
My Setup
@erickacevedor
erickacevedor / delete-slack-messages.js
Created May 22, 2022 18:30 — forked from firatkucuk/delete-slack-messages.js
Deletes slack public/private channel messages, private chat messages and channel thread replies.
#!/usr/bin/env node
// Channel ID is on the the browser URL.: https://mycompany.slack.com/messages/MYCHANNELID/
// Pass it as a parameter: node ./delete-slack-messages.js CHANNEL_ID
// CONFIGURATION #######################################################################################################
const token = 'SLACK TOKEN';
// Legacy tokens are no more supported.
// Please create an app or use an existing Slack App
@erickacevedor
erickacevedor / gotham.md
Created December 5, 2021 18:53 — forked from mfd/ gotham.md
Gotham font
https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css

<link rel="https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css">

@erickacevedor
erickacevedor / Activate Office 2019 for macOS VoL.md
Created April 25, 2021 17:29 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@erickacevedor
erickacevedor / More-links.txt
Created December 29, 2019 18:23 — forked from dreamsparkx/More-links.txt
Install Apache, PHP, MySQL and phpMyAdmin on Mac OS X
@erickacevedor
erickacevedor / structureddata-wp.php
Created October 24, 2019 14:25
Structured data markup ready for WordPress single file.
<?php $autorname; ?>
<?php while (have_posts()) : the_post(); ?>
<?php
$authorfname = get_the_author_meta('first_name');
$authorlname = get_the_author_meta('last_name');
$autorname = "{$authorfname} {$authorlname}";
?>
<?php endwhile; ?>
@erickacevedor
erickacevedor / elementhighlight.css
Created October 22, 2019 13:37
Page elements highlight
// * { background-color: rgba(255,0,0,.2); }
// * * { background-color: rgba(0,255,0,.2); }
// * * * { background-color: rgba(0,0,255,.2); }
// * * * * { background-color: rgba(255,0,255,.2); }
// * * * * * { background-color: rgba(0,255,255,.2); }
// * * * * * * { background-color: rgba(255,255,0,.2); }
// * * * * * * * { background-color: rgba(255,0,0,.2); }
// * * * * * * * * { background-color: rgba(0,255,0,.2); }
// * * * * * * * * * { background-color: rgba(0,0,255,.2); }
coenraads.bracket-pair-colorizer
shan.code-settings-sync
yummygum.city-lights-theme
bmewburn.vscode-intelephense-client
sibiraj-s.vscode-scss-formatter
jpoissonnier.vscode-styled-components
{
"window.zoomLevel": 0,
"editor.fontSize": 13,
"workbench.colorTheme": "Night Owl",
"editor.autoClosingBrackets": "always",
"editor.snippetSuggestions": "bottom",
"html.format.indentInnerHtml": true,
"editor.cursorBlinking": "smooth",
"editor.quickSuggestionsDelay": 0,
"explorer.confirmDelete": false,