Skip to content

Instantly share code, notes, and snippets.

View yacosta738's full-sized avatar

Yuniel Acosta Pérez yacosta738

View GitHub Profile
@yacosta738
yacosta738 / gist:f763ab638122ca4b2ee79944c0a2b217
Created March 15, 2024 10:21 — forked from rxaviers/gist:7360908
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:
@SharpSeeEr
SharpSeeEr / FormattingExample.ts
Created August 10, 2020 16:59
Nested Promise and Formatting Example
class Formatting {
private getCountriesQuery(skip: number, limit: number, order: string, searchName: string) {
const Continentscountriescities_Country = Parse.Object.extend('Continentscountriescities_Country');
const query = new Parse.Query(Continentscountriescities_Country);
query.limit(limit); // limit to at most 10 results
query.skip(skip); // skip the first 10 results
const orders: string[] = order.split(',');
orders.map(o => {
if (o.startsWith('-')) {
@rxaviers
rxaviers / gist:7360908
Last active May 18, 2024 09:55
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: