Skip to content

Instantly share code, notes, and snippets.

View xrman's full-sized avatar
🏠
Working from home

Estiak Ahamed Arman xrman

🏠
Working from home
View GitHub Profile
@xrman
xrman / txt
Created May 3, 2020 17:36
Autodesk Maya 2020
http://95.216.97.130/igetintopc.com/download.php?url_str=https%3A%2F%2F95.216.97.130%2FiGetintopc.com%2Fdownload.php%3Ffilename%3D_igetintopc.com_Autodesk_Maya_2020_x64.zip%26expires%3D1589131993%26signature%3Dbfc22890ac504c738842eabb69f2db3d&filename=_igetintopc.com_Autodesk_Maya_2020_x64.zip
@echo off
title Activate Microsoft Office 2016 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2016&echo - Microsoft Office Professional Plus 2016&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&ech
@xrman
xrman / gist:4468f545b169969466bceb694d742dad
Created March 12, 2019 21:47
FastStone Capture Full Serial Key
Registration Code
Name : www.xyraclius.com
Serial : OOCRYIMDMDPWRETFPSUZ
@xrman
xrman / Addon.txt
Created January 8, 2019 06:38
Importent Addon for Sublime text and Aton
Importent Addon for Sublime text and Aton
01. Autoprefixer
02. Beautify ***
03. Brackets CSS Class Code hint ***
04. Documents Toolbar ***
06. Emmet ***
07. Interactive Linter ***
08. Indent Guides ***
10. More CSS Code Hints ***
12. Color Highlighter ***
@xrman
xrman / functions.php
Created January 8, 2019 06:00
Woocommerce customization through hook
<?php
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-Woocommerce Customization-=-=-=-=-=-=-=-=-=-=-=
// @customization files: followed by .php
# wc>loop>rating
# wc>loop>price
# wc>loop>add-to-cart
# wc>content-product
# wc>content-single-product
# wc>archive-product
# wc>single-product>add-to-cart>variation-add-to-cart-button
@xrman
xrman / recently-viewed.php
Created January 8, 2019 05:55
Display WooCommerce Recently viewed products Without a Shortcode
<section id="recent">
<h1>Recently Added</h1>
<ul class="row-fluid">
<?php
extract(shortcode_atts(array(
"per_page" => '5'
), $atts));
// Get WooCommerce Global
global $woocommerce;
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
function about_page_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'title' => '',
'bg' => '',
'desc' => '',
$(window).scroll(function(){
if ($(this).scrollTop() > 150) {
$('.topScrl').fadeIn();
} else {
$('.topScrl').fadeOut();
}
});
//Click event to scroll to top
$('.topScrl').click(function(){
@xrman
xrman / Stick Div
Created September 20, 2016 15:04 — forked from delowardev/Stick Div
<!-- html -->
<div class="sticky_anchor"></div>
/* css */
.sticky{
position: fixed;
top: 0;
z-index: 2;
<!-- in html -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only"></span>
<i class="fa fa-navicon"></i>
</button>
</div>
<nav class="main_menu collapse navbar-collapse" id="navbar">
<ul>