Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iexNote
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| #!/bin/bash | |
| # Configuration de base: datestamp e.g. YYYYMMDD | |
| DATE=$(date +"%Y%m%d") | |
| # Dossier où sauvegarder les backups (créez le d'abord!) | |
| BACKUP_DIR="/backup/mysql" |
Sometimes you have a branch checked out locally that someone else owns and they do a force push. Perhaps it's during a review when they have pushed all the needed fixups and got them approved. So now they squash and force-push the branch. It's time for you to take a new look at the updated commits, so you checkout the branch and try to update it.
$ git checkout some-topic-branch
$ git pull| <?php | |
| // Font Awesome v. 4.6. | |
| function jt_get_font_icons() { | |
| return array( | |
| 'fa-glass' => 'f000', | |
| 'fa-music' => 'f001', | |
| 'fa-search' => 'f002', | |
| 'fa-envelope-o' => 'f003', |
| <?php | |
| /** | |
| * Output Post Format icons | |
| * | |
| * Outputs an icon for each post format. Set up to use Fontawesome, | |
| * but can be used with anything, or you can just use CSS. | |
| * | |
| * @return string | |
| */ | |
| function post_format_icon() { |
| #!/usr/bin/env bash | |
| # Wayback machine downloader | |
| #TODO: Remove redundancy (download only newest files in given time period - not all of them and then write over them) | |
| ############################ | |
| clear | |
| #Enter domain without http:// and www. | |
| domain="google.com" | |
| #Set matchType to "prefix" if you have multiple subdomains, or "exact" if you want only one page | |
| matchType="domain" |
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress @salcode | |
| # ver 20180808 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.githubusercontent.com/salcode/b515f520d3f8207ecd04/raw/.gitignore | |
| # to download this file | |
| # | |
| # By default all files are ignored. You'll need to whitelist | |
| # any mu-plugins, plugins, or themes you want to include in the repo. |
| <?php | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Sharing Laravel's session and checking authentication | |
| |-------------------------------------------------------------------------- | |
| | | |
| | Use the following code in any CMS (WordPress, Joomla, etc), filemanager (CKFinder, | |
| | KCFinder, simogeos's Filemanager, etc), or any other non-Laravel project to boot into | |
| | the Laravel framework, with session support, and check if the user is authenticated. |