- return 100 sheets instead of 50
- fix issue with crisis sheet lists (admin & client)
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
Rayquaza-Mega @ Assault Vest | |
Ability: Air Lock | |
Shiny: Yes | |
EVs: 252 Atk / 4 SpD / 252 Spe | |
Jolly Nature | |
- Air Slash | |
- Aqua Tail | |
- Dragon Ascent | |
- Dragon Tail |
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
let imageBuffer = Buffer.from(body.profilePicture.split(',')[1], 'base64'); | |
console.log(imageBuffer); | |
Jimp.read(imageBuffer, function(err, image) { | |
if (err) { | |
context.done(err, | |
prepareErrorResponse(response, 'Unable to remove EXIF data from profile picture')); | |
} | |
console.log('before transform: ', image); | |
image = image.resize(400, 400).exifRotate((err, exifRotatedData) => { |
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
SELECT `first_name`, `last_name`, `averageRating`, `birthdate`, `created_at`, `gender`, `phone_number`, `profilePicture`, `profilePictureTag`, `status`, `user_type`, `userId`, `username`, `email`, `address` FROM `Agents` AS `Agents` WHERE `Agents`.`user_type` = 'admin' ORDER BY `Agents`.`first_name` ASC LIMIT 0, 10; |
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
// This #include statement was automatically added by the Particle IDE. | |
#include <FastLED.h> | |
FASTLED_USING_NAMESPACE; | |
#define LED_PIN D2 | |
#define CHIPSET NEOPIXEL | |
#define NUM_LEDS 144 | |
#define BRIGHTNESS 255 |
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
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:background="@color/white"> | |
<ImageView | |
android:src="@drawable/launch_screen" | |
android:layout_centerHorizontal="true" | |
android:layout_centerVertical="true" |
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
const aws = require('aws-sdk'); | |
const ses = new aws.SES({ region: 'us-west-2' }); | |
const MY_EMAIL = '[email protected]'; | |
exports.handler = async (event, context, callback) => { | |
console.log('event: ', event); | |
const response = { | |
statusCode: 200, |
Abbreviated flags:
-a
is--armor
for ascii armored output (allows output to be sent via the web, etc.)-r
is--recipient
for specifying the recipient of the message (needs to use the name of an imported key)
This can be used for encrypting messages so only the person with the private key can read them
gpg --import ./path/to/public.key
OlderNewer