Skip to content

Tarik Billa

  • Web Development
    • html
    • vue.js
    • laravel
    • css
    • javascript
    • jquery
    • node.js
    • php
    • asp.net
  • Programming
    • python
    • java
    • c
    • c++
    • c#
  • git
  • android

metadata

Markdown metadata format

February 13, 2023 by Tarik

There are two common formats that look very similar but are actually different in some very specific ways. And a third which is very different. YAML Front Matter The Jekyll static site generator popularized YAML front matter which is deliminated by YAML section markers. Yes, the dashes are actually part of the YAML syntax. And … Read more

Categories metadata Tags markdown, metadata Leave a comment

How do I list all tables in all databases in SQL Server in a single result set?

February 10, 2023 by Tarik

for a simple way to get all tables on the server, try this: SET NOCOUNT ON DECLARE @AllTables table (CompleteTableName nvarchar(4000)) INSERT INTO @AllTables (CompleteTableName) EXEC sp_msforeachdb ‘select @@SERVERNAME+”.”+”?”+”.”+s.name+”.”+t.name from [?].sys.tables t inner join sys.schemas s on t.schema_id=s.schema_id’ SET NOCOUNT OFF SELECT * FROM @AllTables ORDER BY 1 it will return a single column that … Read more

Categories sql-server Tags metadata, sql-server Leave a comment

How to get a list of all Subversion commit author usernames?

January 24, 2023 by Tarik

To filter out duplicates, take your output and pipe through: sort | uniq. Thus: svn log –quiet | grep “^r” | awk ‘{print $3}’ | sort | uniq I woud not be surprised if this is the way to do what you ask. Unix tools often expect the user to do fancy processing and analysis … Read more

Categories svn Tags commit, metadata, svn Leave a comment

Retrieving and Saving media metadata using FFmpeg

January 6, 2023 by Tarik

You can save the global metadata to a text file using the -f ffmetadata option as follows: ffmpeg -i in.mp4 -f ffmetadata in.txt If you also need metadata from the video and audio streams (for example if the global metadata does not contain the creation time) use: ffmpeg -i in.mp4 -c copy -map_metadata 0 -map_metadata:s:v … Read more

Categories ffmpeg Tags ffmpeg, media, metadata Leave a comment

Colorize logs in eclipse console

January 1, 2023 by Tarik

Have a try with this Eclipse Plugin: Grep Console [Update]: As pointed out by commenters: When installing Grep Console in the currently last version of Eclipse, you need to uncheck ‘Group items by category’ in the Install dialog to see the available items. As pointed out by @Line the plugin can now be easily installed … Read more

Categories java Tags console, eclipse, escaping, java, metadata Leave a comment

How do you determine what SQL Tables have an identity column programmatically

December 29, 2022 by Tarik

Another potential way to do this for SQL Server, which has less reliance on the system tables (which are subject to change, version to version) is to use the INFORMATION_SCHEMA views: select COLUMN_NAME, TABLE_NAME from INFORMATION_SCHEMA.COLUMNS where COLUMNPROPERTY(object_id(TABLE_SCHEMA+’.’+TABLE_NAME), COLUMN_NAME, ‘IsIdentity’) = 1 order by TABLE_NAME

Categories sql-server Tags identity-column, metadata, sql-server, tsql Leave a comment

VS 2017 Metadata file ‘.dll could not be found [duplicate]

December 27, 2022 by Tarik

The problem was that I had some other normal error messages in my project, and apparently after I fixed those and when I cleaned and built my project AGAIN, then all .dlls succeeded. Make sure you don’t have any other error messages in your project and if you do, fix those first!

Categories c# Tags asp.net-mvc, c++, metadata, visual-studio-2017 Leave a comment

What’s the difference between meta name and meta property?

December 15, 2022 by Tarik

The name attribute is the “usual” way for specifying metadata in HTML. It’s defined in the HTML5 spec. The property attribute comes from RDFa. RDFa 1.1 extends HTML5 so that it’s valid to use meta and link elements in the body, as long as they contain a property attribute. You can use both ways, HTML5’s … Read more

Categories html Tags html, meta, metadata Leave a comment

Accessing MP3 metadata with Python [closed]

November 23, 2022 by Tarik

I used eyeD3 the other day with a lot of success. I found that it could add artwork to the ID3 tag which the other modules I looked at couldn’t. You’ll have to install using pip or download the tar and execute python setup.py install from the source folder. Relevant examples from the website are … Read more

Categories python Tags metadata, mp3, python Leave a comment

In-App Purchases stuck in “Missing Metadata” state

November 19, 2022 by Tarik

Add any type of screenshot of the app here. Then Save and submit. It should work. Update : You may add a description as well.

Categories ios Tags app-store-connect, in-app-purchase, ios, metadata Leave a comment
Older posts
Newer posts
← Previous Page1 … Page5 Page6 Page7 Next →

Tarik Billa

Software Engineer
tarikbilla@gmail.com
+8801884414000
  • Reuse a hash in YAMLApril 17, 2024
  • Dockerfile: how to redirect the output of a RUN command to a variable?April 16, 2024
  • How to cd to a directory with spaces in the directory name?April 16, 2024
  • Maximum MIME type length when storing the type in a databaseApril 16, 2024
  • What is the difference between Unit, Integration, Regression and Acceptance Testing?April 16, 2024
© 2026 Tarik Billa