Skip to content

Instantly share code, notes, and snippets.

View bab55z's full-sized avatar

Williem Babalola bab55z

View GitHub Profile
@bab55z
bab55z / gist:b74d073664c11464d4fe2038e48e8fe4
Created March 15, 2023 13:01
Taxi Manager | TOS, PP & SUPPORT
Taxi Manager est une feuille de calcul Google Sheet puissante pour augmentez le rendement de vos véhicules et chauffeurs. Prenez des décisions stratégiques en temps réel et gagnez plus.
CONDITIONS D'UTILISATION
----------
Nous nous réservons le droit de refuser le service à quiconque pour quelque raison que ce soit et à tout moment. Vous comprenez que votre contenu (à l'exclusion des informations de carte de crédit), peut être transféré non chiffré et impliquer (a) des transmissions sur divers réseaux ; et (b) des changements pour se conformer et s'adapter aux exigences techniques des réseaux ou des appareils de connexion. Les informations de carte de crédit sont toujours cryptées lors du transfert sur les réseaux. Vous acceptez de ne pas reproduire, dupliquer, copier, vendre, revendre ou exploiter toute partie du Service, l'utilisation du Service ou l'accès au Service ou tout contact sur le site Web par le biais duquel le Service est fourni, sans notre autorisation écrite expresse. Les titres utilisés dans
@bab55z
bab55z / axios-catch-error.js
Created June 6, 2018 15:38 — forked from fgilio/axios-catch-error.js
Catch request errors with Axios
axios.put(this.apiBaseEndpoint + '/' + id, input)
.then((response) => {
// Success
})
.catch((error) => {
// Error
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
// console.log(error.response.data);
@bab55z
bab55z / NTLMAuthenticator.java
Created August 7, 2017 11:47 — forked from franciscerio/NTLMAuthenticator.java
Sharepoint API for android retrofit
public class NTLMAuthenticator implements Authenticator {
private static final int TYPE_1_FLAGS =
NtlmFlags.NTLMSSP_NEGOTIATE_56 |
NtlmFlags.NTLMSSP_NEGOTIATE_128 |
NtlmFlags.NTLMSSP_NEGOTIATE_NTLM2 |
NtlmFlags.NTLMSSP_NEGOTIATE_ALWAYS_SIGN |
NtlmFlags.NTLMSSP_REQUEST_TARGET;
private String mLogin;
@bab55z
bab55z / introrx.md
Created January 7, 2017 12:33 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@bab55z
bab55z / tmux-cheatsheet.markdown
Created January 3, 2017 13:36 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname