View split_csv.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
split -l 1000 -d FILE_NAME.csv file_ | |
for i in $(find file_*); do mv $i "$i.csv"; done |
View slugify_excel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( | |
SUBSTITUTE( |
View invite_all_friends_event.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var geekdashboard = document.getElementsByClassName('_1pt_ _1pu0'); | |
for(var invite=0; invite<geekdashboard.length;invite++) { | |
geekdashboard[invite].click(); | |
} |
View invite_all_friends_page.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var geekdashboard = document.getElementsByClassName('uiButton _1sm'); | |
for(var invite=0; invite<geekdashboard.length;invite++) { | |
geekdashboard[invite].click(); | |
} |
View sources.list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Name=Firefox | |
Comment=Browse the World Wide Web | |
GenericName=Web Browser | |
X-GNOME-FullName=Firefox Web Browser | |
Exec=/home/USERNAME/firefox/firefox %u | |
Terminal=false | |
X-MultipleArgs=false | |
Type=Application | |
Icon=firefox-esr |
View VM_code.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd "C:\Program Files\Oracle\VirtualBox\" | |
VBoxManage.exe modifyvm "Name of your Virtual Machine" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" | |
VBoxManage setextradata "Name of your Virtual Machine" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1 |
View pragmaSolidity.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//version 1.3 | |
import "browser/SafeMath.sol"; | |
import "browser/DateTime.sol"; | |
contract ERC20 { | |
function totalSupply() public constant returns (uint256); | |
function balanceOf(address _owner) public constant returns (uint); | |
function transfer(address _to, uint _value) public returns (bool); |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* Author: Amar Ilindra | |
* URL: https://www.geekdashboard.com/ | |
* | |
* Add this code in your themes function.php file | |
*/ | |
/* |
View geek.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
echo. | |
echo Determine whether we are on an 32 or 64 bit machine | |
echo. | |
if "%PROCESSOR_ARCHITECTURE%"=="x86" if "%PROCESSOR_ARCHITEW6432%"=="" goto x86 | |
View custom-static-page-template.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Custom Static Page | |
*/ | |
?> | |
<head> | |
<title>Amar Ilindra - Blogger | Entrepreneur | Dog Lover</title> | |
<meta name="description" content="Amar Ilindra is one of the finest blogger from India completed his Computer Science and Engineering. He loves to code under moonlight and pet his dog."/> | |
<meta name="robots" content="noodp"/> | |
<link rel="canonical" href="http://amarilindra.com/" /> |
NewerOlder