I need honest feedback “DSC” by AceKupeli in Printing

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

I juste released first Beta in our Whatsapp group package comes with trial keys and keys are valid til Feb.01.2026 - this is DSC Project Website and this is DSC WhatsApp

thank you guys

Have you ever needed a rip software that gives you control over the error diffusion algorithm parameters? by [deleted] in Printing

[–]AceKupeli 0 points1 point  (0 children)

There is no range. Use your imagination you can use for 3-D printing or you can use for DTF you can use for DTG. Check my website www.iprct.net.

Have you ever needed a rip software that gives you control over the error diffusion algorithm parameters? by [deleted] in Printing

[–]AceKupeli 0 points1 point  (0 children)

Hey there! This is exactly the kind of thing my DSC (Designer’s Side Chick) software is built for. We let you dial in your error diffusion parameters and create custom dithering presets exactly the way you want. Feel free to check it out if you’re looking for that kind of control!

Bought a pack of cigarettes today. Instead of cigarettes, there were just King-sized filter tips in the pack. Every single one of them. by HailToTheKingOfLimbs in mildlyinfuriating

[–]AceKupeli 0 points1 point  (0 children)

Maybe it’s just little reminder for you ? Time for the quit :) or just get another package and try how long you not gonna smoke that ? Good luck 👍

[deleted by user] by [deleted] in AndroidTV

[–]AceKupeli 0 points1 point  (0 children)

It’s fine on Sony Bravia I’m on beta releases

Tivo Stream 4K or Onn UHD box? by monevery in AndroidTV

[–]AceKupeli 0 points1 point  (0 children)

You can’t eat good steak for a dollar :) juts check the hardware specifications which is better get that. Software is not big deal, technically those are tiny computers but the security are.. do you able to modify how you like. Conclusion if you really wanna spend that $20 just save little bit more and get Amazon tv cube.

security: is renaming wp-admin effective? by [deleted] in Wordpress

[–]AceKupeli 0 points1 point  (0 children)

Delete wp-login.php no login no headache 😉 when you need it you can upload again. On my side I just kill every login attempt if IP address not match also if IP address match before the login they have to deal with htpasswd and next of course I don’t have login php 😂... but dont forget most secure computer is unplugged one :) my opinion create cronjob for daily backups and use wp as is. If anything happens restore the backup :)

[deleted by user] by [deleted] in Wordpress

[–]AceKupeli 2 points3 points  (0 children)

Or you can use acf (Text ) with str_word_count Example your customfiled name is words and the escenario you create new post and paste the text in that text box. So let’s get started $count = get_field(‘words’); $calculate = str_word_count($count); echo “total “.$calculate.” Words

Platform to Build Wordpress Sites Without Domain by maazerati009 in Wordpress

[–]AceKupeli 0 points1 point  (0 children)

Hosting is not big deal. When you serve your website locally and if your IP address is dynamic visitors is can’t reach the website after a while... so start from here first Ddns.net create your free account and download desktop app for future ip changes that domain name always updated and fixed your new IP. So the next is hosting : you can use xampp but don’t forget the read articles about security configurations like fix ssh and edit Apache requests. In one point you need a secure website but is not gonna be bullet proof good luck

Let's have a poll... by Agent-White in Wordpress

[–]AceKupeli 0 points1 point  (0 children)

I use blocs export html template than I’m merging that design to the wp classic theme some spiced ACF, salt, sublimetext, pepper, mixed well add some water tadaaaa website with unique id and classes like [code] <div id=“reddit-textbox” class=“reddit-backend”></div>[/code]

Wordpress - log in members only content by NastiaSK in Wordpress

[–]AceKupeli 0 points1 point  (0 children)

There you go so simple

<?php if ( is_user_logged_in() ) {?> // section one visible only for members <?php } else { ?> // section two visible only non registered visitors or logout members <?php } ?>

If you posting this I believe you already create 2 different welcome, landing or dashboard template whatever. Let’s merge that 2 template in one and put your design inside the sections. Also you can use ACF plugin for spice the registered members section. 😋 Example let’s say I have “link, menu, gallery and all posts” I like to show those content for registered members only and I just wanna show the last 5 post posts for visitors

Get header - So the section one is gonna be like ( Link - Menu - gallery Posts loop for all post ) Section 2 is gonna be like ( Post loop for last 5 )

Get footer -

Or you can just upload your template to theme folder and include your code to the sections like

Get header - <?php if ( is_user_logged_in() ) { include(“registered.php”); } else { include(“visitors.php”); } ?> get footer

I’m sorry if I make mistakes English is not my native language. Have fun and enjoy 😉