Quantcast
Channel: User FoxInFlame - Stack Overflow
Browsing latest articles
Browse All 35 View Live

Comment by FoxInFlame on Two Feeds combined into one

Let us continue this discussion in chat.

View Article



Comment by FoxInFlame on is automatically replace with

Can you post what it appears when you view the code?

View Article

Comment by FoxInFlame on jQuery-HTML: Display Two multiple feeds into one

Now It returns "Entry is not a function." at the line with the Concat() function. It also doesn't echo the item to the console, yet.

View Article

Comment by FoxInFlame on Resize image in PHP

Changing the default crop value to true, and resizing the image at http://wallpapercave.com/wp/wc1701171.jpg to 400x128 (banner) created a black image; I can't figure out why it's doing that though.

View Article

Comment by FoxInFlame on Resizing Image in PHP creates Black Image

@HailHydra 5.4.17. I pass the URL in all cases. The url is working, I think it's just the math. Try changing the values to resize in the fiddle to 500x500 and click run. It kind-of works there.

View Article


Comment by FoxInFlame on Resizing Image in PHP creates Black Image

Not what I expected (It's supposed to be the same ratio - just cropped on the bottom to make it thinner; it looks stretched using abs()). EDIT I changed line 9 to $width =...

View Article

Comment by FoxInFlame on Remotly logging into Managebac

This doesn't really work anymore. Do you know of any workaround?

View Article

Comment by FoxInFlame on str_get_html is not loading a valid html string

Amazing! I had searched hours and thought I was out of options!

View Article


Comment by FoxInFlame on Transparent status bar with expo and react navigation

Can I ask how you managed to get a transparent background in the first place?

View Article


Comment by FoxInFlame on Google Cloud SDK installation failed

Hi, I just stumbled across the same error. It worked when I checked to install the Bundled python. I also have a local Python 3.7 install so I didn't want to clutter things up, so this is unfortunate.

View Article

Javascript Password Verification window.location.replace

I have a site that I want to make a JavaScript login form.Not like a perfect username & password login, But I want to build a password verification login. I want the user to redirect to...

View Article

Answer by FoxInFlame for MSSQL - group the time between start/end columns by...

If you mean getting the time between the two "Downtime"s, you can get the values with PHP using MYSQL connection, and calculate the difference, and then delete the two rows, and replace it with a new...

View Article

Answer by FoxInFlame for How do I keep the rotation of a player when...

You can use the Yaw, and the Pitch the player is looking at. The yaw is the rotation on the y-axis, and when you look straight North it is set to 0. The pitch is the up-down-axis, and when you look...

View Article


Answer by FoxInFlame for how to Load Text file into HTML, inside tag?

You can use PHP to load files from the user's computer. Here is an example.form.html<form action="upload.php" method="post" enctype="multipart/form-data"> Select image to upload:<input...

View Article

Answer by FoxInFlame for cannot create navigation menu with HTML/CSS and jQuery

I had a look at your code on the website.You have not set the position value.Position changes where it is going to display, and by default, it is set to relative. By changing it to absolute, the...

View Article


Answer by FoxInFlame for Only require textfield when radio is selected. ZF2

You can use the JavaScript library jQuery to do this.$(document).ready(function() { $("#Radiobuttons").click(function() { if($(this).attr('id') == "Other") { //IF THE ID IS "OTHER" $("#foo").show(); }...

View Article

Answer by FoxInFlame for Selecting just the middle section of an image with CSS

Try this.This is using "clip-path" CSS value. This was mentioned in @Sam Jacob's post.<style>.clip-me { position: absolute; clip: rect(110px, 160px, 170px, 60px); /* values describe a top/left...

View Article


Answer by FoxInFlame for Splitting a .txt file into an array in Javascript

You can use the JavaScript API called FileReader.You can search for it in Google.It can read a file using only JS.You can then usevar lines = content.split("\n");To separate the content by a new line.

View Article

PHP/Cronjob Mail Function [duplicate]

I have a website on the web, and I want to use CronJob, to send newsletters every Monday.Now, I'm using PHP to do this, and I'm stuck.I have a mail() function, that sends mail, to every address stated...

View Article

Translating Minecraft Color Codes into HTML

Recently, I was trying to convert Minecraft MOTD into Plain HTML. A Minecraft MOTD is basic text, with Minecraft Color Codes to represent color changes.Example: "§d§lThe Nexus§8: §6§oO_O §a§l[MUTATION...

View Article

PHP doesn't execute Login Form MySQL

Recently, I was making a login and signup page, where a mail gets sent if you sign up to confirm your account. I used MySQL for the account list, and have a 'confirm' column with 0 (unconfirmed) or 1...

View Article


Image may be NSFW.
Clik here to view.

MySQL replaces my PHP input data

So, I've been trying to create a Signup/Login process using PHP and MySQL. I created a Signup form, and a handling page. Then I tred it out, set the email as a@a.com and password as MyPassword. I then...

View Article


Show Feed in two columns in HTML

So I have a blog post feed. I want the feed to appear in my homepage, in two columns.-----------------------Recent | 4th Recent2nd Recent | 5th Recent3rd Recent | 6th Recent-----------------------I am...

View Article

Answer by FoxInFlame for Minecraft Color Formatting

Recently I was creating a website for a Minecraft Server, and I ran into the same problem as you. Because I couldn't find a easy solution, I made myself a simple JS library.It is not the one you...

View Article

Space doesn't show on Minecraft Color Codes [closed]

So I built this small JavaScript library on Github.https://github.com/FoxInFlame/MinecraftColorCodesNow, it works flawlessly. It translates Minecraft MOTDs into HTML codes, so that it can display it on...

View Article


Answer by FoxInFlame for upload image as file from URL

Try this.<form action="test.php" method="POST"><input type="text" name="fileURL" placeholder="URL to image"><input type="submit" name="upload" value="Upload files"/></form>Here...

View Article

Two Feeds combined into one

So, I have a Materialize CSS based website. Materialize CSS is a CSS library, available here, link.Now, I managed to display my Blog feed into two columns, going down the first row, then the second row...

View Article

jQuery-HTML: Display Two multiple feeds into one

So, I was trying to merge two feeds, and display it in two columns sorting by time, starting as the newest from the top left corner, and the oldest at the bottom right corner. To be precise, this is...

View Article

Answer by FoxInFlame for How to stop 2 buttons from opening the same div tag...

There can only be one of each ID in the entire DOM. You have an element with the id of "reply". Since the database is looping through all of the comments, there will be multiple elements with the id of...

View Article



Getting Minecraft Images

I am trying to make something, where, if you input your minecraft username, you get your profile icon.I found this website Minotar, where you could get icons by the url. So, I tried making a JavaScript...

View Article

Answer by FoxInFlame for Tracking user activity with Chrome extension

Try Content Scripts.Include the script in every page by using * in the manifest, and then use the content script to send the tab url (window.location or something) to the background page.

View Article

Answer by FoxInFlame for discord.ext.commands.errors.CommandInvokeError:...

It looks like the reason parameter is only supported on Discord.py v1.0. The entire library has been rewritten, and that's essentially the newest version.Unfortunately, the syntax has changed a lot...

View Article

Answer by FoxInFlame for Correct LFTP command to upload only updated files

Codeship builds the code first before deployment.This means that the code in Codeship's temporary server is newer than anything else in your pipeline, even though the code itself may not have...

View Article


Detecting Chrome OS with Javascript

I want to detect Chrome OS with Javascript, and I'm using navigator.userAgent for this. Now, I'm running Chrome OS, and my navigator userAgent is Mozilla/5.0 (X11; CrOS armv7l 6680.78.0)...

View Article

Image may be NSFW.
Clik here to view.

Answer by FoxInFlame for Can I edit two files then make one commit using...

The new and better approach is to use the GitHub integrated online VSCode editor.Press . (period) on your keyboard when viewing your repository. This launches an in-browser VSCode instance (on...

View Article
Browsing latest articles
Browse All 35 View Live




Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>
<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596344.js" async> </script>