Skip to content

Instantly share code, notes, and snippets.

View Offirmo's full-sized avatar
⚔️
Coding a RPG… (as a hobby)

Offirmo Offirmo

⚔️
Coding a RPG… (as a hobby)
View GitHub Profile
@Offirmo
Offirmo / index.html
Last active October 23, 2017 06:32
[file imports in HTML] #html #JavaScript #css #browser
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/alertifyjs/alertify.js/v1.0.11/dist/css/alertify.css" />
<script src="https://cdn.rawgit.com/alertifyjs/alertify.js/v1.0.11/src/js/alertify.js"></script>
<script src="https://unpkg.com/[email protected]/floating.js"></script>
<script>
console.log('hello world')
</script>
<noscript>Your browser either does not support JavaScript, or has it turned off.</noscript>
@Offirmo
Offirmo / gist:4713286
Last active January 22, 2025 03:24
[C++ -- misc] #c++
#include <iostream>
#include <functional>
class MemFunTest
{
public:
bool test0()
{
std::cout << "[" << this <<"-test0 called]" << std::endl;
return false;