[TIA] Sequential function chart, read step names automatically?

Hi,

is it possible to read the name of the steps in an S7 Graph sequencer? In the parameterinterface there is, for example the parameter #S_NO with the current step number but nowhere the name. Yes, you could of course enter the step names in a text list and use them with #S_NO as an index - but that means manually creating the text list (and maintaining it when changes are made!). I would like to spare myself that.

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/Terroklar2
πŸ“…︎ Dec 16 2019
🚨︎ report
Is there an easy to access non-time based source of entropy to prevent sequential calls to a random function from producing the same results?

I’m coding a game and I when I see 10 enemies die in a mainstream game and they all drop the same look it just strikes me as lazy. Is there a good way to prevent that? Currently I’m adding the epoch time in ms to a LCG’s output. It’s equally distributed across large sample sizes but I strongly suspect it is not among sequential samples as even by hand I can see the patterns in video games. I would need kilobytes of entropy per second so a cryptographically secure option probably isn’t viable. Is there some system viable I can use that would change between concurrent calls?

Listed as java because that’s the current language but I would think if a solution exists it would be universally applicable

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/atamicbomb
πŸ“…︎ Dec 20 2021
🚨︎ report
Shuffle Array without Sequential Repeats Function

Here's a (probably very inefficient and overly engineered) function from my game for shuffling an array so that no previous element will be in the same place as before. Basically allowing "swapping" but for more than two values.

/// @desc array_shuffle_unique(array)
/// @args array
//  Returns: newly shuffled array
function array_shuffle_unique(array)
{
	var array_new;
	
	//Create an array of available indexes to use
	var available_indexes;
	
	var len = array_length(array) - 1;
	for (var i = 0; i <= len; i++)
	{
		available_indexes[i] = i;
	}
	
	for (i = 0; i <= len; i++)
	{
		//Assign an element to the new array, deleting the value from the list of indexes
		do
		{
			var available_indexes_index = irandom(array_length(available_indexes) - 1);
			var index = available_indexes[available_indexes_index];
		}
		until index != i;
	
		array_delete(available_indexes, available_indexes_index, 1);
		array_new[index] = array[i];
	}
	
	return array_new;
}

Feel free to suggest any improvements or clarity additions! (Yes I know the do until loop is really bad practice, but it works Β―\_(ツ)_/Β―)

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/PrimedPixel
πŸ“…︎ Aug 30 2021
🚨︎ report
My recently built Rally Racing Baja Buggy with sequential gearbox, V2 engine, full independent suspension, differential and an old Power Functions motor reddit.com/gallery/l0mthh
πŸ‘︎ 95
πŸ’¬︎
πŸ‘€︎ u/flatoutcloud
πŸ“…︎ Jan 19 2021
🚨︎ report
Sequential Cloud Functions with Inputs/Outputs

Does anyone have any suggested architectures for running sequential Cloud Functions lists where the outputs of each are used as the input to the next.

I also want to be able to "save" these combinations of functions and wondering if there are any suggestions of where to do this? Firestore?

I've looked at things like Cloud Composer, Cloud Tasks and not entirely sure which route to go.

Ideally with retry mechanism that I don't have to build myself.

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/PM_ME_SECRET_DATA
πŸ“…︎ Feb 01 2021
🚨︎ report
πŸ”₯ AMA and Development Updates tomorrow with SatoshiCrypto on their TG group πŸ”₯ Our chart function is already LIVE πŸ”₯ Join our telegram to find more ⚠️Pre-Sale finishes in less than 24 h !!!

CHARTS : https://satoshicrypto.finance/#/chart/0x4Ee80372D69260d72826f6e8F2351201618709Ae
You can use any project on BSC to view it on our charts , We are not LIVE , our launch date is 15 NOV .

https://twitter.com/binance/status/1457007367179100167

Satoshicrypto.Finance: DEX with own router , First NFTs with Usecase in BSC ,BSC Charts, Presale Hosting Dapp , Staking and Farming , NFT market place , NFT game and play to earn and more to come .

Welcome to your first unlimited usecase token and your "one stop shop" for BSC ! SatoshiCrypto.Finance

πŸš€ SATOSHI TOKENOMICS

1️⃣ 1% On Chain Referral Program ( will cover our referral program )

2️⃣ 1% Transfer tax rate ( 20% will be automatically burned)

3️⃣ 4% Marketing ( will be used for marketing resources and expenses)

4️⃣ 2% Rewards ( rewards paid for 30k to 75k and 75k and over )

