This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------------------*/ | |
.modal-card { | |
position: fixed; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); | |
background-color:#fff; | |
padding:.9em; | |
font-family: 'Open Sans', sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C++11 Excersises to help further understanding of modern C++ | |
############################################################ | |
Mastering std::*_pointers (All types of new pointers) | |
rvalue move semantics | |
C++14 semantics like auto type deduction and auto lamdas | |
######################################################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Example{ | |
class MyClass{ | |
public: | |
void ReadStuff() const; | |
int CalcStuff() const; | |
int AddStuff(); | |
private: | |
int _number; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct MyClass{ | |
pub fn my_func(); | |
pub fn my_other_func(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TheHackOps - 9:30AM - 5:30PM Mon/Fri (Often online in the evenings) AEST |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Basic stuff for our Xorg window | |
extern crate gl; | |
extern crate glutin; | |
extern crate libc; | |
use std::error::Error; | |
use std::io::prelude::*; | |
use std::fs::File; | |
use std::path::Path; | |
struct Vec3D{ | |
X:f32, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Basic stuff for our Xorg window | |
extern crate gl; | |
extern crate glutin; | |
extern crate libc; | |
use std::str::CharRange; | |
use std::error::Error; | |
use std::io::prelude::*; | |
use std::fs::File; | |
use std::path::Path; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyClass{ | |
protected $_someMember; | |
//Factory Method | |
public static function MyClass::New(){ | |
return new MyClass(); | |
} | |
public function Example(){ | |
$clojure = function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bool GPMPP::GPMSessionManager::Login(QString email, QString password) | |
{ | |
QNetworkRequest GPMRequestor; | |
GPMRequestor.setHeader(QNetworkRequest::ContentTypeHeader,"application/x-www-form-urlencoded"); | |
//Service URL for Google Play | |
QUrl SLAUrl("https://accounts.google.com/ServiceLoginAuth"); | |
QUrlQuery GetParams; | |
//Some weird service query params |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait MyInterface { | |
fn say_something(&self); | |
} | |
impl MyInterface for Hello{ | |
fn say_something(&self) { | |
println!("Hello World"); | |
} | |
} |