#mytable
Explore tagged Tumblr posts
Text

my nightclub #mytable fucked up rn on water and pimple patches and organic lollipops
24 notes
·
View notes
Text
whoever was in the studio before me left a huge mess on the table so i cleaned it up because i'm a good studio citizen but jeez. i'm not even a member yet and i'm already doing chores for other people #mydonatedlabor
genuinely i think the store i interviewed at today is a front. i should have asked how they launder their money
really want to usurp the gm of my tabletop rpg night but i'm having too much fun playing this character who is described on the sheet as "agitated". maybe next module i'll stage a coup #mytable
finally time to write this scene i came up with in the middle of the night WISH ME LUCK
#i love extended metaphor throughlines... i love carrying a theme through multiple works#I LOVE THIS FIC UNIVERSE!
22 notes
·
View notes
Text
i love doing formatting in my silly little google doc. look at me go. #mytable
#“silly little google doc” i say as if this isn't Page Two Hundred And Twelve (i have been doing this for. two weeks)#anyway figuring out a nice way to format this took way too long but also i'm happy with it. it's cute (and also similar to the original)#i'm learning so much about google doc formatting with this project it's fun#anyway. did you know this ritual is officially called cinerária in the rulebook...#echo.txt#echordem.übersetzung
8 notes
·
View notes
Text
tagged by @transthadymacdermot! I have been eschewing most writing lately on account of. was busy trying to graduate college. but this is a good way to get back into it...
rules: make a new post with the names of all the files in your wip folder, regardless of how non descriptive or ridiculous. let people send you an ask with the title that most intrigues them, and then post a little snippet or tell them something about it! and then tag as many people as you have wips.
just going to add my spreadsheet tonight. look at my table #mytable
and I shall tag... @dxppercxdxver, @vastwinterskies, @sanguinarysanguinity, @fflewddur-feanorion, @dotsayers, and anyone else who would like to play.
#one of those tag things#also. I don't think I answered 80% of the asks I got last time I played this. sorry everyone I was Dying of College.#this reminds me that I don't have a seasonal spooky story yet for this year. I should start a new one.#wdw and ash-tree don't really want to be short stories and I still don't know what the Point of shipwreck steel is#I could do smth with cemetery removal era (altho that keeps wanting to be louise hung's jiangshi story...)#hmm. to ponder.
6 notes
·
View notes
Text
put my laptop on top of my cat so she would stop putting her paws on it and she doesnt give a shit shes just letting me. #mytable
#literally sleeping on my lap under my laptop like im not typing right on top of her#well. under a book under my laptop... for proper ventilation ☝️#i dont think cat fur is good for laptop fans probably#awoo
6 notes
·
View notes
Text
Recognizing D365FO Table Methods

