Skip to content

Instantly share code, notes, and snippets.

View FONQRI's full-sized avatar
๐Ÿ†
Focusing

Behnam Sabaghi FONQRI

๐Ÿ†
Focusing
View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active May 8, 2025 12:39
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@cgudea
cgudea / geodesy_regex.py
Created August 28, 2014 19:38
regular expressions for verifying common coordinate systems
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
@roachhd
roachhd / README.md
Last active May 6, 2025 14:42
EMOJI cheatsheet ๐Ÿ˜›๐Ÿ˜ณ๐Ÿ˜—๐Ÿ˜“๐Ÿ™‰๐Ÿ˜ธ๐Ÿ™ˆ๐Ÿ™Š๐Ÿ˜ฝ๐Ÿ’€๐Ÿ’ข๐Ÿ’ฅโœจ๐Ÿ’๐Ÿ‘ซ๐Ÿ‘„๐Ÿ‘ƒ๐Ÿ‘€๐Ÿ‘›๐Ÿ‘›๐Ÿ—ผ๐Ÿ”ฎ๐Ÿ”ฎ๐ŸŽ„๐ŸŽ…๐Ÿ‘ป

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โœˆ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: ๐Ÿ˜„

@FONQRI
FONQRI / calculator.py
Last active April 21, 2022 09:35
A python3 calculator in one line
print(eval(input('Please enter your arithmetic expression :' )))
@hoetz
hoetz / crypto-cpp-csharp
Created November 11, 2016 16:53
Encrypt in c++ Qt / decrypt in C#
#include <QCoreApplication>
#include <QString>
#include <Poco/Foundation.h>
#include <Poco/Crypto/Cipher.h>
#include <Poco/Crypto/CipherKey.h>
#include <Poco/Crypto/CipherFactory.h>
#include <openssl/crypto.h>
#include <QDebug>
@FONQRI
FONQRI / CMakeLists.txt
Created December 28, 2017 21:20
this is a cmakeList.txt file that contain all qt modules .
#cmake file version 1.0
#author behnam sabaghi
#update time 29 / 12 / 2017
cmake_minimum_required(VERSION 2.8)
PROJECT(ProjectName)
set(CMAKE_PREFIX_PATH "$ENV{QTDIR}")
@FONQRI
FONQRI / TemplateDesignPattern.cpp
Created December 30, 2017 14:05
template design pattern c++
#include <iostream>
using namespace std;
// Base class
// Template class
class Account {
public:
// Abstract Methods
virtual ~Account();
@FONQRI
FONQRI / define_name_string_with_macro.cpp
Created April 12, 2019 10:33
Define name string with macro and iit it with class name.
#include <boost/type_index.hpp>
#include <iostream>
#define DEFINE_NAME \
std::string name \
{ \
boost::typeindex::type_id<decltype(*this)>().pretty_name() \
};
class Test2
#include "contactsmodel.h"
#ifdef Q_OS_ANDROID
# include <QtAndroid>
# include <QtAndroidExtras>
# include <jni.h>
#endif
QList<ContactsModel::Contact*> ContactsModel::_contacts;