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
<?php | |
/* | |
* Your external libraries wouild go here | |
*/ | |
namespace SapiaTek\SapiaCMS; | |
use Illuminate\Support\ServiceProvider; | |
class MyClass extends AnotherClass{ | |
public $memberVar = 1; |
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
*-display | |
description: VGA compatible controller | |
product: Tahiti XT [Radeon HD 7970/8970 OEM / R9 280X] | |
vendor: Advanced Micro Devices, Inc. [AMD/ATI] | |
physical id: 0 | |
bus info: pci@0000:01:00.0 | |
version: 00 | |
width: 64 bits | |
clock: 33MHz | |
capabilities: pm pciexpress msi vga_controller bus_master cap_list rom |
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
amdgpu 2703360 0 | |
chash 16384 1 amdgpu | |
i2c_algo_bit 16384 2 amdgpu,radeon | |
ttm 106496 2 amdgpu,radeon | |
drm_kms_helper 167936 2 amdgpu,radeon | |
drm 401408 18 amdgpu,radeon,ttm,drm_kms_helper |
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
for x in ips{ | |
match x { | |
V4 => println!("{:?}",V4), | |
_ => println!("none") | |
} | |
} | |
Vec: |
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
cargo:warning=src/c_helpers.c: In function ‘rust_SSL_clone’: | |
cargo:warning=src/c_helpers.c:4:5: warning: implicit declaration of function ‘CRYPTO_add’ [-Wimplicit-function-declaration] | |
cargo:warning= CRYPTO_add(&ssl->references, 1, CRYPTO_LOCK_SSL); | |
cargo:warning= ^~~~~~~~~~ | |
cargo:warning=src/c_helpers.c:4:20: error: dereferencing pointer to incomplete type ‘SSL {aka struct ssl_st}’ | |
cargo:warning= CRYPTO_add(&ssl->references, 1, CRYPTO_LOCK_SSL); | |
cargo:warning= ^~ | |
cargo:warning=src/c_helpers.c:4:37: error: ‘CRYPTO_LOCK_SSL’ undeclared (first use in this function) | |
cargo:warning= CRYPTO_add(&ssl->references, 1, CRYPTO_LOCK_SSL); | |
cargo:warning= ^~~~~~~~~~~~~~~ |
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
Hi David, | |
I came across your profile online and wanted to reach out about Development | |
Opportunities here at Groupon. The company is growing, and we're always | |
looking for folks with solid skills that can make positive contribution to | |
our continued success. Any chance you'd be open to a quick conversation | |
about opportunities, or for any possible networking potential? If so, let me | |
know when you're free and we can set up a time to chat. Also, if you are | |
interested, it would be great if you could forward a current resume over | |
that I can take a look at. I look forward to hearing back from you! Please | |
let me know if you have any questions. |
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
cat file.csv | awk -F$'\t' '{ printf "INSERT INTO country_details VALUES (\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27,\x27%s\x27);",$1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19;print ""}' > final.sql |
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
public class DebugScreen extends AppCompatActivity implements GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener { | |
private GoogleApiClient googleApiClient; | |
private LocationRequest locationRequest; | |
private FusedLocationProviderApi fusedLocationProviderApi = LocationServices.FusedLocationApi; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); |
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
"devDependencies":{ | |
"babel-core": "^6.17.0", | |
"babel-loader": "^6.2.5", | |
"babel-preset-es2015": "^6.16.0", | |
"css-loader": "^0.25.0", | |
"extract-text-webpack-plugin": "^1.0.1", | |
"node-sass": "^3.10.1", | |
"sass-loader": "^4.0.2", | |
"style-loader": "^0.13.1", | |
"webpack": "^1.13.2" |
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
#include "display.h" | |
#include <iostream> | |
#include <string> | |
#include "glmathtoolkit.h" | |
Display::Display() | |
{ | |
} | |
void Display::createWindow(int width, int height, std::__cxx11::string windowTitle, int openGLMinVersion, int openGLMaxVersion, bool resizeable) | |
{ |
NewerOlder