Skip to content

Instantly share code, notes, and snippets.

<!-- Replace `http` requests with `https` -->
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<!-- Set CSP, if not provided, the browser also uses the standard same-origin policy -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; img-src https://*; child-src 'none';"
/>

Card Beam Animation

An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨

A Pen by Carla Archuleta on CodePen.

License.

Card Beam Animation

An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨

A Pen by Carla Archuleta on CodePen.

License.

Card Beam Animation

An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨

A Pen by Carla Archuleta on CodePen.

License.

Card Beam Animation

An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨

A Pen by Carla Archuleta on CodePen.

License.

<!-- Replace `http` requests with `https` -->
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<!-- Set CSP, if not provided, the browser also uses the standard same-origin policy -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; img-src https://*; child-src 'none';"
/>
@dtelaroli
dtelaroli / changes
Created June 19, 2018 19:36
Java configuration to solve error "The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption"
jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
jdk.tls.disabledAlgorithms=SSLv3, RC4, DH keySize < 768
https://stackoverflow.com/questions/14149545/java-security-cert-certificateexception-certificates-does-not-conform-to-algori#
@turbo
turbo / std.md
Last active November 18, 2025 09:17
Git Commit Message Standard

Merged from https://github.com/joelparkerhenderson/git_commit_message and https://chris.beams.io/posts/git-commit/

General Rules

  • Commit messages must have a subject line and may have body copy. These must be separated by a blank line.
  • The subject line must not exceed 50 characters
  • The subject line should be capitalized and must not end in a period
  • The subject line must be written in imperative mood (Fix, not Fixed / Fixes etc.)
  • The body copy must be wrapped at 72 columns
  • The body copy must only contain explanations as to what and why, never how. The latter belongs in documentation and implementation.
@aslakknutsen
aslakknutsen / ArquillianSuiteExtension.java
Last active November 21, 2025 21:04
Brute Force Arquillian Suite
package org.jboss.arquillian.extension.suite;
import java.util.concurrent.Callable;
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor;
import org.jboss.arquillian.container.spi.Container;
import org.jboss.arquillian.container.spi.ContainerRegistry;
import org.jboss.arquillian.container.spi.client.container.DeployableContainer;
import org.jboss.arquillian.container.spi.client.deployment.Deployment;
import org.jboss.arquillian.container.spi.client.deployment.DeploymentScenario;