The powerful ERP program Microsoft Dynamics 365 Finance and Operations (D365FO) assists businesses in streamlining their operational procedures. Tables are essential to D365FO's data management process. Knowing and using table methods is crucial to getting the most out of tables. This article explores the varieties of table methods in D365FO, their importance, and practical application.
Recognizing D365FO Table Methods
The powerful ERP program Microsoft Dynamics 365 Finance and Operations (D365FO) assists businesses in streamlining their operational procedures. Tables are essential to D365FO's data management process. Knowing and using table methods is crucial to getting the most out of tables. This article explores the varieties of table methods in D365FO, their importance, and practical application.
What in D365FO are Table Methods?
Developers can edit and interact with table data with D365FO's table methods, which are X++ functions linked to tables. Numerous tasks, including processing, calculation, and data validation, can be carried out by these approaches. They make tables more useful than just places to store data; they let you run intricate business logic right inside the table.
Table Method Types
Table approaches in D365FO fall into two general categories:
Methods of Instance:
Working with individual records is the goal.
Use: Employed for tasks requiring completion on a single record. For instance, confirming data before entering it.
Examples include insert(), update(), delete(), and validateWrite().
x++
public boolean validateWrite()
{
boolean ret;
ret = super();
if (this.Amount <= 0)
{
ret = false;
error("Amount must be greater than zero.");
}
return ret;
}
Static Techniques:
Function as a whole or carry out utilitarian tasks on the table.
Use: Applicable to table operations alone, not record-by-record operations. Identifying a record, for instance, using particular standards.
Find() and exist() are two examples.
x++
public static MyTable find(RecId _recId, boolean _forUpdate = false)
{
MyTable myTable;
myTable.selectForUpdate(_forUpdate);
select firstonly myTable
where myTable.RecId == _recId;
return myTable;
}
Common Table Functions and How They're Used insert(): A new record that is added to the table calls this instance method. It enables the execution of custom logic prior to the record being added to the database.
x++
public void insert()
{
this.validateWrite();
super();
}
update(): When a record already exists is updated, this instance method is called. It guarantees that before the modification is committed, all required computations and validations are completed.
x++
public void update()
{
this.validateWrite();
super();
}
delete(): Whenever a record is removed from the table, this instance function is triggered. Prior to the record being deleted, it permits any cleanup procedures or validations.
x++
public void delete()
{
// Custom logic before deletion
super();
}
validateField(): Before a field is saved to the database, its value is checked using this instance function.
x++
public boolean validateField(FieldId _fieldId)
{
boolean ret;
ret = super(_fieldId);
if (_fieldId == fieldNum(MyTable, Amount) && this.Amount <= 0)
{
ret = false;
error("Amount must be greater than zero.");
}
return ret;
}
exist(): This static method determines whether a record in the table with a given key exists.
x++
public static boolean exist(RecId _recId)
{
return select firstonly RecId from MyTable
where MyTable.RecId == _recId;
}
The Best Ways to Apply Table Methods
Verification: To guarantee data integrity, always carry out the relevant validations within table methods.
Super Calls: Unless there is a specific reason to fully override it, make sure to call the super() method in order to preserve the base functionality.
Error Handling: To give insightful feedback during data operations, use strong error handling.
Optimization: To maximize performance, use static methods for actions that don't need instance-specific data.
In summary
Comprehending and employing table procedures in D365FO is essential for proficient data administration and executing intricate business logic. Developers can guarantee data integrity, maximize efficiency, and improve the ERP system's overall usefulness by utilizing these techniques. Following recommended practices while using table methods can help you keep your codebase organized and productive, which will help your D365FO implementation go smoothly.
0 notes
Text
Boto3 and DynamoDB: Integrating AWS’s NoSQL Service with Python

Introduction Amazon Web Services aws boto3 dynamodb as an versatile NoSQL database service while Boto3 serves, as the Python based AWS SDK. This article aims to delve into the usage of Boto3 for interacting with DynamoDB encompassing operations recommended practices and typical scenarios. It will be complemented by Python code snippets.
Overview of Boto3 and DynamoDB Boto3 stands as an AWS Software Development Kit (SDK) specifically designed for Python programmers. Its purpose is to empower software developers with the ability to utilize services such as Amazon S3 and DynamoDB.
DynamoDB on the hand is a key value and document oriented database that excels in delivering exceptional performance within milliseconds regardless of scale. As a managed database solution it offers region functionality, with multiple masters while ensuring durability.
Setting Up Boto3 for DynamoDB Before you start, you need to install Boto3 and set up your AWS credentials:
1. Install Boto3:
pip install boto3 2. Configure AWS Credentials: Set up your AWS credentials in `~/.aws/credentials`:
[default]
aws_access_key_id = YOUR_ACCESS_KEY
aws_secret_access_key = YOUR_SECRET_KEY Basic Operations with DynamoDB 1. Creating a DynamoDB Table: import boto3
dynamodb = boto3.resource(‘dynamodb’)
table = dynamodb.create_table(
TableName=’MyTable’,
KeySchema=[
{‘AttributeName’: ‘id’, ‘KeyType’: ‘HASH’}
],
AttributeDefinitions=[
{‘AttributeName’: ‘id’, ‘AttributeType’: ‘S’}
],
ProvisionedThroughput={‘ReadCapacityUnits’: 1, ‘WriteCapacityUnits’: 1}
)
table.wait_until_exists() 2. Inserting Data into a Table:
table.put_item(
Item={
‘id’: ‘123’,
‘title’: ‘My First Item’,
‘info’: {‘plot’: “Something interesting”, ‘rating’: 5}
}
) 3. Reading Data from a Table:
response = table.get_item(
Key={‘id’: ‘123’}
)
item = response[‘Item’]
print(item) 4. Updating Data in a Table: table.update_item(
Key={‘id’: ‘123’},
UpdateExpression=’SET info.rating = :val1',
ExpressionAttributeValues={‘:val1’: 6}
) 5. Deleting Data from a Table:
table.delete_item(
Key={‘id’: ‘123’}
) 6. Deleting a Table:
table.delete() Best Practices for Using Boto3 with DynamoDB
1. Manage Resources Efficiently: Always close the connection or use a context manager to handle resources.
2. Error Handling: Implement try-except blocks to handle potential API errors.
3. Secure Your AWS Credentials: Never hard-code credentials. Use IAM roles or environment variables.
Advanced Operations – Batch Operations: Boto3 allows batch operations for reading and writing data.
– Query and Scan: Utilize DynamoDB’s `query` and `scan` methods for complex data retrieval.
Use Cases for Boto3 and DynamoDB – Web Applications: Store and retrieve user data for web applications.
– IoT Applications: Capture and store IoT device data.
– Data Analysis: Store large datasets and retrieve them for analysis.
Monitoring and Optimization Use AWS CloudWatch to monitor the performance of your DynamoDB tables and optimize provisioned throughput settings as necessary.
Conclusion Boto3 provides a powerful and easy way to interact with AWS DynamoDB using Python. By understanding these basic operations and best practices, developers can effectively integrate DynamoDB into their applications.
0 notes
Text

