Skip to content

Instantly share code, notes, and snippets.

View tolumide-ng's full-sized avatar

Tolumide Shopein tolumide-ng

  • Berlin, Germany
  • 23:18 (UTC +02:00)
View GitHub Profile
@nlucero
nlucero / widget-layout.test.js
Created May 16, 2018 13:58
Jest doMock example
import React from 'react';
import { mount } from 'enzyme';
let WidgetLayout;
/* eslint-disable react/display-name, react/prop-types */
beforeEach(() => {
jest.resetModules();
});
@greyscaled
greyscaled / README.md
Last active February 21, 2025 08:33
Sequelize + Express + Migrations + Seed Starter
PostgreSQL Type PostgreSQL Size Description Range Diesel Type Rust Type
Nullable Types nullable Nullable``
@505aaron
505aaron / App.test.js
Last active July 21, 2020 08:15
createPortal Mock for react-test-renderer
jest.mock('react-dom');
import React from 'react';
import { createPortal } from 'react-dom';
import renderer from 'react-test-renderer';
import ShallowRenderer from 'react-test-renderer/shallow';
import ReactDOM from 'react-dom';
class Drop extends React.Component {
constructor(props) {
@kestein
kestein / Private_Crates.md
Last active September 7, 2024 17:59
Linking to a private repo in Cargo.toml

Under the dependencies section, put

<crate name>={git="ssh://[email protected]/<organization>/<reponame>.git"}

It is pretty similar to a github repo's ssh cloning link, however the : is replaced with a / and ssh:// is prepended to the URL.

[email protected]:my-organization/my-repo.git vs ssh://[email protected]/my-organization/my-repo.git

The SSH URL needs to be used because Cargo is currently unable to handle the authentication prompt that comes up when an HTTPS link is used.
Make sure that the matches the crate name in the target repo's Cargo.toml. The repo name will not override what is in the Cargo.toml if it is a different value.

@tomysmile
tomysmile / mac-setup-redis.md
Last active April 1, 2025 08:44
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@lopspower
lopspower / README.md
Last active April 6, 2025 13:42
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@anthonyclays
anthonyclays / perfect_squares.rs
Created September 14, 2015 08:37
Fast perfect square test in Rust
fn isqrt(n: usize) -> usize {
n == 0 && return n;
let mut s = (n as f64).sqrt() as usize;
s = (s + n / s) >> 1;
if s * s > n { s - 1 } else { s }
}
fn perfect_sqrt(n: usize) -> isize {
match n & 0xf {
0 | 1 | 4 | 9 => {
@danieliser
danieliser / es5.js
Last active March 9, 2025 13:45
Convert Hex Color to rgba with opacity
/**
* ECMA2015
*/
function convertHex(hexCode, opacity = 1){
var hex = hexCode.replace('#', '');
if (hex.length === 3) {
hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2];
}
@kevin-smets
kevin-smets / iterm2-solarized.md
Last active April 4, 2025 20:57
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k