Skip to content

Instantly share code, notes, and snippets.

View Bfaschat's full-sized avatar
🎯
Focusing

Ningmua Bruno Bfaschat

🎯
Focusing
View GitHub Profile
@Bfaschat
Bfaschat / APIClient.txt
Created May 21, 2023 20:52
class APIClient
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
package com.sendbird.desk.android;
import android.os.Build.VERSION;
import com.sendbird.android.SendBirdException;
import com.sendbird.android.shadow.com.google.gson.Gson;
@Bfaschat
Bfaschat / index.html
Created May 2, 2023 00:17
WhatsApp Inspired Bootstrap Chat UI Direct Messaging App
<div class="container">
<div class="row no-gutters">
<div class="col-md-4 border-right">
<div class="settings-tray">
<img class="profile-image" src="https://www.clarity-enhanced.net/wp-content/uploads/2020/06/filip.jpg" alt="Profile img">
<span class="settings-tray--right">
<i class="material-icons">cached</i>
<i class="material-icons">message</i>
<i class="material-icons">menu</i>
</span>
@Bfaschat
Bfaschat / .htaccess
Created August 24, 2017 16:19
.htaccess file for wordpress
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
@Bfaschat
Bfaschat / 500 error wp-config.php
Created August 24, 2017 16:10
Fix the 500 Internal Server Error
define('WP_MEMORY_LIMIT', '64M');