My teensy table #MyTable
How it felt yesterday when everyone was so nicies at the con about my art and bought prints
#my stuff#i sell manga on the side cause they arent easily available in bookstores#my lil table with no decorations like everyone else lol
17 notes
·
View notes
Photo

As the weather turned cooler with a bit of drizzle, i go back to this photo from my recent trip to the Philippines. #arrozcaldo #congee #lugaw #itravelforfood #food #foodie #traditionalfood #fortheloveoffood #hardboiledegg #garlic #rice #abowlfullofgoodness #travelblogger #travelrewards #mytable #foodgloriousfood #love #rainydayfood #foodtravelers https://www.instagram.com/p/BxcwThqBQmF/?utm_source=ig_tumblr_share&igshid=1oqs10oufel81
#arrozcaldo#congee#lugaw#itravelforfood#food#foodie#traditionalfood#fortheloveoffood#hardboiledegg#garlic#rice#abowlfullofgoodness#travelblogger#travelrewards#mytable#foodgloriousfood#love#rainydayfood#foodtravelers
2 notes
·
View notes
Photo

work work work 🙆💔 you can see how "few" things I need for work 🙈
#miniature#felttoy#polymerclaytoy#lovemywork#mytable#bunnytoys#grayowl#chickenbunny#tinythings#workinprogress#flatlay#handmade#uutoys
2 notes
·
View notes
Photo

#Thanks for having us! @helloprincessnyc. Please follow my other if @annaseventplanning #princessmarketplace. #ilovethisplace #mytable (at Hello Princess NYC) https://www.instagram.com/p/BwQ5wuUpf6G/?utm_source=ig_tumblr_share&igshid=dkopv22rtsoz
1 note
·
View note
Text

