Skip to content
View aritzolaba's full-sized avatar

Block or report aritzolaba

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Flatty Flatty Public

    A clean HTML5 responsive theme created using Bootstrap 3.0.

    PHP 31 11

  2. ow-snake-js ow-snake-js Public

    A simple version of the snake game in vanilla Javascript

    JavaScript

  3. wl-css-helpers wl-css-helpers Public

    A tiny SCSS/LESS file to generate a CSS with commonly used instructions, which will help you building the layout and structure of any project. It works great in combination with Bootstrap.

    CSS

  4. Send email using node socket (with t... Send email using node socket (with the node net library)
    1
    let port = 25;
    2
    let host = '127.0.0.1';
    3
    let from = 'user@localmail.com';
    4
    let rcpt = 'user@localmail.com';
    5
    let user = 'dXNlckBsb2NhbG1haWwuY29t'; // 'user@localmail.com' base64 encoded
  5. Validar NIF, CIF y NIE en PHP, actua... Validar NIF, CIF y NIE en PHP, actualizado 2024
    1
    function validateIdent( $ident = '' ) {
    2
    
                  
    3
    		$BASE_REG_EXP = '/((^[A-Z]{1}[0-9]{7}[A-Z0-9]{1}$|^[T]{1}[A-Z0-9]{8}$)|^[0-9]{8}[A-Z]{1}$)/';
    4
    		$CIF_REG_EXP  = '/^[ABCDEFGHJNPQRSUVW]{1}/';
    5
    		$NIF_REG_EXP  = '/(^[0-9]{8}[A-Z]{1}$)/';
  6. Generate WP screenshot using via.pla... Generate WP screenshot using via.placeholder.com through curl
    1
    curl -o "screenshot.jpg" "https://via.placeholder.com/1200x900.jpg/002/fff/?text=A+New+Theme"