Search results

  1. heema92

    My SaaS scaling knowledge + Money / Your Development skills

    Hey, are you still looking for someone? Is your dev stack fixed or flexible?
  2. heema92

    Dfinity - Internet Computer [ICP]

    Its half the ath...
  3. heema92

    Dfinity - Internet Computer [ICP]

    Has anyone actually read the developer docs? Def not a shitcoin, I mean they created a whole programming language...shitcoins do the bare min. However, their premise, decentralized cloud computing, to me is weak. How many companies are complaining about AWS? Put simply this is an over...
  4. heema92

    Filtering a list of URLs

    const filtered = []; for (const url of urls.split('/n')) { If(url.split('.').pop().split('/').length >= 2) { void filtered.push(url); } } // split url at last tld (capture subdomains) // then split path with /. If url has path the array length should be at least 2
  5. heema92

    Filtering a list of URLs

    const urls = URLS GO HERE const filtered = []; for (const url of urls.split('/n')) { url.includes('category') && void filtered.push(url); } void console.log(filtered);
  6. heema92

    [Get] Use This Coupon Code to Get Free 40 Connect on Upwork

    Thanks, it worked. Now to actually land a contract....
  7. heema92

    [GOLD METHOD] How I made $700+ in 12 hours with ClickBank + Reddit and how you can do it too!

    I don't recommend spamming clickbank links unless you have a way to hide your hop link. I spammed clickbank before until someone found and reported my affiliate name, multiple times.
  8. heema92

    java script execute code on every 10th vistor

    I created a gist for you: https://gist.github.com/c0d3r111/96baee9ba1692b601bfb61187684af1e You'll need to run the script behind a nginx reverse proxy Deps: npm i -g pm2 npm i metrohash Run: pm2 start counter.server.js Simply copy the counter.client.js code to your app (script return 1 if...
  9. heema92

    Trying to scrape amazon

    Boom 5 minutes with NodeJS, time to switch: const osmosis = require('osmosis'); const header = { "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", "accept-encoding": "br;q=1.0, gzip;q=0.8, *;q=0.1", "accept-language"...
  10. heema92

    Best programming language for the web

    Web JavaScript + NodeJS, nothing else is needed. Make sure you determine if MySQL is necessary for your project. I love key/value DB's like LMDB.
  11. heema92

    [PHP] resetting a variable at 12am

    if( $date->format( 'H') == 0 && $date->format( 'i') == 0) { # Reset your variable here } Source: https://stackoverflow.com/questions/14507564/tell-is-phps-datetime-is-midnight
  12. heema92

    I've been meditating for years and I ain't got shit to show for it.

    Sounds like you're still thinking too much. The fact that you've identified a particular stream of thoughts as demons and seem to be resisting your natural impulses validates this. Do you think a "real yogi" is free from the emotions: anger, lust, greed, etc.? How can an empty mind be at peace...
  13. heema92

    Instagram API and May update

    Most of these Instagram bots are using the private API found here: https://github.com/mgp25/Instagram-API or some iteration of this repo. As long as the Instagram app exists, these private api's will function to some extent. Here's the NodeJS version...
  14. heema92

    Yahoo Gemini Problems :/

    A little more info is needed about your ads if you want actionable advice. However when I ran ads on Gemini, my ads would get flagged if I changed something on the destination page. Are you doing this? Their bot captures a screenshot of your lander among other things.
  15. heema92

    [AMA] Growing 100's of Instagram Accounts

    How are you broke right now with all those accounts running?
  16. heema92

    Need help on Domain name

    Try cryptoajeet.com ;)
  17. heema92

    Web browser help

    Are you using C#? What browser are you trying to use? You'll have to programmatically pass in the browser settings containing proxy information.
  18. heema92

    Permanently Closed Marketplace Sales Thread

    Please pm me a sample.
  19. heema92

    Why you shouldn't use any app generators/creators for non coders?

    Would you recommend using phonegap to compile html/css/js creations?
  20. heema92

    Fb ads and google adsense arbitrage help

    Simple: - Make sure ads are placed in optimal positions, max 2 above fold - Make sure content is good enough to pass google spot checks, content quality requirement scales as you generate more revenue - Make sure your average user session > (30 - 60 seconds) - Mobile friendly and fast...
Back
Top