There's fan translations of the novels! I haven't posted links before because it's still rather complicated. Po Yun you have to jump through about two-three translations and a few chapters someone mtl'ed, but you can find all of them here on novelupdates, though you need an account to see the chapter links. Tun Hai is slightly less complicated but translator never figured out a 'next chapter' button, so again here but you need an account to see chapter by chapter.
The manhua of Breaking Through the Clouds was on bilibili, yes, and the translation was good. Sadly, bilibili international is going away. There's still fan translations on various sites of ill repute of both of the manhuas though. Search engines can find them easily, just make sure your ad blocker is robust.
Honestly, I started reading them years ago and the fan translations only just finished recent-ish (many started, then fell through or disappeared and I've been pining over reading the rest for so long), but now they are at least fully translated in some form if you want to jump in again. I devoured them twice in January because I was going through the Horrors of life in general. They're worth the hoops to jump through and I'm going insane over Them. XD
Edit: cannot get both hyper links to work on tumblr, so have them long hand.
Breaking Through the Clouds: https://www.novelupdates.com/series/breaking-through-the-clouds/?pg=1#myTable
Swallowing the seas: https://www.novelupdates.com/series/swallowing-the-seas/?pg=1#myTable
Okay, so my finger slipped and I reread the Po Yun manhua (to be fair to me, the good, non-ad infested version is going away at the end of the month) and decided maybe just posting about it will alleviate the need to consume it a third time since the start of the year.
(Okay, yes, I am a tiny bit of an eldritch horror when it comes to inhaling media. So shoot me.)
I'm just so insane about Bu Chonghua and his obsession with "I'm home."
The first time he says this, he says it to an empty apartment. It's status quo for him, and it's not a terrible life, but he had to chew someone out at work because after he explained PTSD with the clinical definition, explaining that the witness's differing accounts were because of this, the others started to say 'I didn't think a boy like this would be so weak.' And he barks back no, it doesn't matter how strong or weak someone is, it's a natural reaction to trauma. It doesn't make someone a mental case, nor is someone weak for reacting in a such a way.
(And I love that this is the first time Wu Yu takes note of what his superior is saying. We've seen how very little he thinks of Bu Chonghua and his leadership at this point. But at this Wu Yu stops and listens, and I love how in the manhua it shows him passing off the exit interviews and knowing exactly what to say to be 'mentally sound' while he's still deeply traumatized by Everything. He's listening, because it's the first time anyone has even mentioned the terms for what he's went through to him, and that is so fucked up, please just let him go to school like he wants to, but it's coming from Bu Chonghua, who he hates, but was patiently explaining it and calm until people started badmouthing it. He used his 'elite' schooling to normalize a trauma response, and Wu Yu takes note that maybe this guy isn't quite so awful.)
But Bu Chonghua isn't talking about the witness, not really. When he comes back to an empty house and says "I'm home," he goes through his usual routine and then, just before bed, he picks up the picture from his tenth birthday, before his parents were murdered in front of him and he has to tell himself to not think about it. Don't think about it, don't get lost in the memories. He's home, and he's safe and no one is there, but he can't break down. Because if he breaks, then he's the one who will have to pick up the pieces again, and he could be working, he could be preventing the 502 murderer from striking again, so he can't break. He's talking about himself, his own trauma, the in the clinical manner he was probably taught in, then he shoves everything down. He knows what he's doing is dangerous and self-destructive, but he's alone and he's home, so it's okay.
(And when that impulse almost kills Wu Yu, when the car drives them off the road and into the hands of the bad guys, it destroys him more than the accident and kidnapping)
The next time he says "I'm home," he very pointedly corrals Wu Yu into staying at his apartment. Yes, he's going to work. No, Wu Yu can't follow because he's still under 'confinement'. No, Wu Yu can't go to his own apartment, he has to stay at Bu Chonghua's. If Wu Yu leaves, then he wouldn't be able to discuss the interrogation when he gets back from work, right? Bu Chonghua shouldn't even have left the hospital, but he's pulled Wu Yu back from the dragon swallowing abyss, from Wu Yu's own self destructiveness, and he selfishly wants to keep Wu Yu there.
Of course, he really can't stop Wu Yu from leaving. When he comes back and says "I'm home!" there's no one there. The apartment is empty and dark (and Wu Yu hates the dark), and he's checked the guest room and everywhere just to be sure that maybe, just maybe, Wu Yu had fallen asleep and hadn't left. That he's not coming back to an empty apartment. Then he sees the light cracked under the door to the study. Wu Yu is asleep, curled up on the piano with a book. The lights are on. It's not an empty apartment. And the relief that hits Bu Chonghua nearly staggers him.
The third time he says "I'm home!" he told Wu Yu to stay at his apartment. He gave his key to Wu Yu. (You still left things at my place. You should just meet me there to pick them up and we can have dinner, then I'll send you back. Stay there. Stay please.) This time, the apartment really is empty. Wu Yu isn't there. There's no one but the framed picture of his parents. Wu Yu isn't answering his phone, and when he calls the office to find out where Wu Yu is, he learns that Wu Yu has taken leave. He's gone back to his old workplace and Bu Chonghua looks at his empty apartment then texts Wu Yu that's he's going to Yundian too. And he's in the car, pulling out to do just that, but there's Wu Yu holding a bag of take out on the corner in the rain.
They go back and eat the take out together.
Wu Yu is as determined to not mooch off his boss as his boss is determined to keep him, so he cooks, shooing Bu Chonghua out of the kitchen. "It's the first time I've ever cooked for someone," he says as Bu Chonghua ignores how incredibly unhealthy it all is and eats what Wu Yu made for him. Wu Yu laughs because Yan Xie's presents are truly terrible, but Bu Chonghua never threw them out, and his apartment isn't empty. He's home.
But wanting and having are two different things. When Wu Yu leaves again, this time determined, Bu Chonghua forces his way into Wu Yu's apartment, because he knows Wu Yu is there instead of at home. Wu Yu hilariously compares him to the Prince visiting Cinderella (and I have another rant for another day about Wu Yu's Cinderella complex) in his backward little apartment, but Bu Chonghua insists on doing the dishes, ignoring when Wu Yu tries to stop him, because he doesn't have a dishwasher and Prince Charming has to wash them all by hand.
When Wu Yu determines there's only one bed, and that one bed is not actually going to work for two grown men, he sets a mat on the floor for himself, trying to give Bu Chonghua the bed. Bu Chonghua bullies him into taking the bed, then has the nerve to say, 'I'm sleeping on the floor. That's what you get for not coming home.' And Wu Yu has to deal with the fact his boss is sleeping on his floor.
Wu Yu can't sleep though, not with the lights off and too many things to think about. He moves to give Bu Chonghua his blanket, and Bu Chonghua, who has all the swag that his cousin doesn't, captures his Cinderella. ('If you don't say anything, I'm going to kiss you.' Captain Bu, please.)
When Bu Chonghua pauses at the door, because his colleague had been bragging about how he didn't even have to unlock the door, his wife just opened it when she heard him coming and he thinks that it's probably a little too ridiculous, even for a fantasy. But then Wu Yu opens the door, teasing him about if his finger was broken that he couldn't unlock the door himself, and his apartment is lit up and bright and warm. And he's home.
When Wu Yu kisses him, then punches him hard in the face because it was Bu Chonghua who left home first this time, ("Things that are not used only take up space." Wu Yu, talking about cutting Bu Chonghua's dick off like the power bottom he is. I actually do have quite a few thoughts on service top sub Bu Chonghua and Wu Yu taking control. It's a pity I'm too ace to write them.) his apology is that if Wu Yu had known he wouldn't have the courage to take the risk. ("It takes a lot of courage to clear your name for you," Wu Yu rightly retorts, but admittedly, this plot has been in the making since before he entered Bu Chonghua's life again.) He's so happy to have his home back, even when he can't go home.
When everything is revealed, when the pumpkin finally turns back into a carriage and it's all tumbled down, when Bu Chonghua has to chase after Wu Yu, running head first into an explosion and a flood because he just wants to hold Wu Yu's hand one more time, when Wu Yu asks 'Are you taking me home?' Bu Chonghua's answer is 'No, I don't have to take you. Where you are is my home.'
Wu Yu's true name meaning 'to return/to come home' makes me feral, ngl.
Because this is what Bu Chonghua wanted more than anything else. Wu Yu appeared in his life the day he lost his family - his home. And only when Wu Yu has returned, his home is no longer an empty apartment, but family again.
6 notes
·
View notes
Photo

𝓝𝓨𝓔’ 𝓽𝓪𝓫𝓵𝓮..... ....which in the case of my family home in Belgrade (Serbia) includes some really historic pieces for festive dining. Some of them were bought in England before I was even born such as the cutlery by Witchcraft (there is still a visible label which says Made in Sheffield,England) and this silver plated souvenir with Tower Bridge engraving that I always found fascinating even as a child. The plates were smuggled by my mother from her beloved Italy (Treviso) some time in the late 70s. There is no need to say that all these 'antiquities' are in mint condition just like almost everything in the aforementioned 'House of Milja'. January 2022 #belgrade #nyetable #mylife #myBelgrade #mytable #picofoftheday #athomeintheworld #dametraveler #interiors #traveldeeper #instamood #beauty #love #trending #stylediaries #fashionista #livingthedream #instafollow #passionpassport #lifeofawriter #lifeofaconsultant #makingtheimpossiblepossible #myworld🌎 (at Bežanijska kosa) https://www.instagram.com/p/Cm4T6KpsSEb/?igshid=NGJjMDIxMWI=
#belgrade#nyetable#mylife#mybelgrade#mytable#picofoftheday#athomeintheworld#dametraveler#interiors#traveldeeper#instamood#beauty#love#trending#stylediaries#fashionista#livingthedream#instafollow#passionpassport#lifeofawriter#lifeofaconsultant#makingtheimpossiblepossible#myworld🌎
0 notes
Photo

The Classics. Always and Forever. #bookshelfie #bookstagramph #booksbooksbooks #bookstagram #classicreadings #mytable https://www.instagram.com/p/CkJ5A7hSZ-S/?igshid=NGJjMDIxMWI=
1 note
·
View note
Photo

Masam 🥰 . . . #mytable #masam https://www.instagram.com/p/Cf1Nk0tL--K/?igshid=NGJjMDIxMWI=
0 notes
Photo

What a good time yesterday!!! #messenger #mensageiro #app #mytable #openbar #justkeepdancing #neverstop #jak #jakal #jakaldesigns #fkapower #jakovski #paulo_gonçalves #paulo_goncalves #samofie #funtime #party (at Toronto, Ontario) https://www.instagram.com/p/CeKuaPTNq9q/?igshid=NGJjMDIxMWI=
#messenger#mensageiro#app#mytable#openbar#justkeepdancing#neverstop#jak#jakal#jakaldesigns#fkapower#jakovski#paulo_gonçalves#paulo_goncalves#samofie#funtime#party
0 notes