5️⃣ 2% Developing and team ( as you all have seen, we are planning to add a lot of functions and features that were not planned at the beginning like the charts, debit cards, blockchain, etc. We will need this income so we can keep adding and make the project successful )

⚑️ Cheaper than Pancake Swap .

⚑️ Pre sale platform implemented and our 75k+ holders will benefit by getting 50% of that revenue .

⚑️ Huge marketing budget .

⚑️ 30k holders to 75k holders will get incentives from the NFT games without playing .

πŸš€ Tech Rate Audited : https://github.com/TechRate/Smart-Contract-Audits/blob/main/September/Satoshi.pdf

πŸš€ Lead developer with over 10 years experience in crypto and ex. robotic engineer.

πŸš€ Anti hack for the front end of the platform , in the eventuallity of the front end beeing hacked , you will still be able to sale .

πŸš€ Oracle price . This is a feature that our developer build in over 2 years and implemented in the code , so the token will have an extra protection for heavy dumping . The code will analize the volume , selling pressure , buying pressure and other aspects .

⚑️⚑️⚑️ 5 NFTs with real use cases , whoever buys one get 0.1% from all SatoshiCrypto transactions for life ,

πŸš€ Telegram : https://t.me/satoshicryptofinance

πŸš€ Website : [satoshicrypto.finance](https://sat

... keep reading on reddit ➑

πŸ‘︎ 539
πŸ’¬︎
πŸ‘€︎ u/AtERylAthecItO
πŸ“…︎ Nov 10 2021
🚨︎ report
Using the transpose + split functions to separate a list into a format readable by column stats/insert chart option?

Hi r/googlesheets !!

I have a google forms connected to an excel sheet and one of the questions allows for multiple answers separated by commas. I want to be able to create a chart from these answers but I can't if every answer reads as "unique" even though some of the words are similar in different answers.

When I was tinkering with my actual spreadsheet (not the one I made for the question) I was able to use

=ARRAYFORMULA('Form Responses 1'!B:B) 
and 
=TRANSPOSE(SPLIT(A:A,",")) 

on a sheet that wasn't google forms answers but it only picked up the first answer and none of the rest.

I have what I have vs what I want on the QUESTION tab of the sheet and then some auto populated answers on the google forms tab. https://docs.google.com/spreadsheets/d/14fMs0RuxUYvJ_Nwo55wRBavgVKdEpNy-WozrU-EX4lM/edit?usp=sharing

Thank you for any help!

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/stylewiz
πŸ“…︎ Jan 09 2022
🚨︎ report
For those following 9s and 13s on charts, a histogram can be included with Sequential or Combo to increase the visibility of the indicator as shown in this chart of $CVX.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Guitarrista82
πŸ“…︎ May 13 2021
🚨︎ report
Sequential consists of a Setup and a Countdown phase. A 13 appears on the chart when the Countdown is completed. These values represent areas of potential trend exhaustion, as seen in the chart of $NTES.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Guitarrista82
πŸ“…︎ May 14 2021
🚨︎ report
A confluence of indicators on a longer-term chart can be useful when analyzing potential trades. Both Sequential and Combo reached potential exhaustion levels on this weekly chart of $BA.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Guitarrista82
πŸ“…︎ May 07 2021
🚨︎ report
I made an application to prepare you for everything you need for MOASS - interactive Reverse Repo, Daily Treasury, Inflation charts and a function to allow you to analyze and sort historical data! Website links in comment!
πŸ‘︎ 5k
πŸ’¬︎
πŸ‘€︎ u/sparttann
πŸ“…︎ Aug 13 2021
🚨︎ report
I made an application to prepare you for everything you need for MOASS - interactive Reverse Repo, Daily Treasury, Inflation, FTD, short volume charts, a function to allow you to analyze and sort historical data and many more! Website links in comment!
πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/sparttann
πŸ“…︎ Aug 15 2021
🚨︎ report
Does anyone know of a chart that shows which keybinds/functions apply to specific aircraft? Mainly looking for engine-management related functions. Trying to find some common ground between the aircraft, to know what are the highest priorities in terms of bindings.
πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/Su-27_dot_Com
πŸ“…︎ Nov 24 2021
🚨︎ report
$SQBG (Sequential Brands Group) Chart is demonstrating a Bullish pattern,
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/DummyTrading
πŸ“…︎ Mar 12 2021
🚨︎ report
Scientists have demonstrated a novel molecular screening approach to find promising sub-nanoparticles (SNPs). The study marks the first-ever discovery of unique functions in SNPs and their underlying principles through a sequential screening search. titech.ac.jp/english/news…
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/rustoo
πŸ“…︎ Nov 14 2020
🚨︎ report
Trying to extend an FX forward curve using the GROWTH function but getting a kink in the chart. Each year's forecast takes into account data from start of series (expanding range) - is that wrong?

https://preview.redd.it/801kmuygat981.png?width=1206&format=png&auto=webp&s=76e54e7b339e186cd15fc77902c116a318349d2a

The kink disappears when taking into account e.g., the last 2 years with higher % step ups, which makes sense. But I thought taking into the account the full range of data means that the excel function automatically recognises the increasing rate of growth...

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/mgnesiumpoem
πŸ“…︎ Jan 05 2022
🚨︎ report
Swipe left on the picture's. Some similarities. ETC and BTC are on a one year chart and precious metals are on a twenty year chart. Gold is money and silver is money but one has more industrial uses and without it the world as we know it doesn't function. Just something to ponder.They all have vale. reddit.com/gallery/qt60n0
πŸ‘︎ 15
πŸ’¬︎
πŸ“…︎ Nov 13 2021
🚨︎ report
My reward chart method helps me so much. It’s already hard doing tasks with ADHD. I want to take care of my mental health and function daily with the daily shit I need to do. . 50 stars and I get to go to the beach? Fuck yeah I’m going to do my projects, cook my meals and dance. Try it out !!
πŸ‘︎ 114
πŸ’¬︎
πŸ“…︎ Oct 08 2021
🚨︎ report
Question to plot historical(from present day since option initially listed) IV of on TOS for any single strike option for any underlying? Attached is screenshot similar chart function from Bloomberg terminal.
πŸ‘︎ 2
πŸ’¬︎
πŸ“…︎ Dec 02 2021
🚨︎ report
Since many INTJs are extremely good at summarising complex subjects, do you have an easy chart / recap to understand cognitive functions easily and how to type ourselves?

I’m 99% sure of my type, but I would like to self-type myself, and everybody talks about cognitive functions, while nobody is capable of explaining them simply and how we should type ourselves.

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/NeokratosRed
πŸ“…︎ Nov 23 2021
🚨︎ report
Appsmith: Open Source Framework for building custom software, admin panels, dashboards. October Updates: Widget Improvements, New Appsmith functions, and Helm Chart support!

https://preview.redd.it/5d3vtf98y3181.png?width=1600&format=png&auto=webp&s=817d260233cf44da8b0284b0151c0c02dd964b17

Hey folks! I am the founder of Appsmith, an open-source framework to quickly build any custom business software like admin panels, internal tools, dashboards, and more with pre-built UI widgets that connect to any database, GraphQL or REST API, controlling everything with Javascript. Such software is often used in pretty much every organization (as well as for hobby projects) and often developers spend countless hours on something like React or Angular to create these applications.

We've been tirelessly working for over a year on this project and are super humbled by the community's response to it. You can self-host or use the cloud version.

The reason I am sharing this month's product updates on this forum is that this month we've added Helm Chart support and so the community here might find it useful, especially if they're looking at frameworks to help build these internal applications. We have SO MANY users that deploy Appsmith on k8s.

We’re back again this month with updates from the last 30 days. We like to work hard! We’ve shipped many features, fixed bugs, and launched Hacktoberfest with a series of fun events. You can check them out here.

Appsmith Deployments

#1 Helm Chart Support

Helm charts are now added for Appsmith deployments on Kubernetes deployments. These include application deployments with basic default support. Additionally, developers can add custom configuration for persistent volume data, custom ingress controller and secure with TLS certificate

#2 Support for Deploying Appsmith on ARM Architecture

Previously, many developers had reported issues regarding docker-based installation of Appsmith on ARM architectures. Now, we have rectified them and added extensive support for M1 MacBook users. Following are the changes that we made to the scripts for docker installation:

  • We heavily refactored Dockerfile to build the image that is able to support both AMD64 and ARM64 architecture
  • We have updated docker.env.sh with additional environment variables and renamed the existing MongoDB credential variables We added a document to build an image for multiple architectures using Docker buildx

Widget, UI, and UX Improvements

#1 Menu Buttons on Table Widget

Tables on Appsmith are one of the

... keep reading on reddit ➑

πŸ‘︎ 37
πŸ’¬︎
πŸ‘€︎ u/arey_abhishek
πŸ“…︎ Nov 22 2021
🚨︎ report
Made a cognitive functions chart. This is more on how the functions generally operate. Not really about how they manifest per individual. Is it accurate, based on theory and own experience? Is there anything that needs to be adjusted?
πŸ‘︎ 21
πŸ’¬︎
πŸ“…︎ Oct 28 2021
🚨︎ report
I made an application to prepare you for everything you need - interactive Reverse Repo, Daily Treasury, Inflation, FTD, retail sales, short volume, options charts, a function to allow you to analyze and sort historical data and many more! Website links in comment!
πŸ‘︎ 220
πŸ’¬︎
πŸ‘€︎ u/sparttann
πŸ“…︎ Aug 21 2021
🚨︎ report
Excel function to return the sequential value of a cell in a range?

I'm concatenating a series of cells to create unique IDs for eBay orders, and there are five different items, each with their own identifiers. What I'd like to do is have a table that contains each order and the item identifier in the rows. So for example, one item is "4VD." If there are two orders for this item, I'd like the first one to reflect in its order ID that it is the first "4VD" order, and the second one to show that it is the second "4VD" order. And if there is an order for item "1BT" in the table, I'd like its order ID to reflect that it is the first "1BT" to be ordered (and not, say, the third item to be ordered).

I'll include an imgur link that exemplifies what I'm working with compared to what I'm trying to achieve:

See red rectangle

Ultimately I just want a function that can return the relative count value of a cell's contents relative to a range of cells of identical contents. I feel like there should be some combo of the COUNTIF, MATCH, and INDEX functions that would work, but I can't seem to find that magic mix.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Gabenism
πŸ“…︎ May 26 2020
🚨︎ report
I’m conflicted on if I have a night chart or day chart. The astrology podcast mentioned it could function as either with my sun that close to the asc and I’m having trouble discerning which malefic is more malefic and which benefic is more benefic in my life.
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/JadedEarthJuni
πŸ“…︎ Dec 04 2021
🚨︎ report
Super ghetto, yet super functional sequential shifter mod for the th8a. Super dope, handmade custom knob...
πŸ‘︎ 17
πŸ’¬︎
πŸ‘€︎ u/-Kush_
πŸ“…︎ Jun 20 2021
🚨︎ report
I made an application to prepare you for everything you need for MOASS - interactive Reverse Repo, Daily Treasury, Inflation charts and a function to allow you to analyze and sort historical data! Website links in comment!
πŸ‘︎ 242
πŸ’¬︎
πŸ‘€︎ u/sparttann
πŸ“…︎ Aug 13 2021
🚨︎ report
Study reveals that animals cope with environmental complexity by reducing the world into a series of sequential two-choice decisions and use an algorithm to make a decision, a strategy that results in highly effective decision-making no matter how many options there are mpg.de/17989792/1208-ornr…
πŸ‘︎ 25k
πŸ’¬︎
πŸ‘€︎ u/giuliomagnifico
πŸ“…︎ Dec 21 2021
🚨︎ report
I was bored so I made a function color chart
πŸ‘︎ 58
πŸ’¬︎
πŸ“…︎ Aug 26 2021
🚨︎ report
Winbond Introduces new Sequential Read Function in High-Speed QspiNAND Flash
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/NewMaxx
πŸ“…︎ Jun 04 2020
🚨︎ report
FEATURE REQUEST: Allow "magnet" to function on "Compare Symbol" charts

FEATURE REQUEST: For charts added via "Compare Symbol", allow the "magnet" to work when adding horizontal lines.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/arihurwitz
πŸ“…︎ Nov 06 2021
🚨︎ report
How would you design a reward function for sequential tasks ?

Hey !

I'm currently trying to train an agent in an environment where it has to perform sequential tasks.

Let's say for instance that the agent has to physically reach for a target and then, carry it to a specific location that can change every episode. So far, with a negative, distance related reward for the first reaching part and a positive, distance related reward for the carrying part, the agent more or less succeeds in the task. It is rather efficient in the first reaching part, but barely moves towards the target when it has the object. To counteract this effect, I made sure the simulation sometimes starts from configurations where the agent already holds the object, but it didn't work as intended.

I'm wondering whether it would be more interesting to

  • Train it in a curriculum fashion (first, master the reaching with a tailored reward and only then focus on the moving part),
  • Enhance the reward with bonus terms, such as the object's speed
  • Or something else I've not thought of.

Any tips, ideas, advices ? Has anyone faced this type of problems before ?

Thanks a lot !

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/UpstairsCurrency
πŸ“…︎ Mar 25 2019
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.