Skip to content

Instantly share code, notes, and snippets.

View marwein's full-sized avatar
💭
I may be slow to respond.

BOUALLOUS Marwein marwein

💭
I may be slow to respond.
  • Amazon.fr
  • Amiens, France
View GitHub Profile
@marwein
marwein / GVLKs for KMS.txt
Created January 7, 2019 09:33 — forked from CHEF-KOCH/GVLKs for KMS.txt
Microsoft Office 2019 Build 10730.20102 RTM
Source:
https://docs.microsoft.com/en-us/DeployOffice/vlactivation/gvlks
GVLKs for Office 2019
=====================
Office Professional Plus 2019
NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP
Office Standard 2019
@marwein
marwein / Microsoft Office 2019 RTM GVLK Keys
Created January 7, 2019 09:30
Microsoft Office 2019 RTM default #GVLK (Generic Volume License Key)
GVLKs for KMS and Active Directory-based activation of Office 2019 and Office 2016
Applies to: Volume licensed versions of Office 2019 and Office 2016, including Project and Visio
By default, volume licensed versions of Office 2019 and Office 2016 are installed with a Generic Volume License Key (GVLK).
The GVLK enables Office to automatically discover and activate against your KMS host computer or Active Directory infrastructure.
Important
These license keys can't be used to activate your personal copy of Office.
We can make this file beautiful and searchable if this error is corrected: It looks like row 9 should actually have 15 columns, instead of 8. in line 8.
id,login,firstname,lalstname,company,email,gender,language,currency,department,country,size,Race,Hired,Amount
1,kcaldecutt0,Kennedy,Caldecutt,Voolith,kcaldecutt0@forbes.com,Male,Greek,CUP,Finance,CU,M,Bangladeshi,1999,1452.18
2,gwabersich1,Guy,Wabersich,Topicblab,gwabersich1@sina.com.cn,Female,Hungarian,ILS,Consumer Durables,IL,3XL,Osage,1992,2118.54
3,nbichard2,Nial,Bichard,Reallinks,nbichard2@ca.gov,Female,Pashto,CNY,Public Utilities,CN,M,Nicaraguan,2007,1898.16
4,bvernazza3,Boony,Vernazza,Jazzy,bvernazza3@state.gov,Female,Korean,CNY,Consumer Services,CN,3XL,Puerto Rican,2012,1105.15
5,tsallenger4,Tann,Sallenger,Skynoodle,tsallenger4@mac.com,Male,Tamil,ZAR,Consumer Services,ZA,3XL,Fijian,2010,1366.00
6,ptackell5,Phillipp,Tackell,Agivu,ptackell5@domainmarket.com,Female,Japanese,BYR,Energy,BY,XL,Dominican (Dominican Republic),1991,2061.53
7,hstiebler6,Hugibert,Stiebler,Oba,hstiebler6@adobe.com,Female,Swedish,XOF,Health Care,CI,XL,Paraguayan,2007,2881.56
8,jseamen7,Jay,Seamen,Wordtune,jseamen7@tiny.cc,Male,Ben
@marwein
marwein / nginxproxy.md
Created July 5, 2017 07:22 — forked from soheilhy/nginxproxy.md
How to proxy web apps using nginx?

Virtual Hosts on nginx (CSC309)

When hosting our web applications, we often have one public IP address (i.e., an IP address visible to the outside world) using which we want to host multiple web apps. For example, one may wants to host three different web apps respectively for example1.com, example2.com, and example1.com/images on the same machine using a single IP address.

How can we do that? Well, the good news is Internet browsers

@marwein
marwein / node-grunt-sass.md
Created July 31, 2016 00:26 — forked from anotheruiguy/node-grunt-sass.md
Set up Node.js, Grunt and Node-Sass from scratch

Run the following steps inside a clean directory

Not sure if you are in the same boat as I, but I could not find any good resource out there that pulled this all together. So here is a step-by-step tutorial for creating a Node.js app from scratch, adding in Grunt and then Node-Sass. Yeah, try and find good docs on Node-Sass alone :(

Hope this is of help!

Create your Node.js project

  • npm init - create a clean node project
  • NOTE: be sure to add "private": true, to the package.json so that your project is not globally distributed as a npm app
@marwein
marwein / CI_phpStorm.php
Created May 15, 2016 22:03 — forked from topdown/CI_phpStorm.php
Code Completion for CodeIgniter in phpStorm
<?php die('This file is not really here!');
/**
* ------------- DO NOT UPLOAD THIS FILE TO LIVE SERVER ---------------------
*
* Implements code completion for CodeIgniter in phpStorm
* phpStorm indexes all class constructs, so if this file is in the project it will be loaded.
* -------------------------------------------------------------------
* Drop the following file into a CI project in phpStorm
* You can put it in the project root and phpStorm will load it.
@marwein
marwein / Sublime Text 3 Build 3103 License Key - CRACK
Created March 13, 2016 19:49
Sublime Text 3 Build 3103 License Key - CRACK
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
{
"Ariana":
[
{
"delegation": "Ariana Ville",
"localite": "Residence Kortoba",
"cp": "2058"
},
{
"delegation": "Ariana Ville",
@marwein
marwein / sublime-text-3-build-3065-license.md
Created December 23, 2015 11:40
Sublime Text 3 (build 3065+) - VALID License

SublimeText3 Valid License without cracking! Just download/install then use this license.

Notice that it may not work on dev builds, but still works on 3083 build!

----- BEGIN LICENSE -----

Andrew Weber
Single User License
EA7E-855605
813A03DD 5E4AD9E6 6C0EEB94 BC99798F
@marwein
marwein / ajax-form.js
Last active August 29, 2015 14:22 — forked from havvg/ajax-form.js
jQuery(function($) {
$('form[data-async]').live('submit', function(event) {
var $form = $(this);
var $target = $($form.attr('data-target'));
$.ajax({
type: $form.attr('method'),
url: $form.attr('action'),
data: $form.serialize(),