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
GNU GENERAL PUBLIC LICENSE | |
Version 3, 29 June 2007 | |
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> | |
Everyone is permitted to copy and distribute verbatim copies | |
of this license document, but changing it is not allowed. | |
Preamble | |
The GNU General Public License is a free, copyleft license for |
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
$ git commit -m "Something terribly misguided" # (1) | |
$ git reset HEAD~ # (2) | |
<< edit files as necessary >> # (3) | |
$ git add ... # (4) | |
$ git commit -c ORIG_HEAD |
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 | |
\DB::connection()->enableQueryLog(); | |
//Eloquent or db query. | |
$query = \DB::getQueryLog(); | |
$lastQuery = end($query); | |
\Log::info($lastQuery); |
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 | |
namespace Modules\Integrations\Salesloft\Services; | |
use Jose\Component\Core\AlgorithmManager; | |
use Jose\Component\Encryption\Algorithm\KeyEncryption\A256GCMKW; | |
use Jose\Component\Encryption\Algorithm\ContentEncryption\A256GCM; | |
use Jose\Component\Encryption\Compression\CompressionMethodManager; | |
use Jose\Component\Encryption\Compression\Deflate; | |
use Jose\Component\Encryption\JWEDecrypter; |
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
<%@page contentType="text/html" pageEncoding="UTF-8"%> | |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<%@ page import="blackboard.platform.session.*, | |
java.util.*, | |
java.net.*, | |
blackboard.data.user.*, | |
blackboard.persist.*, | |
blackboard.data.course.*, | |
blackboard.persist.course.*, | |
javax.crypto.spec.SecretKeySpec, |