Skip to content

Instantly share code, notes, and snippets.

View jarbitlira's full-sized avatar
🖥️

Jarbit Lira jarbitlira

🖥️
View GitHub Profile
@jarbitlira
jarbitlira / Activate Office 2019 for macOS VoL.md
Created September 10, 2021 16:10 — 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

@jarbitlira
jarbitlira / react-native-maps-enable-google-maps-instructions.md
Created July 17, 2018 04:32 — forked from heron2014/react-native-maps-enable-google-maps-instructions.md
Visual instructions how to enable Google Maps on IOS using react-native-maps

Visual instructions how to enable Google Maps on IOS using react-native-maps

UPDATE: Following instructions are now a year old. I have recently managed to upgrade react-native-maps from 0.17 to the latest version 0.21 with react-native 0.51 - if you want to follow my instruction scroll down to the end this doc! Hope that will work for you too!

This is for my personal use, things might not be correctly explained here. For the official docs please check https://github.com/airbnb/react-native-maps

Steps from scratch:

1.react-native init GoogleMapPlayground

Name: Flash
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc=
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676
Thank you!
@jarbitlira
jarbitlira / ImportCsv.php
Last active August 9, 2017 05:25
ImportJob
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
We can't make this file beautiful and searchable because it's too large.
email,fname,lname,address,city,state,zip,phone,ip,datetime,source,gender,birth,deliveryverified,verify_date,smtpresponse
FHLEFXAOFOQABAVBFAUPGYYEVFPIMPQSTMTEOVMV@mailinator.com,Sean,Chavez,611 E 16th Ave,Denver,CO,80203,3035221406,174.51.120.18,5/7/2015 21:23,acaiberrydetox.com,,,yes,5/8/2015,250 2.0.0 37qZ1l05e1S8GBq047qZox Message received: 2013195033.JJAD14725.mta52
QIHEOOYQCRJWTTJGJGJZIRBPYXGOGRNKOZYYRTQG@mailinator.com,Sean,Chavez,611 E 16th Ave,Denver,CO,80203,3035221406,174.51.120.18,5/7/2015 21:23,acaiberrydetox.com,,,yes,5/8/2015,250 2.0.0 37qZ1l05e1S8GBq047qZox Message received: 2013195033.JJAD14725.mta52
HYGUGTZADNVIMNNZGSGQIKJKEZITULPPPDSJKHJE@mailinator.com,Sean,Chavez,611 E 16th Ave,Denver,CO,80203,3035221406,174.51.120.18,5/7/2015 21:23,acaiberrydetox.com,,,yes,5/8/2015,250 2.0.0 37qZ1l05e1S8GBq047qZox Message received: 2013195033.JJAD14725.mta52
YFLTWEYAMZSYMAYWOVQGLFGRXFSJUDOYICRCYPOZ@mailinator.com,Sean,Chavez,611 E 16th Ave,Denver,CO,80203,3035221406,174.51.120.18,5/7/2015 21:23,acaiberryde
@jarbitlira
jarbitlira / mixin.less
Created April 7, 2016 23:55
generate class helpers
.generateClasses(@propertyName, @prefixName) {
.properties(@counter, @to, @step: 10) when (@counter < @to) {
.properties((@counter + @step), @to, @step );
.@{prefixName}-@{counter} {
@{propertyName}: unit(@counter, px);
}
.@{prefixName}-top-@{counter} {
@{propertyName}-top: unit(@counter, px);
@jarbitlira
jarbitlira / controllerTwice.js
Last active April 8, 2016 15:43
Controller initialized twice using ngComponentRouter
(function () {
'use strict';
angular
.module('moduleName')
.controller('controllerName', controllerName);
controllerName.$inject = [];
function controllerName() {
var $ctrl = this;
@jarbitlira
jarbitlira / $once.js
Last active September 19, 2016 18:56 — forked from marlun78/$once.js
Angular $rootScope.Scope.$once
/**
* Angular $rootScope.Scope.$once
* Copyright (c) 2014 marlun78
* MIT License, https://gist.github.com/marlun78/bd0800cf5e8053ba9f83
*/
$provide.decorator('$rootScope', function ($delegate) {
var Scope = Object.create($delegate).constructor;
Scope.prototype.$once = function (name, listener) {
var deregister = this.$on(name, function () {
deregister();