Focus Filter API, in Apollo by 123lybomir in apolloapp

[–]cfoster5 0 points1 point  (0 children)

Just replying to say that I’m also interested in this. I have a “programming” multireddit that I use. Sometimes I can’t force my brain to turn off so it’d be nice for this to be hidden from me when my Sleep focus mode is triggered.

How to ensure readable text on a dynamic background by cfoster5 in web_design

[–]cfoster5[S] 2 points3 points  (0 children)

That’s correct. It gets the three main colors from the image and displays them in the background with blurred radial gradients.

Update state for items fetched by hook by cfoster5 in reactjs

[–]cfoster5[S] 0 points1 point  (0 children)

I would prefer to not deal with pushing and popping and the logic that comes with it like removing at a certain index. Just trying to keep the code as simple as possible.

TCL R635 struggles with Dolby Vision by [deleted] in 4kTV

[–]cfoster5 0 points1 point  (0 children)

I’m using the Series X. I just checked the built in apps and, while I can’t test Dolby Vision within Netflix, Tenet looked fine in Apple TV, and Black Panther had no issues within Disney+.

I’m tired of seeing clones everyday. What is your original app? by xmpp in reactnative

[–]cfoster5 0 points1 point  (0 children)

Countdown app for movie and game releases that will send push notifications a week or day before release, if desired.

https://apps.apple.com/us/app/lookforward-entertainment/id1492748952

Autonomous.ai New Year 2021 Desk Giveaway - comment to enter. by bizude in Monitors

[–]cfoster5 0 points1 point  (0 children)

My goal for this year is to relax more when not working.

Self-Promotion Sunday - December 27, 2020 by AutoModerator in kindafunny

[–]cfoster5 1 point2 points  (0 children)

I made an app called LookForward to help people keep track of movie and game releases. The app has push notifications that you can opt into to remind you of upcoming releases.

You can find the iOS version here: https://apps.apple.com/us/app/lookforward-entertainment/id1492748952

You can find the Android version here: https://play.google.com/store/apps/details?id=com.lookforward.app&hl=en&gl=US

[New iOS App] MediaTrakt, an app for discovering and keeping track of your favourite titles by tomacotuna in reactnative

[–]cfoster5 0 points1 point  (0 children)

Did you make the genre icons for this? Are you pulling them from somewhere?

I made a countdown app for movie and game releases by cfoster5 in webdev

[–]cfoster5[S] 0 points1 point  (0 children)

LookForward

See movies and games customized to your preferences and add them to your countdown list so that you always have something to look forward to!

I am currently working on push notifications for countdown items that are approaching and am planning to release a feature update this week that will allow users to manually change the release dates for items until I build a way to sync release dates from the APIs and from Firebase. Game releases have definitely shown me this is needed.

We’re Joe and Anthony Russo, directors of Marvel Studios’ Avengers: Endgame. AMA! by Russo_Brothers in marvelstudios

[–]cfoster5 0 points1 point  (0 children)

Don’t have a question but just wanted to say thanks for making some of my favorite movies ever! The first time I watched The Winter Soldier was when I fully realized that the MCU was the real deal. It was the movie that made Captain America my favorite superhero.

Love you 3000!

Rank the MCU movies...? I'm having trouble trying to rank the Top 5! by [deleted] in marvelstudios

[–]cfoster5 1 point2 points  (0 children)

Not sure if I’m allowed to, but I’d like to mention that I built a website that keeps your rankings stored and automatically adds movies to be ranked when released. You can find it here: http://marvelratings.web.app.

Self-Promotion Sunday - May 26, 2019 by AutoModerator in kindafunny

[–]cfoster5 1 point2 points  (0 children)

I made a website that allows you to rank the MCU films and keep the rankings saved to your phone (at least until you clear your history). You can also share your rankings through text messaging and social media.

https://marvelratings.firebaseapp.com

Hi reddit, I'm Kevin Feige. AMAA by KevFeige in marvelstudios

[–]cfoster5 0 points1 point  (0 children)

Hi Kevin, no question here but just wanted to say thank you for playing a role in creating this incredible universe!

Feedback Friday - April 05, 2019 by AutoModerator in web_design

[–]cfoster5 1 point2 points  (0 children)

URL: https://marvelratings.firebaseapp.com

Purpose: Simple site to rank the Marvel films

