Skip to content

Instantly share code, notes, and snippets.

View Zagaz's full-sized avatar
🖖
Live long and prosper.

André Ranulfo Zagaz

🖖
Live long and prosper.
View GitHub Profile
@Zagaz
Zagaz / plugin-name.php
Last active July 28, 2024 22:09
WP-CLI Plugin for Managing Product Access Dates
<?php
/*
* Plugin Name: Remove Early Access
* Description: Remove early access tag from products when public access date is past.
* Version: 1.0.0
* Author: Andre Ranulfo
* Author URI: https://www.linkedin.com/in/andre-ranulfo/
*/
if (!defined('ABSPATH'))
@Zagaz
Zagaz / Fibonacci.cs
Created August 13, 2017 20:21
Fibonacci created by Zagaz - https://repl.it/KFk4/26
using System;
class MainClass {
public static void Main (string[] args) {
int numeroAnterior = 0;
int numeroAtual = 1;
int novoNumero;
int fibonacci;
@Zagaz
Zagaz / Fibonacci.cs
Last active February 20, 2025 21:02
Fibonacci em C# PT-BR - Por Zagaz
using System;
class MainClass {
public static void Main (string[] args) {
//E aí pessoal! Segue um programinha que faz a Sequência Fibonacci.
// Um abraço!!!
int numeroAnterior = 0;
int numeroAtual = 1;
int novoNumero;