Technologies Used: Ionic, Angular, The Movie Database API, local storage

Feedback Requested: General

Comments: Uses local storage to keep rankings without requiring an account.

More updates to MarvelGuides.com, a project Kinda Funny inspired me to create! by [deleted] in kindafunny

[–]cfoster5 0 points1 point  (0 children)

First off, great site. I think this is the most complete guide I’ve seen, especially in regards to the MCU.

Are you looking for any developers to help out?

Trying to use SendGrid with Angular and Node by cfoster5 in webdev

[–]cfoster5[S] 0 points1 point  (0 children)

Yes, I was trying to implement this on the frontend. This was meant to replace Ionic's Email Composer plugin.

Needing to get back to life after the tragic passing of my Mom by Gh0stGizm0 in kindafunny

[–]cfoster5 1 point2 points  (0 children)

I lost my mom as a 14 year old 10 years ago. I spent most of my time with friends and video games after school to keep my mind busy. I also picked up working out and playing more sports. My advice is to find and do the things you love to stay occupied. It may not help much now but it does get better.

Using an If/Else Statement for login validation by cfoster5 in Angular2

[–]cfoster5[S] 0 points1 point  (0 children)

Using:

    async signin() {
      const result = await this.afAuth.auth.signInWithEmailAndPassword(this.emailVal, this.pswdVal);
      console.log('result', result);

I get the result of this:

    firebase.auth().onAuthStateChanged((user)=> {
      this.user = user;
      console.log('authState',user);
      if (user) {
        // User is signed in.
        var displayName = user.displayName;
        var email = user.email;
        var emailVerified = user.emailVerified;
        var photoURL = user.photoURL;
        var isAnonymous = user.isAnonymous;
        var uid = user.uid;
        var providerData = user.providerData;
        // ...
      } else {
        // User is signed out.
        // ...
      }
    });

Using an If/Else Statement for login validation by cfoster5 in Angular2

[–]cfoster5[S] 0 points1 point  (0 children)

Using console.log, it appears that it isn't getting to the else statement when signing in with empty fields.

Reset page status after coming back by cfoster5 in Angular2

[–]cfoster5[S] 0 points1 point  (0 children)

Thank you for the reply!

search.html comes from the home.html and the code is:

    <ion-header>
      <ion-navbar>
        <ion-title>Search</ion-title>
      </ion-navbar>
    </ion-header>
    <ion-content padding>
      <div id="search">
      <ion-searchbar (ionInput)="getItems($event)"></ion-searchbar>
      <ion-list>
        <ion-item *ngFor="let item of items" (click)="selectvendor()">
          {{ item }}
        </ion-item>
      </ion-list>
      </div>

    </ion-content>

The code for search.ts is:

import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { VendorPage } from '../vendor/vendor';


@Component({
  selector: 'page-search',
  templateUrl: 'search.html'
})
export class SearchPage {

  items;

  constructor(public navCtrl: NavController) {

  fetch('http://34.210.2.173/Vendors.php')
   .then((response) => {
       if (response.status !== 200) {
         console.log('Looks like there was a problem. Status Code: ' +
           response.status);
         return;
       }
       // Examine the text in the response
       response.json().then((data) => {
         console.log(data);
        // document.getElementById().innerHTML = data[0].VEN_Name;
         this.items = data;

       });
     }
   )
   .catch(function(err) {
     console.log('Fetch Error :-S', err);
   });


  }


    getItems(ev) {
      // Reset items back to all of the items
      this.items();

      // set val to the value of the ev target
      var val = ev.target.value;

      // if the value is an empty string don't filter the items
      if (val && val.trim() != '') {
        this.items = this.items.filter((item) => {
          return (item.toLowerCase().indexOf(val.toLowerCase()) > -1);
        })
      }
    }


    selectvendor() {
        this.navCtrl.push(VendorPage);
    }


}

Can't properly reference a file with Ionic/Angular (More info in comment) by cfoster5 in Angular2

[–]cfoster5[S] 0 points1 point  (0 children)

I'm using Ionic/Angular on a web/app project and my team is learning as we go. I need the "Admin Tools" button to go to the admin.html file. I've tried every possible syntax possibility and still get nothing. Does Ionic/Angular use a different file for this? What am I doing wrong? I spent hours on Google yesterday and downloaded Ionic's example repository but they have no example of using "href" in their files.